/********************************* CSS PRINCIPAL DE ESTADOS.PHP ****************************/
/*******************************************************************************************/
/*******************************************************************************************/
/* --- HERO PROPIEDADES --- */
.prop-hero {
    position: relative;
    height: 50vh; /* Más bajo que el home para UX */
    min-height: 400px;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: left; /* Alineado a la izquierda se ve más de catálogo */
}

.prop-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0, 45, 75, 0.9) 0%, rgba(0, 45, 75, 0.4) 100%);
    z-index: 1;
}

.prop-hero .centrar-contenido {
    position: relative;
    z-index: 2;
}

.prop-hero-content {
    max-width: 800px;
}

/* Breadcrumbs (Mejora el SEO y la navegación) */
.prop-breadcrumbs {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.prop-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.prop-breadcrumbs a:hover {
    color: #c09e66;
}

.prop-breadcrumbs span {
    margin: 0 10px;
    color: #c09e66;
}

.prop-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
	color:#fff;
}

.prop-hero p {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.9;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .prop-hero { height: 40vh; min-height: 350px; text-align: center; }
    .prop-hero-content { margin: 0 auto; }
}

/* Estado inicial animación hero */
.animar-entrada-arriba {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

/* Estado visible */
.animar-entrada-arriba.visible {
    opacity: 1;
    transform: translateY(0);
}

/********************************* CSS VISTAS ESTADOS **************************************/
/*******************************************************************************************/
/*******************************************************************************************/

/* ==========================================================================
   BANNER DE AYUDA - DISEÑO NEUTRO (MAQUETACIÓN)
   ========================================================================== */

.action-banner-help {
    width: 100%;
    margin: 80px 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #003366 0%, #001f3f 100%);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Decoración circular de fondo */
.banner-container::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

/* --- BLOQUE DE TEXTO --- */
.banner-content {
    flex: 2;
    color: #ffffff;
}

.banner-content .pre-title {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffd700;
    margin-bottom: 12px;
    font-weight: 700;
}

.banner-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.banner-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    max-width: 700px;
}

/* --- BLOQUE DE ACCIÓN (BOTÓN) --- */
.banner-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 280px;
}

.btn-banner-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #00cccc;
    color: #003366;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 204, 204, 0.4);
    white-space: nowrap;
}

.btn-banner-contact:hover {
    background-color: #00e6e6;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 204, 204, 0.6);
}

.no-commitment {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    font-style: italic;
}

/* ==========================================================================
   ANIMACIÓN DE ENTRADA
   ========================================================================== */

/* Estado inicial */
.action-help-entrada {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

/* Estado visible */
.action-help-entrada.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delays escalonados */
.help-delay-1 {
    transition-delay: 0.15s;
}

.help-delay-2 {
    transition-delay: 0.3s;
}

.help-delay-3 {
    transition-delay: 0.45s;
}

/* --- RESPONSIVO --- */
@media (max-width: 1024px) {
    .banner-container {
        padding: 50px;
        flex-direction: column;
        text-align: center;
    }

    .banner-content p {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .banner-container {
        padding: 40px 25px;
    }

    .banner-content h2 {
        font-size: 28px;
    }

    .btn-banner-contact {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   SECCIÓN DE AUTORIDAD SEO - OAXACA
   ========================================================================== */

.seo-authority-section {
    background: linear-gradient(180deg, #f9fbfc 0%, #f4f7fa 100%);
    padding: 90px 0;
    line-height: 1.85;
    color: #333333;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

.seo-authority-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ==========================================================================
   BLOQUES INTERNOS
   ========================================================================== */

.seo-authority-inner {
    background: #ffffff;
    border-radius: 20px;
    padding: 55px 50px;
    box-shadow: 0 18px 45px rgba(0, 51, 102, 0.08);
    border: 1px solid rgba(0, 51, 102, 0.06);
    position: relative;
}

.seo-authority-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #003366 0%, #00cccc 100%);
    border-radius: 0 0 6px 6px;
}

/* ==========================================================================
   TÍTULO PRINCIPAL
   ========================================================================== */

.seo-authority-title {
    font-size: 34px;
    color: #003366;
    margin: 0 0 30px 0;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    padding-bottom: 18px;
}

.seo-authority-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 68px;
    height: 4px;
    background-color: #00cccc;
    border-radius: 2px;
}

/* ==========================================================================
   PÁRRAFOS
   ========================================================================== */

.seo-authority-text {
    font-size: 18px;
    margin: 0 0 24px 0;
    color: #4a4a4a;
    text-align: justify;
    hyphens: auto;
}

.seo-authority-text:last-child {
    margin-bottom: 0;
}

.seo-authority-text.lead {
    font-size: 20px;
    font-weight: 500;
    color: #222222;
}

/* ==========================================================================
   ESTADOS INICIALES DE ANIMACIÓN
   ========================================================================== */

.seo-entrada {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.85s ease, transform 0.85s ease;
    will-change: opacity, transform;
}

.seo-entrada.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delays escalonados */
.seo-delay-1 {
    transition-delay: 0.12s;
}

.seo-delay-2 {
    transition-delay: 0.24s;
}

.seo-delay-3 {
    transition-delay: 0.36s;
}

.seo-delay-4 {
    transition-delay: 0.48s;
}

.seo-delay-5 {
    transition-delay: 0.60s;
}

.seo-delay-6 {
    transition-delay: 0.72s;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 768px) {
    .seo-authority-section {
        padding: 60px 0;
    }

    .seo-authority-inner {
        padding: 38px 24px;
        border-radius: 16px;
    }

    .seo-authority-inner::before {
        left: 24px;
        width: 70px;
    }

    .seo-authority-title {
        font-size: 27px;
        text-align: left;
        padding-bottom: 16px;
        margin-bottom: 24px;
    }

    .seo-authority-text {
        font-size: 17px;
        text-align: left;
        hyphens: none;
    }

    .seo-authority-text.lead {
        font-size: 18px;
    }
}

/* ==========================================================================
   SECCIÓN FAQ - ACORDEÓN PROFESIONAL
   ========================================================================== */

.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header .pre-title {
    display: block;
    color: #00cccc;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
}

.faq-header h2 {
    font-size: 32px;
    color: #003366;
    margin-bottom: 15px;
}

/* --- ESTILOS DEL ACORDEÓN --- */
.faq-accordion {
    border-top: 1px solid #eee;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.faq-item summary {
    list-style: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    color: #00cccc;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: #003366;
}

.faq-item[open] {
    background-color: #fcfcfc;
}

.faq-content {
    padding: 0 20px 20px 20px;
    line-height: 1.7;
    color: #555;
    font-size: 16px;
    animation: slideDown 0.4s ease-out;
}

/* ==========================================================================
   ESTADO INICIAL PARA ENTRADA
   ========================================================================== */

.faq-entrada {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.85s ease, transform 0.85s ease;
    will-change: opacity, transform;
}

.faq-entrada.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delays escalonados */
.faq-delay-1 {
    transition-delay: 0.12s;
}

.faq-delay-2 {
    transition-delay: 0.24s;
}

.faq-delay-3 {
    transition-delay: 0.36s;
}

.faq-delay-4 {
    transition-delay: 0.48s;
}

.faq-delay-5 {
    transition-delay: 0.60s;
}

.faq-delay-6 {
    transition-delay: 0.72s;
}

.faq-delay-7 {
    transition-delay: 0.84s;
}

/* Animación de entrada interna del contenido del acordeón */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .faq-header h2 { font-size: 26px; }
    .faq-item summary { font-size: 16px; }
}