/* =========================================
   ESTILOS EXCLUSIVOS VISTA MÓVIL
   ========================================= */

/* ── NAVBAR FIJO ── */
#vista-movil .m-nav-fijo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-sizing: border-box;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

#vista-movil .m-nav-fijo.visible {
    transform: translateY(0);
}

#vista-movil .m-nav-logo {
    height: 40px;
}

#vista-movil .m-nav-iconos {
    display: flex;
    gap: 15px;
    align-items: center;
}

#vista-movil .m-icono-mail {
    background-color: rgba(189, 97, 42, 0.1);
    color: #bd612a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

#vista-movil .m-icono-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.m-mobile-menu-cta .m-mobile-cta-button {
    border-radius: 100px;
}

/* ── HERO ── */
#vista-movil .m-hero-section {
    background: #f5f0e8;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 48px 28px 90px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* ── GRADIENTES ANIMADOS DE FONDO ── */
#vista-movil .m-hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 154, 64, 0.45) 0%, transparent 70%);
    top: -180px;
    right: -150px;
    animation: m-grad-move-1 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

#vista-movil .m-hero-section::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 124, 95, 0.30) 0%, transparent 70%);
    bottom: -120px;
    left: -130px;
    animation: m-grad-move-2 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

#vista-movil .m-grad-extra {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(189, 97, 42, 0.22) 0%, transparent 70%);
    top: 40%;
    right: -100px;
    animation: m-grad-move-3 7s ease-in-out infinite 1.5s;
    pointer-events: none;
    z-index: 0;
}

/* ── TEXTURA DE PUNTOS ── */
#vista-movil .m-dots-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #bd612a 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.04;
}

/* ── TODO EL CONTENIDO SOBRE LOS FONDOS ── */
#vista-movil .m-logo-gigante,
#vista-movil .m-divider,
#vista-movil .m-titulo,
#vista-movil .m-texto,
#vista-movil .m-hero-fundae,
#vista-movil .m-boton,
#vista-movil .m-subtrust {
    position: relative;
    z-index: 1;
}

/* ── LOGO ── */
#vista-movil .m-logo-gigante {
    width: 240px;
    max-width: 82%;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(-20px);
    animation: m-fade-down 0.7s ease forwards 0.1s;
}

/* ── SEPARADOR DECORATIVO ── */
#vista-movil .m-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    opacity: 0;
    animation: m-fade-in-only 0.6s ease forwards 0.3s;
}

#vista-movil .m-divider::before,
#vista-movil .m-divider::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, #bd612a);
}

#vista-movil .m-divider::after {
    background: linear-gradient(to left, transparent, #bd612a);
}

#vista-movil .m-divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e89a40;
    box-shadow: 0 0 6px rgba(232, 154, 64, 0.6);
}

/* ── TÍTULO ── */
#vista-movil .m-titulo {
    font-family: "Roca One", serif;
    font-size: 31px;
    color: #bd612a;
    margin: 0 0 16px 0;
    line-height: 1.2;
    max-width: 330px;
    opacity: 0;
    transform: translateY(22px);
    animation: m-fade-up 0.7s ease forwards 0.45s;
}

/* ── TEXTO ── */
#vista-movil .m-texto {
    font-family: "Roca Two", sans-serif;
    font-size: 16px;
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.65;
    max-width: 300px;
    opacity: 0;
    transform: translateY(22px);
    animation: m-fade-up 0.7s ease forwards 0.65s;
}

/* ── BOTÓN ── */
#vista-movil .m-boton {
    display: inline-block;
    background-color: #e89a40;
    color: #fff;
    text-decoration: none;
    font-family: "Roca Two", sans-serif;
    font-weight: bold;
    font-size: 17px;
    padding: 16px 32px;
    border-radius: 50px;
    width: 100%;
    max-width: 310px;
    box-shadow: 0 6px 22px rgba(232, 154, 64, 0.38);
    transition: transform 0.2s, box-shadow 0.2s;
    opacity: 0;
    transform: translateY(22px) scale(0.97);
    animation: m-fade-up-scale 0.6s ease forwards 0.85s;
}

#vista-movil .m-boton:active {
    transform: scale(0.95);
    box-shadow: 0 3px 10px rgba(232, 154, 64, 0.25);
}

/* ── SUBTRUST ── */
#vista-movil .m-subtrust {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    max-width: 320px;
    opacity: 0;
    animation: m-fade-in-only 0.5s ease forwards 1.1s;
}

#vista-movil .m-subtrust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Roca Two", sans-serif;
    font-size: 13px;
    color: #666;
}

#vista-movil .m-subtrust-item i {
    color: #bd612a;
    font-size: 12px;
}

#vista-movil .m-sep {
    color: #ccc;
    font-size: 16px;
    line-height: 1;
}

/* ── FLECHA SCROLL ── */
#vista-movil .m-scroll-arrow {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: #bd612a;
    font-size: 18px;
    text-decoration: none;
    opacity: 0;
    z-index: 1;
    animation: m-fade-in-only 0.5s ease forwards 1.3s,
        m-bounce 2s ease-in-out infinite 1.9s;
}

/* ── KEYFRAMES ── */
@keyframes m-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes m-fade-up-scale {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes m-fade-down {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes m-fade-in-only {
    to {
        opacity: 1;
    }
}

@keyframes m-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes m-grad-move-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-40px, 30px) scale(1.1);
    }

    66% {
        transform: translate(20px, -20px) scale(0.95);
    }
}

@keyframes m-grad-move-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.15);
    }

    66% {
        transform: translate(-20px, 25px) scale(0.9);
    }
}

@keyframes m-grad-move-3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, -35px) scale(1.2);
    }
}

/* --------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------- */
/* ── TRANSICIÓN HERO → PROBLEMA ── */
#vista-movil .m-ola-transicion {
    display: none;
}

#vista-movil .m-problema-section {
    background-color: #ede5d8;
    border-top: 5px solid #bd612a;
    padding: 48px 20px 44px;
    box-sizing: border-box;
}

/* ── SECCIÓN PROBLEMA ── */
#vista-movil .m-problema-section {
    background-color: #ede5d8;
    padding: 40px 20px 44px;
    box-sizing: border-box;
}

#vista-movil .m-problema-titulo {
    font-family: "Roca One", serif;
    font-size: 26px;
    color: #bd612a;
    text-align: center;
    margin: 0 0 28px 0;
    line-height: 1.2;
}

/* ── GRID 2 COLUMNAS ── */
#vista-movil .m-problema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

#vista-movil .m-problema-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

#vista-movil .m-problema-card p {
    font-family: "Roca Two", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.35;
}

#vista-movil .m-problema-icono {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(232, 154, 64, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #e89a40;
    flex-shrink: 0;
}

/* ── PÍLDORA REFLEXIVA ── */
#vista-movil .m-problema-pildora {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #fff;
    border-left: 4px solid #bd612a;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

#vista-movil .m-problema-pildora-icono {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: rgba(189, 97, 42, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #bd612a;
}

#vista-movil .m-problema-pildora p {
    font-family: "Roca Two", sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #bd612a;
    margin: 0;
    line-height: 1.45;
}

/* --------------------------------------------------------------------------- */
#contacto {
    scroll-margin-top: -40px;
    /* valor negativo = baja más */
}

/* --------------------------------------------------------------------------- */
/* ── SEPARADOR SOLUCIÓN ── */
/* El ROI termina en #ede5d8; Solución comienza en #ffffff */
#vista-movil .m-sep-solucion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 32px 40px;
    padding-top: 0 !important;
    background: linear-gradient(to bottom, #fdfbfa, #ffffff);
}

#vista-movil .m-sep-linea {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(to right, transparent, rgba(189, 97, 42, 0.3));
}

#vista-movil .m-sep-linea:last-child {
    background: linear-gradient(to left, transparent, rgba(189, 97, 42, 0.3));
}

#vista-movil .m-sep-punto {
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

#vista-movil .m-sep-punto-verde {
    width: 17px;
    height: 17px;
    background-color: #a7a354;
    box-shadow: 0 0 6px rgba(167, 163, 84, 0.5);
    z-index: 2;
    margin-right: -18px;
}

#vista-movil .m-sep-punto-teja {
    width: 25px;
    height: 25px;
    background-color: #e89a40;
    box-shadow: 0 0 8px rgba(232, 154, 64, 0.5);
    z-index: 1;
    margin-top: -8px;
}

/* --------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------- */

/* ── SECCIÓN SOLUCIÓN ── */
#vista-movil .m-solucion-section {
    background-color: #ffffff;
    padding: 0 0 10px 0;
    box-sizing: border-box;
}

/* ── IMAGEN REDONDEADA CON MARGEN ── */
#vista-movil .m-solucion-hero {
    position: relative;
    width: calc(100% - 40px);
    margin: 0 auto 20px;
    height: 220px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

#vista-movil .m-solucion-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* sin overlay, el título va debajo */
#vista-movil .m-solucion-hero-overlay {
    display: none;
}

/* ── LABEL Y TÍTULO ARRIBA ── */
#vista-movil .m-solucion-hero-label {
    font-family: "Roca Two", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a7a354;
    margin: 0 20px 8px;
    display: block;
    text-align: center;
}

#vista-movil .m-solucion-titulo {
    font-family: "Roca One", serif;
    font-size: 26px;
    color: #bd612a;
    margin: 0 20px 24px;
    line-height: 1.25;
    text-align: center;
}

/* ── LISTA TIPOGRÁFICA ── */
#vista-movil .m-solucion-lista-tipo {
    margin: 0 20px 32px;
    border-top: 1px solid rgba(189, 97, 42, 0.12);
}

#vista-movil .m-solucion-fila {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(189, 97, 42, 0.12);
    position: relative;
}

#vista-movil .m-solucion-fila-num {
    font-family: "Roca One", serif;
    font-size: 28px;
    font-weight: 700;
    color: rgba(189, 97, 42, 0.12);
    line-height: 1;
    width: 36px;
    flex-shrink: 0;
    text-align: center;
    letter-spacing: -1px;
}

#vista-movil .m-solucion-fila-icon {
    font-size: 17px;
    color: #bd612a;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

#vista-movil .m-solucion-fila-texto {
    font-family: "Roca Two", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    flex: 1;
}

#vista-movil .m-solucion-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 20px;
}

#vista-movil .m-solucion-pill-teja {
    background-color: #bd612a;
    color: #fff;
    font-family: "Roca Two", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 99px;
    text-align: center;
    line-height: 1.4;
}

#vista-movil .m-solucion-pill-blanca {
    background-color: #fff;
    color: #bd612a;
    font-family: "Roca Two", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 99px;
    text-align: center;
    line-height: 1.4;
    border: 1.5px solid rgba(189, 97, 42, 0.3);
    box-shadow: 0 2px 10px rgba(189, 97, 42, 0.07);
}

/* ── ANIMACIONES DE APARICIÓN AL SCROLL ── */
#vista-movil .m-problema-titulo,
#vista-movil .m-problema-card,
#vista-movil .m-problema-pildora,
#vista-movil .m-solucion-hero,
#vista-movil .m-solucion-titulo,
#vista-movil .m-solucion-hero-label,
#vista-movil .m-solucion-fila,
#vista-movil .m-solucion-pills,
#vista-movil .m-adaptacion-titulo,
#vista-movil .m-adaptacion-step,
#vista-movil .m-adaptacion-cierre {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

#vista-movil .m-problema-titulo.m-visible,
#vista-movil .m-problema-card.m-visible,
#vista-movil .m-problema-pildora.m-visible,
#vista-movil .m-solucion-hero.m-visible,
#vista-movil .m-solucion-titulo.m-visible,
#vista-movil .m-solucion-hero-label.m-visible,
#vista-movil .m-solucion-fila.m-visible,
#vista-movil .m-solucion-pills.m-visible,
#vista-movil .m-adaptacion-titulo.m-visible,
#vista-movil .m-adaptacion-step.m-visible,
#vista-movil .m-adaptacion-cierre.m-visible {
    opacity: 1;
    transform: translateY(0);
}

#vista-movil .m-roi-titulo,
#vista-movil .m-roi-item,
#vista-movil .m-roi-fundae {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.m-roi-titulo {
    padding-top: 45px;
}

#vista-movil .m-roi-titulo.m-visible,
#vista-movil .m-roi-item.m-visible,
#vista-movil .m-roi-fundae.m-visible {
    opacity: 1;
    transform: translateY(0);
}

#vista-movil .m-salario-img-wrap,
#vista-movil .m-salario-titulo,
#vista-movil .m-pill-salario-wrap,
#vista-movil .m-salario-item,
#vista-movil .m-salario-cierre {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

#vista-movil .m-salario-img-wrap.m-visible,
#vista-movil .m-salario-titulo.m-visible,
#vista-movil .m-pill-salario-wrap.m-visible,
#vista-movil .m-salario-item.m-visible,
#vista-movil .m-salario-cierre.m-visible {
    opacity: 1;
    transform: translateY(0);
}

#vista-movil .m-liderazgo-titulo,
#vista-movil .m-liderazgo-foto-wrap,
#vista-movil .m-liderazgo-credential,
#vista-movil .m-liderazgo-bio,
#vista-movil .m-liderazgo-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

#vista-movil .m-liderazgo-titulo.m-visible,
#vista-movil .m-liderazgo-foto-wrap.m-visible,
#vista-movil .m-liderazgo-credential.m-visible,
#vista-movil .m-liderazgo-bio.m-visible,
#vista-movil .m-liderazgo-card.m-visible {
    opacity: 1;
    transform: translateY(0);
}

#vista-movil .m-equipo-titulo,
#vista-movil .m-equipo-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

#vista-movil .m-equipo-titulo.m-visible,
#vista-movil .m-equipo-card.m-visible {
    opacity: 1;
    transform: translateY(0);
}

#vista-movil .m-contacto-titulo,
#vista-movil .m-contacto-form-wrap,
#vista-movil .m-contacto-directo-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

#vista-movil .m-contacto-titulo.m-visible,
#vista-movil .m-contacto-form-wrap.m-visible,
#vista-movil .m-contacto-directo-item.m-visible {
    opacity: 1;
    transform: translateY(0);
}


/* --------------------------------------------------------------------------- */



/* ── SEPARADOR ADAPTACIÓN ── */
/* Solución termina en #ffffff; Adaptación comienza en #f0ebe2 */
#vista-movil .m-sep-adaptacion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 40px;
    background: linear-gradient(to bottom, #ffffff, #f0ebe2);
}

/* ── SECCIÓN ADAPTACIÓN ── */
#vista-movil .m-adaptacion-section {
    background-color: #f0ebe2;
    padding: 0 0 64px 0;
    box-sizing: border-box;
}

#vista-movil .m-adaptacion-label {
    font-family: "Roca Two", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a7a354;
    margin: 0 20px 8px;
    display: block;
    text-align: center;
}

#vista-movil .m-adaptacion-titulo {
    font-family: "Roca One", serif;
    font-size: 26px;
    color: #bd612a;
    margin: 0 20px 36px;
    line-height: 1.25;
    text-align: center;
}

/* ── STEPPER ── */
#vista-movil .m-adaptacion-stepper {
    margin: 0 20px 32px;
}

#vista-movil .m-adaptacion-step {
    display: flex;
    gap: 16px;
}

#vista-movil .m-adaptacion-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 36px;
    flex-shrink: 0;
}

#vista-movil .m-adaptacion-num {
    font-family: "Roca One", serif;
    font-size: 13px;
    font-weight: 700;
    color: #bd612a;
    background: rgba(189, 97, 42, 0.08);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#vista-movil .m-adaptacion-num-verde {
    color: #a7a354;
    background: rgba(167, 163, 84, 0.10);
}

#vista-movil .m-adaptacion-linea-v {
    width: 2px;
    flex: 1;
    min-height: 24px;
    background: linear-gradient(to bottom, rgba(189, 97, 42, 0.2), rgba(167, 163, 84, 0.2));
    border-radius: 99px;
    margin: 6px 0;
}

#vista-movil .m-adaptacion-step-right {
    display: flex;
    gap: 14px;
    padding-bottom: 28px;
    flex: 1;
}

#vista-movil .m-adaptacion-step-last .m-adaptacion-step-right {
    padding-bottom: 0;
}

#vista-movil .m-adaptacion-step-icono {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #f0ebe1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #bd612a;
    flex-shrink: 0;
}

#vista-movil .m-adaptacion-step-icono-verde {
    color: #a7a354;
    border-color: rgba(167, 163, 84, 0.2);
}

#vista-movil .m-adaptacion-step-texto {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 10px;
}

#vista-movil .m-adaptacion-step-texto strong {
    font-family: "Roca Two", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

#vista-movil .m-adaptacion-step-texto span {
    font-family: "Roca Two", sans-serif;
    font-size: 14px;
    color: #777;
    line-height: 1.4;
}

/* ── CIERRE ── */
#vista-movil .m-adaptacion-cierre {
    margin: 0 20px;
    background: #fff;
    border-radius: 20px;
    padding: 20px 22px;
    border: 1.5px solid rgba(189, 97, 42, 0.15);
    box-shadow: 0 2px 12px rgba(189, 97, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

#vista-movil .m-adaptacion-cierre-serif {
    font-family: "Roca One", serif;
    font-size: 17px;
    color: #bd612a;
    margin: 0;
    line-height: 1.35;
}

#vista-movil .m-adaptacion-cierre-bold {
    font-family: "Roca Two", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #888;
    margin: 0;
}

/* --------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------- */


/* ── Clase huerfana m-sep-roi ── */
/* Esta clase ya no existe en el HTML (class fue renombrada), se mantiene vacía por compatibilidad */
#vista-movil .m-sep-roi {
    display: none;
}

/* ── SECCIÓN ROI (en HTML es la sección de datos cuantitativos) ── */
#vista-movil .m-roi-section {
    background-color: #fdfbfa;
    padding: 0 0 34px 0;
    box-sizing: border-box;
}

#vista-movil .m-roi-titulo {
    font-family: "Roca One", serif;
    font-size: 26px;
    color: #bd612a;
    text-align: center;
    margin: 0 20px 12px;
    line-height: 1.25;
}

#vista-movil .m-roi-subtitulo {
    font-family: "Roca Two", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    text-align: center;
    margin: 0 20px 28px;
}

/* ── GRID ── */
#vista-movil .m-roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 20px 28px;
}

#vista-movil .m-roi-item {
    background: #fff;
    border-radius: 18px;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#vista-movil .m-roi-item i {
    font-size: 26px;
    color: #a7a354;
}

#vista-movil .m-roi-item span {
    font-family: "Roca Two", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

/* ── BANNER FUNDAE ── */
#vista-movil .m-roi-fundae {
    background-color: #bd612a;
    border-radius: 20px;
    padding: 22px 22px;
    margin: 0 20px;
    text-align: center;
}

#vista-movil .m-roi-fundae p {
    font-family: "Roca Two", sans-serif;
    font-size: 14px;
    color: #fff;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

#vista-movil .m-roi-fundae strong {
    font-weight: 800;
    color: #f5ede3;
}

/* --------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------- */



/* ── SEPARADOR SALARIO ── */
/* Adaptación termina en #f0ebe2; Salario Emocional comienza en #fdfbfa */
#vista-movil .m-sep-salario {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 40px;
    background: linear-gradient(to bottom, #f0ebe2, #fdfbfa);
}

/* ── SECCIÓN SALARIO EMOCIONAL ── */
#vista-movil .m-salario-section {
    background-color: #fdfbfa;
    padding: 0 0 5px 0;
    box-sizing: border-box;
}

/* ── IMAGEN ── */
#vista-movil .m-salario-img-wrap {
    width: calc(100% - 40px);
    margin: 0 auto 28px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    border: 3px solid #e8ddcc;
}

#vista-movil .m-salario-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── TEXTOS ── */
#vista-movil .m-salario-titulo {
    font-family: "Roca One", serif;
    font-size: 26px;
    color: #bd612a;
    text-align: center;
    margin: 0 20px 8px;
    /* Margin bottom reducido */
    line-height: 1.25;
}

#vista-movil .m-pill-salario-wrap {
    margin: 24px 20px 16px;
}

#vista-movil .m-pill-salario {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #fff;
    border: 2px solid #bd612a;
    border-radius: 99px;
    padding: 14px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

#vista-movil .m-pill-salario-icono {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: rgba(189, 97, 42, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #bd612a;
}

#vista-movil .m-pill-salario p {
    font-family: "Roca Two", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.4;
}

#vista-movil .m-pill-salario-highlight {
    color: #bd612a;
}

#vista-movil .m-salario-subtitulo {
    font-family: "Roca Two", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    text-align: center;
    margin: 0 20px 24px;
    line-height: 1.4;
}

/* ── LISTA ── */
#vista-movil .m-salario-lista {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 20px 24px;
    border-top: 1px solid rgba(189, 97, 42, 0.12);
}

#vista-movil .m-salario-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(189, 97, 42, 0.12);
}

#vista-movil .m-salario-item i {
    color: #e89a40;
    font-size: 14px;
    flex-shrink: 0;
}

#vista-movil .m-salario-item span {
    font-family: "Roca Two", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

/* ── CIERRE ── */
#vista-movil .m-salario-cierre {
    background: rgba(232, 221, 204, 0.3);
    border-radius: 20px;
    border: 1.5px solid #e8ddcc;
    padding: 18px 20px;
    margin: 0 20px;
    text-align: center;
}

#vista-movil .m-salario-cierre p {
    font-family: "Roca Two", sans-serif;
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

#vista-movil .m-salario-cierre strong {
    color: #bd612a;
    font-weight: 800;
}


/* --------------------------------------------------------------------------- */
/* ── EQUIPO MULTIDISCIPLINAR (DENTRO DE LIDERAZGO) ── */
/* --------------------------------------------------------------------------- */

/* ── TÍTULO DEL EQUIPO ── */
#vista-movil .m-equipo-titulo {
    font-family: "Roca One", serif;
    font-size: 20px;
    font-weight: 700;
    color: #bd612a;
    text-align: center;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

/* ── LISTA VERTICAL ── */
#vista-movil .m-equipo-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 20px 32px 20px;
}

/* ── TARJETAS (imagen izq + texto dcha) ── */
#vista-movil .m-equipo-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(232, 221, 204, 0.6);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

#vista-movil .m-equipo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* ── FOTO ── */
#vista-movil .m-equipo-foto-wrap {
    width: 90px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(232, 221, 204, 0.2);
}

#vista-movil .m-equipo-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── CONTENIDO ── */
#vista-movil .m-equipo-content {
    padding: 0;
    flex: 1;
    min-width: 0;
}

#vista-movil .m-equipo-nombre {
    font-family: "Roca One", serif;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

#vista-movil .m-equipo-especialidad {
    font-family: "Roca Two", sans-serif;
    font-size: 11px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* ── COLORES POR ESPECIALIDAD ── */
#vista-movil .m-especialidad-teja {
    color: #bd612a;
}

#vista-movil .m-especialidad-verde {
    color: #2d5533;
}

#vista-movil .m-especialidad-naranja {
    color: #e89a40;
}

#vista-movil .m-especialidad-gris {
    color: #666;
}


/* --------------------------------------------------------------------------- */




/* --------------------------------------------------------------------------- */


/* ── SEPARADOR SERVICIOS ── */
/* Salario Emocional termina en #fdfbfa; Servicios comienza en #f5ede3 */
#vista-movil .m-sep-servicios {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 40px;
    background: linear-gradient(to bottom, #fdfbfa, #f5ede3);
}

/* ── SECCIÓN SERVICIOS ── */
#vista-movil .m-servicios-section {
    background-color: #f5ede3;
    padding: 0 0 5px 0;
    box-sizing: border-box;
}

#vista-movil .m-servicios-titulo {
    font-family: "Roca One", serif;
    font-size: 26px;
    color: #bd612a;
    text-align: center;
    margin: 0 20px 28px;
    line-height: 1.25;
}

/* ── ACORDEONES ── */
#vista-movil .m-servicios-acordeones {
    margin: 0 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#vista-movil .m-acor {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e8ddcc;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#vista-movil .m-acor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    gap: 12px;
}

#vista-movil .m-acor-header::-webkit-details-marker {
    display: none;
}

#vista-movil .m-acor-header-texto {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

#vista-movil .m-acor-num {
    font-family: "Roca One", serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

#vista-movil .m-acor-num-teja {
    color: #bd612a;
}

#vista-movil .m-acor-num-naranja {
    color: #e89a40;
}

#vista-movil .m-acor-num-verde {
    color: #a7a354;
}

#vista-movil .m-acor-sub {
    font-family: "Roca Two", sans-serif;
    font-size: 12px;
    color: #999;
    margin: 0;
}

#vista-movil .m-acor-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

#vista-movil .m-acor-icon-teja {
    background: rgba(189, 97, 42, 0.10);
    color: #bd612a;
}

#vista-movil .m-acor-icon-naranja {
    background: rgba(232, 154, 64, 0.10);
    color: #e89a40;
}

#vista-movil .m-acor-icon-verde {
    background: rgba(74, 124, 95, 0.10);
    color: #a7a354;
}

#vista-movil .m-acor[open] .m-acor-icon {
    transform: rotate(45deg);
}

#vista-movil .m-acor-body {
    padding: 0 18px 18px;
    border-top: 1px solid rgba(232, 221, 204, 0.6);
}

#vista-movil .m-acor-body-titulo {
    font-family: "Roca Two", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin: 14px 0 6px;
}

#vista-movil .m-acor-body-desc {
    font-family: "Roca Two", sans-serif;
    font-size: 13px;
    color: #777;
    margin: 0 0 12px;
    line-height: 1.5;
}

#vista-movil .m-acor-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#vista-movil .m-acor-lista li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-family: "Roca Two", sans-serif;
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

#vista-movil .m-check-teja {
    color: #bd612a;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

#vista-movil .m-check-naranja {
    color: #e89a40;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

#vista-movil .m-check-verde {
    color: #a7a354;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

#vista-movil .m-acor-formato {
    background: #f5f0e8;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: "Roca Two", sans-serif;
    font-size: 12px;
    color: #666;
}

/* ── CTA ── */
#vista-movil .m-servicios-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #bd612a;
    color: #fff;
    text-decoration: none;
    font-family: "Roca Two", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 99px;
    margin: 0 20px 28px;
    box-shadow: 0 4px 16px rgba(189, 97, 42, 0.3);
    transition: transform 0.2s;
}

#vista-movil .m-servicios-cta:active {
    transform: scale(0.97);
}

/* ── SERVICIOS ADICIONALES ── */
#vista-movil .m-servicios-adicionales {
    background-color: #bd612a;
    border-radius: 24px;
    padding: 24px 20px;
    margin: 0 20px 28px;
}

#vista-movil .m-servicios-adicionales-titulo {
    font-family: "Roca One", serif;
    font-size: 20px;
    color: #fff;
    margin: 0 0 6px;
    text-align: center;
}

#vista-movil .m-servicios-adicionales-sub {
    font-family: "Roca Two", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin: 0 0 16px;
}

#vista-movil .m-servicios-adicionales-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

#vista-movil .m-servicios-adicionales-item {
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    font-family: "Roca Two", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.3;
}

#vista-movil .m-servicios-adicionales-item i {
    color: #e89a40;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── ENFOQUE FORSAL ── */
#vista-movil .m-enfoque {
    margin: 0 20px;
    text-align: center;
}

#vista-movil .m-enfoque-titulo {
    font-family: "Roca One", serif;
    font-size: 18px;
    color: #bd612a;
    margin: 0 0 14px;
}

#vista-movil .m-enfoque-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

#vista-movil .m-enfoque-pills span {
    font-family: "Roca Two", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    background: #fff;
    border: 1px solid #e8ddcc;
    border-radius: 99px;
    padding: 7px 14px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* --------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------- */

/* ── SEPARADOR LIDERAZGO ── */
/* Servicios termina en #f5ede3; Liderazgo comienza en #f5f0e8 */
#vista-movil .m-sep-liderazgo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 40px;
    background: linear-gradient(to bottom, #f5ede3, #f5f0e8);
}

/* ── SECCIÓN LIDERAZGO ── */
#vista-movil .m-liderazgo-section {
    background-color: #f5f0e8;
    padding: 0 0 64px 0;
    box-sizing: border-box;
}

#vista-movil .m-liderazgo-label {
    font-family: "Roca Two", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #bd612a;
    margin: 0 20px 8px;
    display: block;
    text-align: center;
}

#vista-movil .m-liderazgo-titulo {
    font-family: "Roca One", serif;
    font-size: 26px;
    color: #222;
    text-align: center;
    margin: 0 20px 24px;
    line-height: 1.25;
}

#vista-movil .m-liderazgo-foto-wrap {
    position: relative;
    width: calc(100% - 40px);
    margin: 0 auto 0;
    border-radius: 24px;
    overflow: visible;
    border: 3px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    background: #ffffff;
}

#vista-movil .m-liderazgo-foto {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
    object-position: top;
    display: block;
    border-radius: 21px;
}

#vista-movil .m-liderazgo-foto-fade {
    display: none;
}

#vista-movil .m-liderazgo-credential {
    background: rgba(20, 10, 5, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0 0 21px 21px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    text-align: left;
    z-index: 2;
}

#vista-movil .m-liderazgo-credential-nombre {
    font-family: "Roca One", serif;
    font-size: 16px;
    color: #fff;
    margin: 0 0 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

#vista-movil .m-liderazgo-credential-cargo {
    font-family: "Roca Two", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #e89a40;
    margin: 0 0 2px;
}

#vista-movil .m-liderazgo-credential-col {
    font-family: "Roca Two", sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ── BIO ── */
#vista-movil .m-liderazgo-bio {
    font-family: "Roca Two", sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.65;
    text-align: center;
    margin: 0 20px 24px;
    margin-top: 20px !important;
    font-weight: 500;
}

/* ── CARDS VISIÓN Y MISIÓN ── */
#vista-movil .m-liderazgo-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 20px;
}

#vista-movil .m-liderazgo-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px 18px;
    border: 1px solid #e8ddcc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#vista-movil .m-liderazgo-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

#vista-movil .m-liderazgo-card-linea {
    width: 24px;
    height: 3px;
    border-radius: 99px;
    flex-shrink: 0;
}

#vista-movil .m-linea-teja {
    background-color: #bd612a;
}

#vista-movil .m-linea-naranja {
    background-color: #e89a40;
}

#vista-movil .m-liderazgo-card-titulo {
    font-family: "Roca One", serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

#vista-movil .m-titulo-teja {
    color: #bd612a;
}

#vista-movil .m-titulo-naranja {
    color: #e89a40;
}

#vista-movil .m-liderazgo-card-texto {
    font-family: "Roca Two", sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------------------------------- */



/* --------------------------------------------------------------------------- */

/* ── SEPARADOR CONTACTO ── */
#vista-movil .m-sep-contacto {
    display: none;
}

/* ── SECCIÓN CONTACTO ── */
#vista-movil .m-contacto-section {
    background-color: #ede5d8;
    border-top: 3px solid #bd612a;
    padding: 40px 20px 64px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

#vista-movil .m-contacto-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

#vista-movil .m-contacto-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(232, 154, 64, 0.18);
    filter: blur(60px);
    top: -80px;
    right: -80px;
}

#vista-movil .m-contacto-orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(74, 124, 95, 0.12);
    filter: blur(55px);
    bottom: 60px;
    left: -60px;
}

#vista-movil .m-contacto-titulo {
    font-family: "Roca One", serif;
    font-size: 28px;
    color: #222;
    text-align: center;
    margin: 0 0 10px;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

#vista-movil .m-contacto-titulo-naranja {
    color: #e89a40;
}

#vista-movil .m-contacto-sub {
    font-family: "Roca Two", sans-serif;
    font-size: 14px;
    color: #777;
    text-align: center;
    margin: 0 0 28px;
    position: relative;
    z-index: 1;
}

/* ── FORMULARIO ── */
#vista-movil .m-contacto-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

#vista-movil .m-campo {
    position: relative;
}

#vista-movil .m-input {
    width: 100%;
    padding: 20px 16px 8px;
    border: 1.5px solid #e8ddcc;
    border-radius: 12px;
    font-family: "Roca Two", sans-serif;
    font-size: 15px;
    color: #222;
    background: #fdfbfa;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

#vista-movil .m-input:focus {
    border-color: #e89a40;
}

#vista-movil .m-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Roca Two", sans-serif;
    font-size: 15px;
    color: #aaa;
    pointer-events: none;
    transition: all 0.2s ease;
}

#vista-movil .m-input:focus~.m-label,
#vista-movil .m-input:not(:placeholder-shown)~.m-label {
    top: 10px;
    transform: none;
    font-size: 12px;
    color: #e89a40;
    font-weight: 700;
}

#vista-movil .m-contacto-btn {
    width: 100%;
    background-color: #bd612a;
    color: #fff;
    font-family: "Roca Two", sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(189, 97, 42, 0.3);
    transition: transform 0.2s;
}

#vista-movil .m-contacto-btn:active {
    transform: scale(0.97);
}

#vista-movil .m-contacto-privacidad {
    font-family: "Roca Two", sans-serif;
    font-size: 12px;
    color: #bbb;
    text-align: center;
    margin: 0;
}

/* ── CONTACTO DIRECTO ── */
#vista-movil .m-contacto-directo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

#vista-movil .m-contacto-directo-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 16px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s;
}

#vista-movil .m-contacto-directo-item:active {
    transform: scale(0.98);
}

#vista-movil .m-contacto-directo-icono {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

#vista-movil .m-contacto-wa .m-contacto-directo-icono {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

#vista-movil .m-contacto-ig .m-contacto-directo-icono {
    background: rgba(189, 97, 42, 0.1);
    color: #bd612a;
}

#vista-movil .m-contacto-directo-texto {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

#vista-movil .m-contacto-directo-label {
    font-family: "Roca Two", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #aaa;
}

#vista-movil .m-contacto-directo-valor {
    font-family: "Roca Two", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

#vista-movil .m-contacto-directo-arrow {
    color: #ccc;
    font-size: 12px;
}

#vista-movil .m-contacto-label {
    font-family: "Roca Two", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #bd612a;
    text-align: center;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
}

#vista-movil .m-contacto-sub {
    font-family: "Roca Two", sans-serif;
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 0 0 28px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ── FOOTER ── */
#vista-movil .m-footer {
    background-color: #dfd3c0;
    padding: 36px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(189, 97, 42, 0.1);
}

#vista-movil .m-footer-logo {
    height: 36px;
    opacity: 0.85;
}

#vista-movil .m-footer-ig {
    color: #bd612a;
    font-size: 22px;
    text-decoration: none;
}

#vista-movil .m-footer-copy {
    font-family: "Roca Two", sans-serif;
    font-size: 12px;
    color: #666;
    text-align: center;
    margin: 0;
}

#vista-movil .m-footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

#vista-movil .m-footer-legal a {
    font-family: "Roca Two", sans-serif;
    font-size: 12px;
    color: #888;
    text-decoration: none;
}

#vista-movil .m-footer-legal span {
    color: #bbb;
    font-size: 12px;
}


/* --------------------------------------------------------------------------- */





/* --------------------------------------------------------------------------- */

/* ── MENÚ MÓVIL DESPLEGABLE DESDE INDEX ── */
.m-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.m-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.m-mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.m-mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.m-mobile-menu.active .m-mobile-menu-content {
    transform: translateX(0);
}

.m-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e8ddcc;
}

.m-mobile-menu-logo {
    height: 32px;
}

.m-mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.m-mobile-menu-close:hover {
    color: #bd612a;
}

.m-mobile-menu-items {
    padding: 1rem 0;
}

.m-mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.m-mobile-menu-item:hover {
    background: #f8f6f3;
    color: #bd612a;
}

.m-mobile-menu-item i {
    width: 20px;
    text-align: center;
    color: #bd612a;
}

.m-mobile-menu-cta {
    padding: 1.5rem;
    border-top: 1px solid #e8ddcc;
}

.m-mobile-cta-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #bd612a;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.m-mobile-cta-button:hover {
    background: #a8541f;
}

@media (min-width: 768px) {
    .m-mobile-menu {
        display: none;
    }
}

/* ── CLASES UTILIDAD EXTRAIDAS DE INLINE STYLES ── */
.m-color-enfermeria {
    color: #d6852a !important;
}

.m-color-fisio {
    color: #557b6a !important;
}

.m-color-admin-cargo {
    color: #e8ddcc !important;
}

.m-color-admin-col {
    color: #f3f4f6 !important;
}

.m-adaptacion-white {
    background-color: #f0ebe2;
}


.m-adaptacion-cierre-mb0 {
    margin-bottom: 0;
}

.m-adaptacion-content {
    margin-top: -3rem;
    background: transparent;
    position: relative;
    z-index: 10;
}

.m-salario-pt05 {
    padding-top: 0.5rem;
}

.m-form-textarea {
    resize: none;
}

.m-footer-fundae {
    font-size: 0.75rem;
    color: #8e8e8e;
    margin-top: 4px;
    text-align: center;
}

.m-header-separador {
    border-top: 5px solid #bd612a;
    background-color: #ede5d8;
    padding-top: 1.5rem;
}

/* ── FUNDAE en Hero ── */
#vista-movil .m-hero-fundae {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 20px 20px;
    flex-wrap: wrap;
}

#vista-movil .m-hero-fundae-texto {
    font-family: 'Roca Two', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(189, 97, 42, 0.75);
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(18px);
    animation: m-fade-up 0.6s ease forwards 0.78s;
}

#vista-movil .m-hero-fundae-logo {
    height: 28px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.8);
    opacity: 0;
    transform: translateY(18px);
    animation: m-fade-up 0.6s ease forwards 0.92s;
}

/* ── FUNDAE en Footer ── */
#vista-movil .m-footer-fundae-logo {
    display: block;
    margin: 4px auto 0;
    height: 24px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    filter: grayscale(40%) opacity(0.6);
}