html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    line-height: 1.6;
    color: var(--color-negro);
    background: var(--color-azul);
    -webkit-user-select: none;
    /* Safari, Chrome */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* viejo Edge */
    user-select: none;
    /* estándar */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: inherit;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

:root {
    --color-azul: #18223C;
    --color-dorado: #AE7B39;
    --color-blanco: #ffffff;
    --color-negro: #000;
    --color-gris: #374151;
    --color-cielo: #A4D1E4;
    /* Hover (más claros) */
    --color-azul-hover: #166077;
    --color-dorado-hover: #c18a47;
    --color-blanco-hover: #F3F3F4;
    --color-gris-claro: #F3F3F4;
    --color-gris-hover: #d1d5db;
}

/* ==============================
   NAVBAR — LIQUID GLASS
   ============================== */

.barraNegra {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(24, 34, 60, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 1.05rem 4.1rem;
    max-width: 1920px;
    margin: 0 auto;
}

/* Grupo izquierda */
.nav-izquierda {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Grupo derecha */
.nav-derecha {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.navbar .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-blanco);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.navbar .logo img {
    height: 3.65rem;
    margin: -1rem;
    margin-top: -1.4rem;
    padding: 0rem;
    width: auto;
    object-fit: contain;
}

.menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    margin-left: 1rem;
}

.menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.25s ease;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
    position: relative;
}

.menu a:hover {
    color: var(--color-blanco);
}

.menu a:hover::after {
    width: 100%;
}

.btn-pill {
    background: var(--color-blanco);
    color: var(--color-azul);
    border: 2px solid var(--color-blanco);
    text-decoration: none;
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pill:hover {
    background: var(--color-azul);
    color: var(--color-blanco);
    border: 2px solid var(--color-blanco);
}

/* ==============================
   HAMBURGER — solo móvil
   ============================== */

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-blanco);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.abierto span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.abierto span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.abierto span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==============================
   BOTÓN CERRAR dentro del menú
   ============================== */

.menu-movil-cerrar {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    margin-right: 2.8rem;
}

.menu-movil-cerrar:hover {
    background: rgba(255, 255, 255, 0.22);
}

.menu-movil-cerrar span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--color-blanco);
    border-radius: 2px;
}

.menu-movil-cerrar span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-movil-cerrar span:nth-child(2) {
    transform: rotate(-45deg);
}

/* ==============================
   MENÚ MÓVIL — FULLSCREEN
   ============================== */

.menu-movil {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    z-index: 1010;
    background: rgba(14, 22, 34, 0.72);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.menu-movil.abierto {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.menu-movil ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.menu-movil li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-movil.abierto li {
    opacity: 1;
    transform: translateY(0);
}

.menu-movil.abierto li:nth-child(1) {
    transition-delay: 0.08s;
}

.menu-movil.abierto li:nth-child(2) {
    transition-delay: 0.14s;
}

.menu-movil.abierto li:nth-child(3) {
    transition-delay: 0.20s;
}

.menu-movil.abierto li:nth-child(4) {
    transition-delay: 0.26s;
}

.menu-movil.abierto li:nth-child(5) {
    transition-delay: 0.32s;
}

.menu-movil a {
    display: block;
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--color-blanco);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.menu-movil a:hover,
.menu-movil a:active {
    color: var(--color-dorado);
}

.menu-movil li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/*Color letras doradas*/
.dorado {
    color: var(--color-dorado);
}

p {
    font-weight: 300;
}

.negrita {
    font-weight: 600;
    color: var(--color-blanco);
}

/* =========================================
   FONDOS / SECCIONES ROMBO
========================================= */
.rombo {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%),
        url("/img/inicio.png") center/cover no-repeat;
    padding: 10rem 0 3rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-mujeres {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: url("/img/principal/mujeres.png") center/cover no-repeat;
    padding: 9rem 0.8rem 16rem;
    min-height: auto;
    display: flex;
    align-items: flex-start;

}

/* =========================================
   HERO
========================================= */
.seccion-inicio {
    background: transparent;
    width: 100%;
    position: relative;
    z-index: 4;
}

.inicio-card {
    background: #ffffff;
    border-radius: 1.5rem;
    max-width: 490px;
    width: 100%;
    padding: 2.2rem 3rem 3.6rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
    margin-left: 4.2rem;
    margin-top: 3.1rem;
}

.inicio-texto h2 {
    color: var(--color-negro);
    font-size: 2.7rem;
    line-height: 1.2;
    margin-bottom: 18px;
    text-align: left;
    font-weight: 900;
    max-width: 100%;
}

.inicio-texto .dorado {
    white-space: nowrap;
}

.inicio-texto p {
    color: var(--color-negro);
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 28px;
    text-align: left;
    max-width: 100%;
}

.inicio-texto strong {
    font-weight: 800;
    color: var(--color-negro);
}

.btn-hero {
    display: block;
    width: fit-content;
    background: var(--color-azul);
    color: var(--color-blanco);
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 20px;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.25s;
    border: 0.20rem solid var(--color-azul);
    margin: 1.2rem auto 0;
}

.btn-hero:hover {
    background: transparent;
    color: var(--color-azul);
}

/*Seccion para contador numeros*/
.seccion-numeros {
    background: var(--color-azul);
    padding: 1rem 2rem;
    color: var(--color-blanco);
}

.contenedor-numeros {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 2rem;
}

.numero-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.numero-item p {
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

/* =========================================
   ECOSISTEMA UDAI
========================================= */
.ecosistema-udai {
    background: var(--color-azul);
    padding: 3.5rem 2rem 4rem;
    text-align: center;
}

.ecosistema-header {
    margin-bottom: 2.5rem;
}

.ecosistema-subtitulo {
    color: var(--color-blanco);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    opacity: 0.9;
}

.ecosistema-titulo {
    color: var(--color-blanco);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
}

.ecosistema-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
}

.eco-card {
    background: var(--color-blanco);
    border-radius: 0.9rem;
    padding: 2rem 1.7rem 1.6rem;
    text-align: center;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.eco-numero {
    display: block;
    color: var(--color-dorado);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.eco-card h3 {
    color: var(--color-negro);
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

.eco-card p {
    color: var(--color-negro);
    font-size: 0.95rem;
    line-height: 1.45;
}


/* =========================================
   MÉTODO DE GESTIÓN INTEGRAL
========================================= */
.metodo-udai {
    background: var(--color-cielo);
    padding: 4.5rem 2rem 4rem;
    text-align: center;
}

.metodo-header {
    margin-bottom: 2.2rem;
}

.metodo-subtitulo {
    font-size: 0.8rem;
    color: var(--color-azul);
    opacity: 0.8;
    margin-bottom: 0.35rem;
}

.metodo-titulo {
    font-size: 3.9rem;
    line-height: 0.98;
    font-weight: 800;
    color: var(--color-azul);
    margin-bottom: 1rem;
}

.metodo-bajada {
    font-size: 1.2rem;
    line-height: 1.25;
    color: var(--color-azul);
}

.metodo-slider {
    max-width: 1250px;
    margin: 0 auto;
}

.metodo-card {
    position: relative;
    width: 100%;
    min-height: 520px;
    border-radius: 1rem;
    overflow: hidden;
    background: url("/img/gestion/detalle2.png") center/cover no-repeat;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    transition: opacity 0.45s ease;
}

.metodo-card.cambiando {
    opacity: 0.88;
}

.metodo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.86) 0%,
            rgba(0, 0, 0, 0.72) 32%,
            rgba(0, 0, 0, 0.46) 60%,
            rgba(0, 0, 0, 0.22) 100%);
    z-index: 1;
}

.metodo-contenido {
    position: static;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-align: left;
    max-width: 700px;
    padding: 6.5rem 7rem 5rem 6rem;
}

.metodo-indicadores {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 6;
}

.metodo-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    transition: all 0.25s ease;
}

.metodo-dot.activo {
    background: #7a7a7a;
}

.metodo-texto-wrap {
    position: relative;
    z-index: 6;
    max-width: 560px;
}

.metodo-texto-wrap h3 {
    position: relative;
    z-index: 5;
    font-size: 3rem;
    line-height: 1.02;
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.metodo-texto-wrap p {
    position: relative;
    z-index: 5;
    font-size: 1rem;
    line-height: 1.4;
    color: #ffffff !important;
    max-width: 500px;
}

.metodo-texto-wrap p strong {
    color: #ffffff !important;
    font-weight: 700;
}

.metodo-linea {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 430px;
    height: 2px;
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.metodo-texto-wrap strong {
    color: var(--color-blanco);
    font-weight: 700;
}

.metodo-flecha {
    position: absolute;
    right: 16rem;
    width: 62px;
    height: 62px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metodo-flecha span {
    position: absolute;
    width: 22px;
    height: 6px;
    background: var(--color-blanco);
    border-radius: 999px;
}

.metodo-flecha-arriba {
    top: 1.8rem;
}

/* FLECHA ARRIBA */
.metodo-flecha-arriba span:first-child {
    transform: translateX(-7px) rotate(-45deg);
}

.metodo-flecha-arriba span:last-child {
    transform: translateX(7px) rotate(45deg);
}

.metodo-flecha-abajo {
    bottom: 1.8rem;
}

/* FLECHA ABAJO */
.metodo-flecha-abajo span:first-child {
    transform: translateX(-7px) rotate(45deg);
}

.metodo-flecha-abajo span:last-child {
    transform: translateX(7px) rotate(-45deg);
}

.metodo-flecha:hover {
    transform: scale(1.08);
}

.metodo-cta {
    margin-top: 2rem;
}

/* =========================================
   PRESENCIA EN JALISCO
========================================= */
.seccion-jalisco {
    background: var(--color-azul);
}

.jalisco-contenedor {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4.5rem 2rem 2.5rem;
    text-align: center;
}

.jalisco-texto h2 {
    font-size: 3.3rem;
    line-height: 1.05;
    font-weight: 800;
    color: var(--color-blanco);
    margin-bottom: 1.2rem;
}

.jalisco-texto p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--color-blanco);
}

.jalisco-texto p strong {
    font-weight: 700;
    color: var(--color-blanco);
}

.jalisco-mapa {
    margin-top: 2.8rem;
    display: flex;
    justify-content: center;
}

.jalisco-mapa img {
    width: 100%;
    max-width: 620px;
    height: auto;
    display: block;
}

.jalisco-numeros {
    background: var(--color-blanco);
    padding: 1.2rem 2rem;
}

.jalisco-numeros-contenedor {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 2rem;
}

.jalisco-numero-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-azul);
    margin-bottom: 0.35rem;
}

.jalisco-numero-item p {
    font-size: 1rem;
    line-height: 1.25;
    color: var(--color-azul);
    font-weight: 600;
}

/*Seccion para el boton*/
.cta {
    text-align: center;
    padding: 0rem;
    background: var(--color-cielo);
    padding-bottom: 3rem;
}

.btn-contacto {
    display: inline-block;
    background: var(--color-azul);
    color: var(--color-blanco);
    padding: 0.7rem 6rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-contacto:hover {
    background: var(--color-cielo);
    color: var(--color-azul);
    border: 2px solid var(--color-azul);
    box-shadow: none;
    transition: all 0.3s ease;
}

.cta-texto {
    margin-top: 0.7rem;
    font-size: 0.9rem;
    color: var(--color-negro);
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/*Seccion segundo boton azul*/
.cta--azul {
    text-align: center;
    padding: 0rem;
    margin-top: -0.1rem;
    background: var(--color-azul);
    padding-bottom: 4rem;
}

.cta--azul .btn-contacto {
    background: var(--color-blanco);
    color: var(--color-negro);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta--azul .btn-contacto:hover {
    background: var(--color-azul);
    color: var(--color-blanco);
    border: 2px solid var(--color-blanco);
}

.cta--azul .cta-texto {
    color: var(--color-blanco);
}

/*Seccion cuadro experiencias*/
.experiencia {
    position: relative;
    background: url("/img/desarrolladora/cuadroEx.png") center/cover no-repeat;
    padding: 7rem 2rem;
}

/*.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}*/

.contenedor-exp {
    position: relative;
    max-width: 75rem;
    min-height: 40rem;
    margin: auto;
    display: flex;
    gap: 3rem;
    padding: 5rem;
    background: rgba(24, 34, 60, 0.82);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    color: var(--color-blanco);
}

/* IZQUIERDA */
.exp-info {
    flex: 1;
}

.logo-exp {
    width: 20rem;
    margin-bottom: 1rem;
}

.exp-info p {
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--color-blanco);
}

.btn-exp {
    display: inline-block;
    margin-top: 1rem;
    background: var(--color-blanco);
    color: var(--color-negro);
    border: 1px solid var(--color-blanco);
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-exp i {
    margin-left: 0.3rem;
    transition: all 0.3s ease;
}

.btn-exp:hover i {
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* DERECHA */
.exp-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stat {
    margin-bottom: 2rem;
}

.stat:last-child {
    margin-bottom: 0rem;
}

.stat h2 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.stat p {
    font-size: 1rem;
    color: var(--color-blanco);
    line-height: 1.3;
}

/*Seccion para equipo de trabajo*/
.seccion-equipo {
    background: var(--color-blanco);
    padding: 100px 0;
    min-height: 600px;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.centrar-btn {
    text-align: center;
    margin-top: 2.5rem;
}

/* título negro grande mayúsculas */
.equipo-titulo {
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--color-negro);
    text-align: center;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

/* descripción centrada con parte bold */
.equipo-desc {
    font-size: 1.1rem;
    color: var(--color-negro);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

.equipo-desc strong {
    color: var(--color-azul);
}

/* wrapper relativo para el degradado */
.equipo-wrap {
    position: relative;
}

/* cada fila de 5 personas */
.equipo-fila {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}

/* fila 2 — completamente visible */
.equipo-fila-fade {
    opacity: 1;
}

/* filas extra ocultas por defecto */
.equipo-filas-extra {
    display: none;
}

.equipo-filas-extra.visible {
    display: block;
}

/* degradado fino al fondo — solo cubre desde el botón hacia arriba unos pocos px */
.equipo-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top,
            #ffffff 0%,
            #ffffff 25%,
            rgba(255, 255, 255, 0.7) 55%,
            transparent 100%);
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.35s;
}

.equipo-fade.hidden {
    opacity: 0;
    pointer-events: none;
}

/* tarjeta de asesor */
.asesor {
    text-align: center;
    width: 190px;
    flex-shrink: 0;
}

/* avatar grande gris oscuro (fila 1) */
.asesor-foto {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--color-gris);
    margin: 0 auto 14px;
    overflow: hidden;
    /* ícono de persona con CSS */
    position: relative;
}

/* cabeza */
.asesor-foto::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
}

/* cuerpo */
.asesor-foto::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 30px;
    border-radius: 24px 24px 0 0;
    background: rgba(255, 255, 255, 0.85);
}

/* avatar más claro para fila 2 (tenue) */
.asesor-foto-tenue {
    background: var(--color-blanco);
}

.asesor-foto-tenue::before,
.asesor-foto-tenue::after {
    background: rgba(255, 255, 255, 0.7);
}

.asesor-nombre {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-negro);
    margin-bottom: 2px;
}

.asesor-puesto {
    font-size: 0.78rem;
    color: var(--color-negro);
}

/* asesor tenue — texto difuminado */
.asesor-tenue .asesor-nombre,
.asesor-tenue .asesor-puesto {
    color: var(--color-blanco);
}

/* botón Ver más — azul fuerte letra blanca */
.btn-equipo-ver {
    background: var(--color-azul);
    color: var(--color-blanco);
    border: 0.13rem solid var(--color-azul);
    padding: 16px 60px;
    border-radius: 30px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s;
    position: relative;
    z-index: 3;
}

.btn-equipo-ver:hover {
    background: transparent;
    color: var(--color-azul);
}

/*Seccion para preguntas*/
.seccion-preguntas {
    background: var(--color-azul);
    padding: 5rem 2rem;
    color: var(--color-blanco);
    font-family: 'Segoe UI', sans-serif;
}

.contenedor-preguntas {
    max-width: 65rem;
    margin: auto;
}

.seccion-preguntas h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.pregunta {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2.2rem 0;
}

.pregunta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.pregunta-header p {
    margin: 0;
    color: var(--color-blanco);
    font-weight: 600;
    font-size: 1.3rem;
}

.icono {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-blanco);
    transition: all 0.3s ease;
}

.pregunta-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.pregunta.active .pregunta-body {
    max-height: 500px;
    margin-top: 1rem;
}

.pregunta.active .icono {
    background: rgba(255, 255, 255, 0.3);
}

.pregunta-body p {
    margin-bottom: 0.8rem;
    color: var(--color-blanco);
    font-weight: 300;
    font-size: 1rem;
    margin-right: 3rem;
}

/* ════════════════════════
   DESARROLLOS
════════════════════════ */
.inner2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 80px;
}

.seccion-desarrollos {
    background: var(--color-blanco-hover);
    padding: 70px 0;
    margin: 0rem;
    padding: 0rem;
}

.dev-titulo {
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--color-negro);
    text-align: center;
    margin-bottom: 3rem;
}

/* separador */
.dev-item+.dev-item {
    border-top: 2.5px solid var(--color-dorado);
}

.dev-cabecera {
    width: 100%;
    background: transparent;
    border: none;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    cursor: pointer;
    text-align: left;
    transition: opacity 0.2s;
}

.dev-cabecera:hover {
    opacity: 0.75;
}


.dev-circulo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(107, 114, 128, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.dev-circulo:hover {
    background: rgba(107, 114, 128, 0.4);
}

.dev-item--open .dev-circulo {
    background: rgba(107, 114, 128, 0.3);
}

.dev-signo {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    user-select: none;
}

.dev-cuerpo {
    display: flex;
    gap: 0px;
    padding-bottom: 32px;
    align-items: stretch;
}

.dev-slider {
    position: relative;
    z-index: 2;
    width: 420px;
    height: 420px;
    flex-shrink: 0;
    border-radius: 14px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow: hidden;
    background: var(--color-blanco);
}

.dev-slides-wrap {
    overflow: hidden;
    border-radius: 14px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    width: 100%;
    height: 100%;
}

.dev-slides {
    display: flex;
    height: 100%;
    transition: transform 0.45s ease;
}

.dev-slide {
    width: 420px;
    height: 420px;
    flex-shrink: 0;
    border-radius: 14px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    background-size: cover !important;
    background-position: center !important;
}

/* flechas */
.dev-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 4;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--color-blanco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.dev-arrow:hover {
    background: var(--color-blanco);
}

.dev-arrow-prev {
    left: 10px;
}

.dev-arrow-next {
    right: 10px;
}

.dev-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 6px;

    z-index: 4;
}

.dev-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: background 0.25s;
}

.dev-dot.active {
    background: var(--color-blanco);
}

/* ── INFO ── */
.dev-info {
    flex: 1;
    background: var(--color-blanco);
    border-radius: 14px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    margin-left: 0;
}

/* header */
.dev-header {
    margin-bottom: 16px;
}

.dev-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.90rem;
    color: var(--color-negro);
    margin-bottom: 12px;
}

.dev-loc svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.dev-descripcion {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-negro);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 16px;
}

/* datos */
.dev-datos {
    margin-bottom: 16px;
}

.dev-dato {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.98rem;
    color: var(--color-negro);
    margin-bottom: 10px;
    line-height: 1.4;
}

.dev-dato svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--color-negro);
}

.dev-loc img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
}

.dev-dato img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

/* separador */
.dev-separador {
    height: 1px;
    background: var(--color-negro);

    margin: 40px 0;
}

/* botón */
.btn-dev-cta {
    display: inline-block;

    background: var(--color-azul);
    color: var(--color-blanco);
    border: 0.13rem solid var(--color-azul);
    padding: 10px 28px;
    border-radius: 3rem;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.25s;
    align-self: center;
}

.btn-dev-cta:hover {
    background: transparent;
    color: var(--color-azul);
}

/*Seccion para contactanos*/
.seccion-contacto {
    position: relative;
    background: url("/img/principal/mujeres.png") center/cover no-repeat;
    padding: 6rem 2rem;
}

/*.overlay-contacto {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}*/

.contenedor-contacto {
    position: relative;
    max-width: 650px;
    margin: auto;
    padding: 52px 48px 48px;
    background: rgba(24, 34, 60, 0.82);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    color: var(--color-blanco);
    text-align: center;
}

.contenedor-contacto h2 {
    font-size: 2.6rem;
    margin-bottom: 1.7rem;
}

.subtitulo {
    font-size: 0.97rem;
    margin-bottom: 2.2rem;
    color: var(--color-blanco);
    text-align: left;
}

.formulario {
    text-align: left;
}

.fila {
    display: flex;
    gap: 1rem;
}

.campo {
    flex: 1;
    margin-bottom: 1rem;
}

.campo label {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.9rem 0.7rem;
    border-radius: 0.4rem;
    font-weight: 300;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    resize: none;
}

textarea {
    padding: 1.4rem 0.7rem;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: rgba(255, 255, 255, 0.9);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: right 0.8rem center;

    padding-right: 3rem;
}

.btn-contacto-form {
    width: 19rem;
    display: flex;
    margin: auto;
    justify-content: center;
    margin-top: 1rem;
    background: var(--color-blanco);
    color: var(--color-negro);
    border: 2px solid var(--color-blanco);
    font-size: 1.55rem;
    line-height: 1.3;
    padding: 0.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contacto-form:hover {
    background: transparent;
    color: var(--color-blanco);
    border: 2px solid var(--color-blanco);
}

/* ════════════════════════
   FOOTER BASE
════════════════════════ */

.site-footer {
    background: var(--color-azul);
    padding: 3.5rem 0 0;
    margin: 0rem auto;
    max-width: 100%;
}

/* CONTENEDOR PRINCIPAL */
.site-footer-inner {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3.5rem;
}

/* ═════ BRAND ═════ */
.site-footer-brand {
    display: flex;
    flex-direction: column;
}

/* LOGO */
.site-footer-brand .logo img {
    height: 4rem;
    margin-bottom: 2rem;
}

/* REDES */
.site-footer-socials {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.site-footer-socials a {
    transition: opacity 0.25s;
}

.site-footer-socials a:hover {
    opacity: 0.7;
}

.site-footer-socials img {
    width: 2.2rem;
    height: 2.2rem;
    object-fit: contain;
}

/* CTA */
.site-footer-cta {
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--color-blanco);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

/* BOTÓN */
.site-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 0.12rem solid var(--color-blanco);
    color: var(--color-blanco);
    background: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    align-self: flex-start;
}

.site-footer-btn svg {
    width: 1.6rem;
    height: 1.6rem;
}

.site-footer-btn:hover {
    background: var(--color-blanco);
    color: var(--color-azul);
}

/* ═════ LINKS ═════ */
.site-footer-links {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    column-gap: 2.45rem;
    row-gap: 1rem;
    justify-content: end;
}

.site-footer-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-blanco);
    margin-bottom: 1.2rem;
}

.site-footer-col ul {
    list-style: none;
}

.site-footer-col ul li {
    margin-bottom: 0.7rem;
}

.site-footer-col ul li a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer-col ul li a:hover {
    color: var(--color-blanco);
}

/* ═════ BOTTOM ═════ */
.site-footer-bottom {
    max-width: 75rem;
    margin: 0 auto;
    padding: 1.5rem 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.site-footer-bottom a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    transition: color 0.2s;
}

.site-footer-bottom a:hover {
    color: var(--color-blanco);
}

.abajoFoot {
    margin-top: 0.8rem;
}

/* =======================
   RESPONSIVE TABLETAS Y MÓVILES
   ======================= */

/* Tabletas: hasta 1024px */
@media (min-width: 751px) and (max-width: 1024px) {

    /*Seccion menus*/

    .navbar {
        padding: 1rem 2rem;
        gap: 2rem;
    }

    .navbar .logo img {
        height: 2rem;
    }

    .menu {
        gap: 1.5rem;
    }

    .menu a {
        font-size: 0.9rem;
    }

    .menu-movil-cerrar {
        top: 0.8rem;
        margin-right: 0.5rem;
    }

    .btn-pill {
        display: none;
        background: var(--color-blanco);
        color: var(--color-negro);
        border: 1px solid rgba(0, 0, 0, 0.1);
        text-decoration: none;
        padding: 0.4rem 0.4rem;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 600;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    /*Seccion inicio*/
    .rombo {
        padding: 10rem 2rem 2rem;
        clip-path: none;
    }

    .hero-mujeres {
        min-height: 620px;
        padding: 8rem 2rem;
        display: flex;
        align-items: center;
    }

    .inicio-card {
        max-width: 520px;
        padding: 2rem;
        margin-top: 2rem;
    }

    .inicio-texto h2 {
        font-size: 3rem;
    }

    .contenedor-inicio {
        text-align: center;
        gap: 2rem;
    }

    /*Seccion para equipo de trabajo*/
    .titulo-equipo {
        line-height: 1.1;
    }

    .grid-equipo {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    /*Seccion para numeros*/
    .seccion-numeros {
        padding: 2rem 2rem;
    }

    .contenedor-numeros {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .numero-item {
        flex: 1;
        min-width: 0;
        width: auto;
    }

    .numero-item h3 {
        font-size: 2.2rem;
        margin-bottom: 0rem;
    }

    .numero-item p {
        font-size: 0.95rem;
    }

    /* ECOSISTEMA UDAI */
    .ecosistema-udai {
        padding: 3rem 1.5rem 3.5rem;
    }

    .ecosistema-titulo {
        font-size: 2.4rem;
        line-height: 1.08;
    }

    .ecosistema-grid {
        max-width: 100%;
        gap: 1rem;
    }

    .eco-card {
        min-height: 260px;
        padding: 1.6rem 1.2rem 1.4rem;
    }

    .eco-numero {
        font-size: 2rem;
    }

    .eco-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .eco-card p {
        font-size: 0.92rem;
        line-height: 1.4;
    }

    /* METODO UDAI */
    .metodo-udai {
        padding: 4rem 1.5rem 0;
    }

    .metodo-cta {
        margin-top: 1rem;
    }

    .cta {
        padding: 4rem 1rem 1.5rem;
        margin-top: -1px;
    }

    .metodo-titulo {
        font-size: 3rem;
        line-height: 1;
    }

    .metodo-bajada {
        font-size: 1.05rem;
        line-height: 1.35;
    }

    .metodo-slider {
        max-width: 100%;
    }

    .metodo-card {
        min-height: 460px;
        border-radius: 0.9rem;
    }

    .metodo-contenido {
        max-width: 100%;
        padding: 4.5rem 4rem 4rem 5rem;
        gap: 1rem;
    }

    .metodo-indicadores {
        left: 1.25rem;
        gap: 0.45rem;
    }

    .metodo-dot {
        width: 12px;
        height: 12px;
    }

    .metodo-texto-wrap {
        max-width: 480px;
    }

    .metodo-texto-wrap h3 {
        font-size: 2.2rem;
        line-height: 1.05;
        margin-bottom: 0.9rem;
    }

    .metodo-linea {
        max-width: 320px;
        margin-bottom: 0.9rem;
    }

    .metodo-texto-wrap p {
        font-size: 0.95rem;
        line-height: 1.45;
        max-width: 440px;
    }

    .metodo-flecha {
        right: 2rem;
        width: 54px;
        height: 54px;
    }

    .metodo-flecha-arriba {
        top: 1.2rem;
    }

    .metodo-flecha-abajo {
        bottom: 1.2rem;
    }

    /* JALISCO */
    .jalisco-contenedor {
        padding: 4rem 1.5rem 2.3rem;
    }

    .jalisco-texto h2 {
        font-size: 2.5rem;
        line-height: 1.08;
    }

    .jalisco-texto p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .jalisco-mapa {
        margin-top: 2.2rem;
    }

    .jalisco-mapa img {
        max-width: 500px;
    }

    .jalisco-numeros {
        padding: 1.2rem 1.5rem;
    }

    .jalisco-numeros-contenedor {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .jalisco-numero-item {
        min-width: 180px;
    }

    .jalisco-numero-item h3 {
        font-size: 1.7rem;
    }

    .jalisco-numero-item p {
        font-size: 0.95rem;
    }

    /*Seccion para boton*/
    .btn-contacto {
        padding: 0.7rem 4rem;
        font-size: 1.3rem;
    }

    .cta-texto {
        font-size: 0.85rem;
        max-width: 20rem;
    }

    /*Seccion segundo boton azul*/
    .cta--azul {
        padding-bottom: 4rem;
    }

    /*Seccion cuadro de experiencias*/
    .contenedor-exp {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 3rem;
        padding: 3rem;
        max-width: 50rem;
    }

    .logo-exp {
        width: 15rem;
        margin: 0 0 1rem 0;
    }
    
    .exp-info p {
        max-width: 40rem;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .exp-stats {
        flex: 0.8;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.4rem;
        text-align: center;
    }
    
    .stat {
        width: 100%;
        margin-bottom: 0;
    }

    .stat h2 {
        font-size: 2rem;
    }

    .stat p {
        font-size: 1rem;
    }


    /*Seccion para equipo de trabajo*/
    .grid-equipo {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }

    /*Seccion para preguntas*/
    .seccion-preguntas {
        padding: 4rem 2rem;
    }

    .seccion-preguntas h2 {
        font-size: 2.4rem;
    }

    .contenedor-preguntas {
        max-width: 90%;
    }

    .pregunta-header p {
        font-size: 1.1rem;
    }

    .pregunta-body p {
        font-size: 0.95rem;
        margin-right: 2rem;
    }

    .icono {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    /*Seccion para contactanos*/
    .contenedor-contacto {
        max-width: 500px;
        padding: 2rem;
    }

    .contenedor-contacto h2 {
        font-size: 2.2rem;
    }

    .subtitulo {
        font-size: 0.9rem;
    }

    .btn-contacto-form {
        font-size: 1.3rem;
    }

    .site-footer-inner {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .site-footer-bottom {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .site-footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 3rem;
    }


    /*Seccion equipo*/
    .seccion-equipo {
        padding: 80px 0;
        min-height: auto;
    }

    .inner {
        padding: 0 40px;
    }

    .equipo-titulo {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .equipo-desc {
        font-size: 1rem;
        max-width: 680px;
        margin: 0 auto 2.5rem;
        line-height: 1.6;
    }

    .equipo-fila {
        flex-wrap: wrap;
        gap: 30px 20px;
        margin-bottom: 2rem;
    }

    .asesor {
        width: 100px;
    }

    .asesor-foto {
        width: 80px;
        height: 80px;
        margin: 0 auto 12px;
    }

    .asesor-foto::before {
        top: 14px;
        width: 24px;
        height: 24px;
    }

    .asesor-foto::after {
        width: 42px;
        height: 26px;
        bottom: 8px;
    }

    .asesor-nombre {
        font-size: 0.83rem;
    }

    .asesor-puesto {
        font-size: 0.74rem;
    }

    .equipo-fade {
        height: 90px;
    }

    .centrar-btn {
        margin-top: 2rem;
    }

    .btn-equipo-ver {
        padding: 14px 42px;
        font-size: 0.95rem;
    }

    /*Desarrollos*/
    /* INNER (lo usa tu sección) */
    .inner2 {
        max-width: 100%;
        padding: 5rem 4rem;
        margin: 0rem;
    }

}

@media (min-width: 768px) and (max-width: 820px) {
    .seccion-numeros {
        padding: 1.2rem 0.8rem;
    }

    .contenedor-numeros {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .numero-item {
        flex: 1 1 0 !important;
        width: auto !important;
        min-width: 0 !important;
    }

    .numero-item h3 {
        font-size: 1.5rem;
    }
    
    .numero-item p {
        font-size: 0.62rem;
    }
}

/* =======================
   RESPONSIVE MÓVILES
   ======================= */
@media (max-width: 750px) {

    /* Navbar más compacto */
    .navbar {
        padding: 0.8rem 2rem;
        gap: 1rem;
    }

    .navbar .logo img {
        height: 2.5rem;
    }

    .btn-pill {
        display: none;
    }

    .menu {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .menu-movil a {
        font-size: 1.2rem;
        padding: 0.9rem 1.5rem;
        line-height: 1.3;
    }

    .menu-movil a:hover {
        color: var(--color-dorado);
        cursor: pointer;
    }

    .menu-movil ul {
        gap: 0.2rem;
    }

    .menu-movil-cerrar {
        width: 3rem;
        height: 3rem;
        top: 0.8rem;
        right: 1rem;
        margin-right: 0.8rem;
    }

    /*Seccion inicio*/
    .rombo {
        padding: 6.5rem 0 3rem;
        clip-path: none;
    }

    .hero-mujeres {
        min-height: 740px;
        padding: 6.4rem 0 2rem;
        align-items: center;
        background-position: center top;
    }

    .seccion-inicio {
        width: 100%;
    }

    .contenedor-inicio {
        width: 100%;
        max-width: 100%;
        padding: 0 0.8rem;
        justify-content: center;
        align-items: flex-start;
    }

    .inicio-card {
        width: 100%;
        max-width: 100%;
        margin: 2rem auto 0;
        padding: 2rem 1.2rem 1.6rem;
        border-radius: 1.4rem;
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
    }

    .inicio-texto h2 {
        font-size: 1.65rem;
        line-height: 1.08;
        font-weight: 800;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .inicio-texto .dorado {
        white-space: normal;
    }

    .inicio-texto p {
        font-size: 0.9rem;
        line-height: 1.3;
        max-width: 100%;
        margin-bottom: 1.25rem;
    }

    .btn-hero {
        width: 100%;
        text-align: center;
        font-size: 0.84rem;
        padding: 0.95rem 1rem;
        border-radius: 999px;
    }

    /*Seccion para numeros*/
    .seccion-numeros {
        padding: 2rem 1.5rem;
        margin-top: 0rem;
        margin-bottom: -0.2rem;
    }

    .contenedor-numeros {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin: auto;
        text-align: center;
    }

    .numero-item {
        width: 100%;
    }

    .numero-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0rem;
    }

    .numero-item p {
        font-size: 0.6rem;
    }

    /* ECOSISTEMA UDAI */
    .ecosistema-udai {
        padding: 2.5rem 1rem 3rem;
    }

    .ecosistema-header {
        margin-bottom: 2rem;
    }

    .ecosistema-subtitulo {
        font-size: 0.78rem;
    }

    .ecosistema-titulo {
        font-size: 2rem;
        line-height: 1.1;
    }

    .ecosistema-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .eco-card {
        min-height: auto;
        padding: 1.5rem 1rem 1.3rem;
        border-radius: 0.8rem;
    }

    .eco-numero {
        font-size: 1.8rem;
        margin-bottom: 0.55rem;
    }

    .eco-card h3 {
        font-size: 1rem;
        line-height: 1.25;
        margin-bottom: 0.7rem;
    }

    .eco-card p {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    /* METODO UDAI */
    .metodo-udai {
        padding: 3rem 1rem 1rem;
    }

    .metodo-header {
        margin-bottom: 1.7rem;
    }

    .metodo-subtitulo {
        font-size: 0.75rem;
    }

    .metodo-titulo {
        font-size: 2.1rem;
        line-height: 1.05;
        margin-bottom: 0.8rem;
    }

    .metodo-bajada {
        font-size: 0.98rem;
        line-height: 1.4;
    }

    .metodo-card {
        min-height: 320px;
        border-radius: 0.8rem;
        background-position: center;
    }

    .metodo-overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.82) 0%,
                rgba(0, 0, 0, 0.62) 45%,
                rgba(0, 0, 0, 0.35) 100%);
    }

    .metodo-contenido {
        padding: 4.2rem 1.25rem 4.5rem 1.25rem;
        max-width: 100%;
        align-items: flex-start;
    }

    .metodo-indicadores {
        left: 50%;
        top: 1rem;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 0.45rem;
    }

    .metodo-dot {
        width: 10px;
        height: 10px;
    }

    .metodo-texto-wrap {
        max-width: 100%;
    }

    .metodo-texto-wrap h3 {
        font-size: 1.7rem;
        line-height: 1.08;
        margin-bottom: 0.8rem;
    }

    .metodo-linea {
        max-width: 220px;
        margin-bottom: 0.8rem;
    }

    .metodo-texto-wrap p {
        font-size: 0.92rem;
        line-height: 1.5;
        max-width: 100%;
    }

    .metodo-flecha {
        right: 1rem;
        width: 46px;
        height: 46px;
        display: none;
    }

    .metodo-flecha span {
        width: 18px;
        height: 5px;
    }

    .metodo-flecha-arriba {
        top: auto;
        bottom: 4.2rem;
    }

    .metodo-flecha-abajo {
        bottom: 1rem;
    }

    .metodo-cta {
        margin-top: 1.5rem;
    }

    /* JALISCO */
    .jalisco-contenedor {
        padding: 3rem 1rem 2rem;
    }

    .jalisco-texto h2 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .jalisco-texto p {
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .jalisco-mapa {
        margin-top: 2rem;
    }

    .jalisco-mapa img {
        max-width: 100%;
    }

    .jalisco-numeros {
        padding: 1rem;
    }

    .jalisco-numeros-contenedor {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin: auto;
        text-align: center;
    }

    .jalisco-numero-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0rem;
    }

    .jalisco-numero-item p {
        font-size: 0.6rem;
    }

    /*Seccion para boton*/
    .cta {
        padding: 0 1rem 1.5rem;
        margin-top: -1px;
    }

    .btn-contacto {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }

    .cta-texto {
        font-size: 0.8rem;
        max-width: 18rem;
        line-height: 1.4;
        color: var(--color-negro);
    }

    /*Seccion segundo boton azul*/
    .cta--azul {
        padding-top: 0rem;
        padding-bottom: 2rem;
    }

    .cta--azul .cta-texto {
        font-size: 0.8rem;
        max-width: 18rem;
        line-height: 1.4;
        color: var(--color-blanco);
    }

    /*Seccion para cuadro de experiencias*/
    .experiencia {
        padding: 4rem 1rem;
    }

    .contenedor-exp {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        min-height: 20rem;
    }

    .logo-exp {
        width: 10rem;
        margin: 0 auto 1rem auto;
    }

    .exp-info p {
        font-size: 0.85rem;
        text-align: center;
        text-align: left;
    }

    .btn-exp {
        width: 100%;
        max-width: 290px;
        text-align: center;
        font-size: 0.9rem;
        text-align: left;
    }

    .exp-stats {
        flex-direction: column;
        gap: 1.2rem;
        display: none;
    }

    .expOculto {
        display: none;
    }

    .stat {
        margin-bottom: 0;
    }

    .stat h2 {
        font-size: 1.6rem;
    }

    .stat p {
        font-size: 0.85rem;
    }


    /*Seccion para equipo de trabajo*/
    /* ─── EQUIPO ─── */
    .seccion-equipo {
        padding: 60px 0;
    }

    /* ─── HELPERS ─── */
    .inner {
        padding: 0 20px;
        max-width: 100%;
    }

    .equipo-titulo {
        font-size: 1.75rem;
        padding: 0 16px;
    }

    .equipo-desc {
        font-size: 0.95rem;
        padding: 0 16px;
        margin-bottom: 2rem;
    }

    .equipo-fila {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        margin-bottom: 0.5rem;
    }

    /* Mostrar solo 3 por fila — ocultar el 4° y 5° asesor */
    .equipo-fila .asesor:nth-child(4),
    .equipo-fila .asesor:nth-child(5) {
        display: none;
    }

    .asesor {
        width: 33.33%;
        padding: 10px 6px;
    }

    .asesor-foto {
        width: 72px;
        height: 72px;
    }

    .asesor-nombre {
        font-size: 0.78rem;
    }

    .asesor-puesto {
        font-size: 0.70rem;
    }

    .equipo-fade {
        height: 80px;
    }

    .btn-equipo-ver {
        font-size: 0.9rem;
        padding: 13px 40px;
    }

    /*Seccion para preguntas*/
    .seccion-preguntas {
        padding: 3rem 1.5rem;
        padding-bottom: 1rem;
    }

    .seccion-preguntas h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contenedor-preguntas {
        max-width: 100%;
    }

    .pregunta {
        padding: 1.2rem 0;
    }

    .pregunta-header {
        align-items: flex-start;
    }

    .pregunta-header p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .icono {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
        flex-shrink: 0;
        margin-top: 3px;
    }

    .pregunta-body p {
        font-size: 0.9rem;
        margin-right: 0;
    }

    /* ─── HELPERS ─── */
    .inner2 {
        padding: 0;
        max-width: 100%;
        margin: auto 1.5rem;
        padding-bottom: 0rem;
        margin-bottom: 0rem;
    }

    /* ─── DESARROLLOS ─── */
    .seccion-desarrollos {
        padding: 50px 0;
        margin: 0rem;
        margin-bottom: 0rem;
    }

    .dev-titulo {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .dev-cabecera {
        font-size: 1.2rem;
        padding: 20px 0;
        gap: 12px;
    }

    .dev-circulo {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .dev-signo {
        font-size: 1.3rem;
    }

    .dev-cuerpo {
        flex-direction: column;
        gap: 0px;
        padding-bottom: 24px;
    }

    .dev-slider {
        width: 100%;
        height: 240px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .dev-slides-wrap {
        border-radius: 10px;
        border-top-right-radius: 10px;
    }

    .dev-slide {
        width: 100%;
        height: 240px;
    }

    .dev-info {
        border-radius: 10px;
        padding: 20px 18px 18px;
        margin-left: 0;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }

    .dev-descripcion {
        font-size: 0.95rem;
    }

    .dev-dato {
        font-size: 0.9rem;
    }

    .btn-dev-cta {
        font-size: 0.82rem;
        padding: 10px 24px;
        align-self: flex-start;
    }

    /*Seccion para contactanos*/
    .seccion-contacto {
        padding: 2rem 1rem;
    }

    .contenedor-contacto {
        padding: 1.3rem;
        border-radius: 15px;
    }

    .contenedor-contacto h2 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }

    .subtitulo {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .fila {
        flex-direction: column;
        gap: 0rem;
        margin-bottom: 0px;
    }

    .campo label {
        font-size: 0.88rem;
        margin-bottom: 0.5rem;
    }

    input,
    select,
    textarea {
        font-size: 0.9rem;
        padding: 13px 14px;
        border-radius: 6px;
    }

    .btn-contacto-form {
        font-size: 1.15rem;
        min-width: 0;
        width: 100%;
        padding: 14px 20px;
        border-radius: 8px;
        margin-top: -8px;
    }

    .site-footer {
        padding: 2.5rem 0 0;
    }

    .site-footer-inner {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0 24px 0;
    }

    /* BRAND */
    .site-footer-brand {
        display: flex;
        flex-direction: column;
        order: 1;
        padding-bottom: 1.8rem;
    }

    /* Logo */
    .site-footer-brand .logo {
        order: 1;
        margin-bottom: 0;
    }

    .site-footer-brand .logo img {
        height: 3rem;
    }

    /* CTA */
    .site-footer-cta {
        order: 2;
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    /* Botón */
    .site-footer-btn {
        order: 3;
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.2rem;
        font-size: 0.95rem;
    }

    /* Socials */
    .site-footer-socials {
        order: 4;
        justify-content: center;
        padding: 1.5rem 0 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        margin-top: 1.5rem;
        margin-bottom: 0;
    }

    /* LINKS */
    .site-footer-links {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-bottom: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .site-footer-col {
        padding: 1.5rem 0 0;
    }

    /* Orden columnas */
    .site-footer-col:nth-child(1) {
        order: 1;
    }

    .site-footer-col:nth-child(4) {
        order: 2;
    }

    .site-footer-col:nth-child(2) {
        order: 3;
    }

    .site-footer-col:nth-child(3) {
        order: 4;
    }

    .site-footer-title {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        margin-bottom: 1rem;
    }

    .site-footer-col ul li {
        margin-bottom: 0.75rem;
    }

    .site-footer-col ul li a {
        font-size: 0.92rem;
        color: rgba(255, 255, 255, 0.65);
    }

    /* BOTTOM */
    .site-footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 20px 1.75rem;
        gap: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .site-footer-bottom p,
    .site-footer-bottom a {
        font-size: 0.75rem;
    }

    .site-footer-socials img {
        width: 2.2rem;
        height: 2.2rem;
    }

}

/* ════════════════════════════════
   FOOTER RESPONSIVE (ORIGINAL)
════════════════════════════════ */

/* ─── DESKTOP (≥1025px) ─── */
@media (min-width: 1025px) {

    .site-footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* 1. Logo */
    .site-footer-brand .logo {
        order: 1;
        margin-bottom: 1.2rem;
    }

    /* 2. Redes */
    .site-footer-socials {
        order: 2;
        display: flex;
        gap: 1rem;
        margin-bottom: 1.8rem;
        align-items: center;
    }

    /* 3. CTA */
    .site-footer-cta {
        order: 3;
        margin-bottom: 1.5rem;
    }

    /* 4. Botón */
    .site-footer-btn {
        order: 4;
    }

    /* Links */
    .site-footer-links {
        grid-template-columns: repeat(4, max-content);
        align-items: start;
        row-gap: 0;
    }

    /* Orden columnas */
    .site-footer-col:nth-child(1) {
        order: 1;
    }

    .site-footer-col:nth-child(2) {
        order: 3;
    }

    .site-footer-col:nth-child(3) {
        order: 4;
    }

    .site-footer-col:nth-child(4) {
        order: 2;
    }

    .site-footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
}


/* ════════════════════════════════
   TABLET (769px – 1024px)
════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {

    .site-footer-inner {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .site-footer-bottom {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .site-footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 3rem;
    }

    .desFooter {
        display: none;
    }

}


/* =======================
   RESPONSIVE 2K / 4K
   Pantallas grandes
   ======================= */
@media (min-width: 1920px) {

    /* CONTENEDOR GLOBAL */
    main {
        max-width: 4096px;
        margin-left: auto;
        margin-right: auto;
    }

    .azull {
        background-color: var(--color-azul);
    }

    /* NAVBAR */
    .navbar {
        max-width: 1920px;
        margin: 0 auto;
    }

    /* HERO */
    .hero-mujeres {
        padding: 10rem 2rem 16rem;
    }

    .seccion-inicio {
        width: 100%;
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
    }

    .inicio-card {
        max-width: 620px;
        margin: 3.1rem 0 0;
        margin-left: calc((100% - 1100px) / 2 - 40px);
    }
    
    /* SECCIONES GENERALES CENTRADAS */
    .seccion-numeros,
    .ecosistema-udai,
    .metodo-udai,
    .seccion-jalisco,
    .seccion-equipo,
    .seccion-preguntas,
    .seccion-desarrollos,
    .seccion-contacto {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* NÚMEROS */
    .contenedor-numeros {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* ECOSISTEMA UDAI */
    .ecosistema-udai {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 2rem;
        padding-right: 2rem;
        text-align: center;
    }

    .ecosistema-header {
        width: 100%;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .ecosistema-grid {
        width: 100%;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        gap: 1.8rem;
    }

    .eco-card {
        min-height: 320px;
    }

    .ecosistema-udai .cta {
        width: 100%;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .ecosistema-udai .btn-contacto,
    .ecosistema-udai .cta-texto {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    /* MÉTODO */
    .metodo-slider {
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }

    .metodo-card {
        min-height: 620px;
    }

    /* JALISCO */
    .jalisco-contenedor,
    .jalisco-numeros-contenedor {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .jalisco-mapa img {
        max-width: 760px;
    }

    /* EXPERIENCIA */
    .contenedor-exp {
        max-width: 1400px;
        min-height: 42rem;
        margin-left: auto;
        margin-right: auto;
    }

    /* EQUIPO */
    .inner {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* PREGUNTAS */
    .contenedor-preguntas {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* DESARROLLOS */
    .inner2 {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding: 6rem 2rem;
    }

    /* CONTACTO */
    .contenedor-contacto {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    /* FOOTER */
    .site-footer-inner,
    .site-footer-bottom {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}