/* =========================================
   CONFIGURACIÓN GLOBAL
========================================= */
:root {
    --color-azul: #18223C;
    --color-dorado: #AE7B39;
    --color-blanco: #ffffff;
    --color-negro: #000000;
    --color-gris: #374151;
    --color-cielo: #A4D1E4;
    --color-azul-hover: #166077;
    --color-dorado-hover: #c18a47;
    --color-blanco-hover: #F3F3F4;
    --color-gris-claro: #F3F3F4;
    --color-gris-hover: #d1d5db;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--color-negro);
    background: var(--color-azul);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-weight: 300;
}

.dorado {
    color: var(--color-dorado);
}

.negrita {
    font-weight: 600;
    color: var(--color-blanco);
}

/* =========================================
   NAVBAR
========================================= */
.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);
}

.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;
}

.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);
}


/* =========================================
   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 2rem;
    min-height: auto;
    display: flex;
    align-items: flex-start;

}

.rombo--top2 {
    background: url("img/principal/sillas.png") center/cover no-repeat;
    color: var(--color-dorado);
    margin: 0;
    padding: 16rem 0;
    clip-path: none;
}

.rombo--top3 {
    background: var(--color-blanco);
    color: var(--color-negro);
    margin: 0;
    padding: 4rem 0;
    clip-path: none;
}

/* =========================================
   HERO
========================================= */
.seccion-inicio {
    background: transparent;
    width: 100%;
    position: relative;
    z-index: 4;
}

.contenedor-inicio {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: auto;
}

.inicio-card {
    background: #ffffff;
    border-radius: 1.8rem;
    width: 100%;
    max-width: 475px;
    padding: 1.9rem 1.7rem 1.6rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 2;
}

.inicio-texto h2 {
    color: var(--color-negro);
    font-size: 2.5rem;
    line-height: 1.12;
    margin-bottom: 1.1rem;
    text-align: left;
    font-weight: 800;
    max-width: 420px;
}

.inicio-texto .dorado {
    white-space: nowrap;
}

.inicio-texto p {
    color: var(--color-negro);
    font-size: 1.05rem;
    line-height: 1.32;
    margin-bottom: 1.35rem;
    text-align: left;
    max-width: 410px;
}

.inicio-texto strong {
    font-weight: 800;
    color: var(--color-negro);
}

.btn-hero {
    display: inline-block;
    background: var(--color-azul);
    color: var(--color-blanco);
    text-decoration: none;
    padding: 0.62rem 1.2rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--color-azul);
}

.btn-hero:hover {
    background: transparent;
    color: var(--color-azul);
}

/* =========================================
   CONTADORES
========================================= */
.seccion-numeros {
    position: relative;
    z-index: 1;
    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;
    color: var(--color-blanco);
}

/* =========================================
   ECOSISTEMA UDAI
========================================= */
.ecosistema-udai {
    background: var(--color-azul);
    padding: 3.5rem 2rem 4rem;
    text-align: center;
    margin: 0rem;
}

.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;
}

.ecosistema-cta {
    margin-top: 2.3rem;
    text-align: center;
}

.btn-ecosistema {
    display: inline-block;
    background: var(--color-blanco);
    color: var(--color-negro);
    text-decoration: none;
    padding: 0.75rem 2.2rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid var(--color-blanco);
    transition: all 0.3s ease;
}

.btn-ecosistema:hover {
    background: transparent;
    color: var(--color-blanco);
}

.ecosistema-cta p {
    margin-top: 1rem;
    color: var(--color-blanco);
    font-size: 0.78rem;
    line-height: 1.35;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   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/cima/detalle2.png") center/cover no-repeat;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.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: 2.2rem;
    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;
}

.btn-metodo {
    display: inline-block;
    background: var(--color-azul);
    color: var(--color-blanco);
    text-decoration: none;
    padding: 0.85rem 2.8rem;
    border-radius: 0.45rem;
    font-size: 1.35rem;
    font-weight: 700;
    border: 2px solid var(--color-azul);
    transition: all 0.3s ease;
}

.btn-metodo:hover {
    background: transparent;
    color: var(--color-azul);
}

.metodo-cta p {
    max-width: 430px;
    margin: 0.9rem auto 0;
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--color-azul);
}

/* =========================================
   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;
}

/* =========================================
   NOSOTROS / EXPERIENCIA
========================================= */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.10);
}

.contenedor-exp {
    position: relative;
    max-width: 75rem;
    min-height: 40rem;
    margin: auto;
    display: flex;
    gap: 3rem;
    padding: 5rem;
    background: rgba(24, 34, 60, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    color: var(--color-blanco);
}

.exp-info {
    flex: 1;
}

.logo-exp {
    width: 20rem;
    margin-bottom: 1rem;
}

.exp-info p {
    font-size: 1.05rem;
    line-height: 1.4;
    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:hover {
    transform: translateX(5px);
}

.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: 0;
}

.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;
}

/* =========================================
   DESARROLLADORA / ACORDEÓN
========================================= */

.btn-desa:hover {
    background: var(--color-azul);
    color: var(--color-blanco);
}

.inner2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.seccion-desarrollos {
    background: var(--color-blanco);
    padding: 0 0 5rem;
    margin: 0;
}

.dev-titulo {
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--color-negro);
    text-align: center;
    margin-bottom: 3rem;
}

.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;
    cursor: pointer;
    text-align: left;
    transition: opacity 0.2s;
    color: var(--color-negro);
}

.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;
    line-height: 1;
    user-select: none;
}

.dev-cuerpo {
    display: flex;
    gap: 0;
    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: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
    background: var(--color-blanco);
}

.dev-slides-wrap {
    overflow: hidden;
    border-radius: 14px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    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: 0;
    border-bottom-right-radius: 0;
    background-size: cover !important;
    background-position: center !important;
}

.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);
}

.dev-info {
    flex: 1;
    background: var(--color-blanco);
    border-radius: 14px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
}

.dev-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.90rem;
    color: var(--color-negro);
    margin-bottom: 12px;
}

.dev-descripcion {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-negro);
    line-height: 1.5;
    font-style: italic;
    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-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;
}

.dev-separador {
    height: 1px;
    background: var(--color-negro);
    margin: 40px 0;
}

.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-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);
}

/* =========================================
   EQUIPO
========================================= */
.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;
}

.equipo-titulo {
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--color-negro);
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
}

.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);
}

.equipo-wrap {
    position: relative;
}

.equipo-fila {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}

.equipo-fila-fade {
    opacity: 1;
}

.equipo-filas-extra {
    display: none;
}

.equipo-filas-extra.visible {
    display: block;
}

.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;
}

.asesor {
    text-align: center;
    width: 190px;
    flex-shrink: 0;
}

.asesor-foto {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--color-gris);
    margin: 0 auto 14px;
    overflow: hidden;
    position: relative;
}

.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);
}

.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);
}

.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);
}

.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-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);
}

/* =========================================
   CONTACTO
========================================= */
.seccion-contacto {
    position: relative;
    background: url("img/principal/mujeres.png") center/cover no-repeat;
    padding: 6rem 2rem;
}

.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);
}

/* =========================================
   PREGUNTAS FRECUENTES
========================================= */
.seccion-faq {
    background: var(--color-azul);
    padding: 5.5rem 2rem 4.5rem;
}

.faq-contenedor {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-titulo {
    text-align: center;
    color: var(--color-blanco);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.faq-lista {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    padding: 0.4rem 0;
}

.faq-pregunta {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--color-blanco);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: left;
    padding: 1.35rem 0;
    cursor: pointer;
}

.faq-pregunta span:first-child {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.3;
}

.faq-icono {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    color: var(--color-blanco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.faq-pregunta:hover .faq-icono {
    background: rgba(255, 255, 255, 0.6);
}

.faq-respuesta {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
    padding-right: 4.5rem;
}

.faq-item.active .faq-respuesta {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 1.4rem;
}

.faq-respuesta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.06rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 900px;
}

.faq-respuesta p:last-child {
    margin-bottom: 0;
}

.faq-item.active .faq-icono {
    background: rgba(255, 255, 255, 0.55);
}

.faq-cta {
    margin-top: 3.5rem;
    text-align: center;
}

.btn-faq {
    display: inline-block;
    background: var(--color-blanco);
    color: var(--color-negro);
    text-decoration: none;
    padding: 0.9rem 3rem;
    border-radius: 0.55rem;
    font-size: 2rem;
    font-weight: 700;
    border: 2px solid var(--color-blanco);
    transition: all 0.3s ease;
}

.btn-faq:hover {
    background: transparent;
    color: var(--color-blanco);
}

.faq-cta p {
    max-width: 430px;
    margin: 0.9rem auto 0;
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--color-blanco);
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
    background: var(--color-azul);
    padding: 3.5rem 0 0;
    margin: 0;
}

.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;
}

.site-footer-brand {
    display: flex;
    flex-direction: column;
}

.site-footer-brand .logo img {
    height: 4rem;
    margin-bottom: 2rem;
}

.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;
}

.site-footer-cta {
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--color-blanco);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.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);
}

.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);
}

.site-footer-bottom {
    max-width: 75rem;
    margin: 0 auto;
    padding: 1.5rem 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    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);
}

/* =========================================
   RESPONSIVE TABLET
========================================= */
@media (min-width: 751px) and (max-width: 1024px) {
    .navbar {
        padding: 1rem 2rem;
        gap: 2rem;
    }

    .navbar .logo img {
        height: 2rem;
    }

    .menu {
        gap: 1.5rem;
    }

    .menu a {
        font-size: 0.9rem;
    }

    .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;
    }

    .rombo {
        padding: 10rem 2rem 2rem;
        clip-path: none;
    }

    .hero-mujeres {
        min-height: 620px;
        padding: 8rem 2rem 2rem;
    }

    .inicio-card {
        max-width: 520px;
        padding: 2rem;
    }

    .inicio-texto h2 {
        font-size: 3rem;
    }

    .rombo--top2 {
        padding: 15rem 5rem;
        clip-path: none;
    }

    .rombo--top3 {
        padding: 4rem 2.5rem 4rem;
        clip-path: none;
    }

    .contenedor-inicio {
        text-align: center;
        gap: 2rem;
    }

    .contenedor-numeros {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        justify-content: unset;
        align-items: start;
    }

    .numero-item {
        width: 100%;
    }

    .numero-item h3 {
        font-size: 2.2rem;
        margin-bottom: 0;
    }

    .numero-item p {
        font-size: 0.95rem;
    }

    .jalisco-contenedor {
        padding: 4rem 2rem 2rem;
    }

    .jalisco-texto h2 {
        font-size: 2.8rem;
    }

    .jalisco-texto p {
        font-size: 1rem;
        max-width: 600px;
    }

    .jalisco-mapa img {
        max-width: 520px;
    }

    .jalisco-numeros-contenedor {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        justify-content: unset;
        align-items: start;
    }

    .jalisco-numero-item {
        width: 100%;
    }

    .contenedor-exp {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem;
        max-width: 50rem;
    }

    .logo-exp {
        width: 15rem;
        margin: 0 auto 1rem;
    }

    .exp-info p {
        max-width: 40rem;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .exp-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        justify-content: unset;
        align-items: start;
    }

    .stat {
        width: 100%;
        margin-bottom: 0;
    }

    .inner2 {
        max-width: 100%;
        padding: 0 40px;
    }

    .inner {
        max-width: 100%;
        padding: 0 40px;
    }

    .seccion-desarrollos {
        padding: 0 0 5rem;
    }

    .dev-slider,
    .dev-slide {
        width: 360px;
        height: 440px;
    }

    .dev-cuerpo {
        align-items: stretch;
    }

    .dev-info {
        padding: 24px 22px 22px;
    }

    .dev-cabecera {
        font-size: 1.5rem;
    }

    .metodo-card {
        min-height: 470px;
    }

    .metodo-contenido {
        position: static;
        padding: 5rem 5rem 4rem 2.2rem;
        max-width: 560px;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .metodo-indicadores {
        position: absolute;
        left: 50%;
        bottom: 1.5rem;
        top: auto !important;
        transform: translateX(-50%) !important;
        display: flex;
        flex-direction: row;
        gap: 0.45rem;
        z-index: 30;
        margin-top: 0 !important;
    }

    .metodo-dot {
        width: 12px;
        height: 12px;
    }

    .metodo-texto-wrap h3 {
        font-size: 2.2rem;
    }

    .metodo-linea {
        max-width: 320px;
    }

    .metodo-texto-wrap p {
        font-size: 0.95rem;
        max-width: 410px;
    }

    .metodo-flecha {
        position: absolute;
        top: auto !important;
        bottom: 1rem !important;
        right: auto;
        width: 54px;
        height: 54px;
        z-index: 20;
    }

    .metodo-flecha-arriba {
        left: 1rem;
        right: auto !important;
    }

    .metodo-flecha-arriba span:first-child {
        transform: translate(-4px, -6px) rotate(-45deg);
    }

    .metodo-flecha-arriba span:last-child {
        transform: translate(-4px, 6px) rotate(45deg);
    }

    .metodo-flecha-abajo {
        right: 1rem;
        left: auto !important;
    }

    .metodo-flecha-abajo span:first-child {
        transform: translate(4px, -6px) rotate(45deg);
    }

    .metodo-flecha-abajo span:last-child {
        transform: translate(4px, 6px) rotate(-45deg);
    }

    .metodo-flecha span {
        width: 20px;
        height: 5px;
    }

    .seccion-equipo {
        padding: 80px 0;
    }

    .contenedor-contacto {
        max-width: 500px;
        padding: 2rem;
    }

    .contenedor-contacto h2 {
        font-size: 2.2rem;
    }

    .btn-contacto-form {
        font-size: 1.3rem;
    }

    .site-footer-inner,
    .site-footer-bottom {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .site-footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 3rem;
    }

    .numero-item,
    .jalisco-numero-item,
    .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stat h2 {
        min-height: 2.8rem;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .stat p {
        min-height: 2.6rem;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
    }
}

/* =========================================
   RESPONSIVE MOVIL
========================================= */

@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: 1rem;
        right: 1rem;
    }

    .rombo {
        padding: 6.5rem 0 3rem;
        clip-path: none;
    }

    .hero-mujeres {
        min-height: 740px;
        padding: 6.4rem 0 2rem;
        align-items: flex-start;
        background-position: center top;
    }

    .seccion-inicio {
        width: 100%;
    }

    .contenedor-inicio {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        justify-content: center;
        align-items: flex-start;
    }

    .inicio-card {
        width: 100%;
        max-width: 100%;
        margin-top: 3.6rem;
        padding: 2.2rem 1.5rem 1.6rem;
        border-radius: 1.4rem;
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
    }

    .inicio-texto h2 {
        font-size: 3.1rem;
        line-height: 1.05;
        font-weight: 800;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .inicio-texto .dorado {
        white-space: normal;
    }

    .inicio-texto p {
        font-size: 0.98rem;
        line-height: 1.35;
        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-numeros {
        padding: 1.2rem 0.7rem 0rem;
        background: var(--color-azul);
    }

    .contenedor-numeros {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
        text-align: center;
        align-items: start;
    }

    .numero-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .numero-item h3 {
        font-size: 1.9rem;
        line-height: 1;
        font-weight: 800;
        margin-bottom: 0.45rem;
        color: var(--color-blanco);
    }

    .numero-item p {
        font-size: 0.58rem;
        line-height: 1.15;
        font-weight: 600;
        color: var(--color-blanco);
        max-width: 70px;
        margin: 0 auto;
    }

    .numero-item p br {
        display: block;
    }

    .ecosistema-udai {
        padding: 3rem 1rem;
    }

    .ecosistema-titulo {
        font-size: 2.1rem;
    }

    .ecosistema-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .eco-card {
        min-height: auto;
        padding: 1.6rem 1.2rem;
    }

    .eco-numero {
        font-size: 2rem;
    }

    .eco-card h3 {
        font-size: 1.1rem;
    }

    .eco-card p {
        font-size: 0.9rem;
    }

    .btn-ecosistema {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        max-width: 320px;
    }

    .metodo-udai {
        padding: 3rem 1rem;
    }

    .metodo-titulo {
        font-size: 2.6rem;
        line-height: 1;
    }

    .metodo-bajada {
        font-size: 1rem;
    }

    .metodo-slider {
        max-width: 100%;
    }

    .metodo-card {
        position: relative;
        min-height: 460px;
        border-radius: 0.8rem;
        overflow: hidden;
        background-position: center;
        background-size: cover;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .metodo-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(180deg,
                rgba(10, 18, 35, 0.78) 0%,
                rgba(10, 18, 35, 0.58) 30%,
                rgba(10, 18, 35, 0.34) 58%,
                rgba(10, 18, 35, 0.18) 100%);
    }

    .metodo-contenido {
        position: absolute;
        inset: 0;
        z-index: 3;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 1.15rem 1rem;
        max-width: 100%;
    }

    .metodo-texto-wrap {
        position: relative;
        z-index: 4;
        width: 100%;
        max-width: 290px;
    }

    .metodo-texto-wrap h3 {
        position: relative;
        z-index: 4;
        font-size: 1.1rem;
        line-height: 1.02;
        margin-bottom: 0.7rem;
        color: #ffffff !important;
        font-weight: 300;
        text-transform: uppercase;
        width: 100%;
        max-width: 290px;
    }

    .metodo-linea {
        position: relative;
        z-index: 4;
        width: 100%;
        max-width: 290px;
        height: 2px;
        margin: 0 0 0.75rem 0;
        background: rgba(255, 255, 255, 0.95);
    }

    .metodo-texto-wrap p {
        position: relative;
        z-index: 4;
        font-size: 0.83rem;
        line-height: 1.32;
        width: 100%;
        max-width: 290px;
        color: #ffffff !important;
    }

    .metodo-texto-wrap p strong {
        color: #ffffff !important;
    }

    .metodo-indicadores {
        position: absolute;
        left: 50%;
        bottom: 1.45rem;
        top: auto !important;
        transform: translateX(-50%) !important;
        display: flex;
        flex-direction: row;
        gap: 0.45rem;
        z-index: 30;
    }

    .metodo-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.72);
    }

    .metodo-dot.activo {
        background: #ffffff;
    }

    .metodo-flecha {
        position: absolute;
        bottom: 1.1rem;
        top: auto;
        width: 68px;
        height: 68px;
        border: none;
        background: transparent;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .metodo-flecha span {
        position: absolute;
        width: 24px;
        height: 6px;
        background: #ffffff;
        border-radius: 999px;
    }

    /* Flecha izquierda */
    .metodo-flecha-arriba {
        left: 0.7rem;
        right: auto;
    }

    .metodo-flecha-arriba span:first-child {
        transform: translate(-4px, -6px) rotate(-45deg);
    }

    .metodo-flecha-arriba span:last-child {
        transform: translate(-4px, 6px) rotate(45deg);
    }

    /* Flecha derecha */
    .metodo-flecha-abajo {
        right: 0.7rem;
        left: auto;
    }

    .metodo-flecha-abajo span:first-child {
        transform: translate(4px, -6px) rotate(45deg);
    }

    .metodo-flecha-abajo span:last-child {
        transform: translate(4px, 6px) rotate(-45deg);
    }

    .btn-metodo {
        width: 100%;
        max-width: 320px;
        font-size: 1rem;
        padding: 0.85rem 1rem;
    }

    .jalisco-contenedor {
        padding: 3rem 1rem 2rem;
    }

    .jalisco-texto h2 {
        font-size: 2.2rem;
        line-height: 1.08;
        margin-bottom: 1rem;
    }

    .jalisco-texto p {
        font-size: 0.95rem;
        line-height: 1.45;
        max-width: 100%;
    }

    .jalisco-mapa {
        margin-top: 2rem;
    }

    .jalisco-mapa img {
        max-width: 100%;
    }

    .jalisco-numeros {
        padding: 1.2rem 0.7rem 1rem;
        background: var(--color-blanco);
    }

    .jalisco-numeros-contenedor {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
        align-items: start;
        text-align: center;
    }

    .jalisco-numero-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .jalisco-numero-item h3 {
        font-size: 1.9rem;
        line-height: 1;
        font-weight: 800;
        margin-bottom: 0.45rem;
        color: var(--color-azul);
    }

    .jalisco-numero-item p {
        font-size: 0.58rem;
        line-height: 1.15;
        font-weight: 600;
        color: var(--color-azul);
        max-width: 70px;
        margin: 0 auto;
    }

    .rombo--top2 {
        padding: 8rem 1rem;
        clip-path: none;
    }

    .rombo--top3 {
        padding: 3rem 0 2rem;
        clip-path: none;
    }

    .contenedor-exp {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        min-height: 20rem;
    }

    .logo-exp {
        width: 10rem;
        margin: 0 auto 1rem;
    }

    .exp-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .exp-info p {
        font-size: 0.85rem;
        text-align: left;
        width: 100%;
    }

    .btn-exp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        max-width: 100%;
        white-space: nowrap;
        text-align: center;
        font-size: 0.82rem;
        padding: 0.7rem 1rem;
        margin-top: 1rem;
        order: 3;
        align-self: center;
    }

    .expOculto {
        display: none;
    }

    .exp-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.35rem;
        width: 100%;
        margin-top: 1rem;
        align-items: start;
    }

    .stat {
        width: 100%;
        margin-bottom: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat h2 {
        font-size: 1.35rem;
        line-height: 1;
        font-weight: 800;
        margin-bottom: 0.35rem;
        min-height: 2rem;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .stat p {
        font-size: 0.58rem;
        line-height: 1.15;
        color: var(--color-blanco);
        min-height: 2.1rem;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
    }

    .inner2 {
        padding: 0 1rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .seccion-desarrollos {
        padding: 0 0 4rem;
        margin: 0;
    }

    .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;
    }

    .dev-signo {
        font-size: 1.3rem;
    }

    .dev-cuerpo {
        flex-direction: column;
        padding-bottom: 24px;
    }

    .dev-slider,
    .dev-slide {
        width: 100%;
        height: 240px;
    }

    .dev-slider {
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .dev-arrow {
        position: absolute !important;
        top: auto !important;
        bottom: 0.7rem !important;
        width: 64px !important;
        height: 64px !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        font-size: 0 !important;
        line-height: 0 !important;
        z-index: 10 !important;
        display: block !important;
    }

    .dev-arrow::before,
    .dev-arrow::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 24px;
        height: 5px;
        background: #fff;
        border-radius: 999px;
        left: 50%;
        transform-origin: center;
    }

    /* Flecha izquierda */
    .dev-arrow-prev {
        left: 0.6rem !important;
    }

    .dev-arrow-prev::before {
        transform: translate(-50%, -8px) rotate(-45deg);
    }

    .dev-arrow-prev::after {
        transform: translate(-50%, 8px) rotate(45deg);
    }

    /* Flecha derecha */
    .dev-arrow-next {
        right: 0.6rem !important;
    }

    .dev-arrow-next::before {
        transform: translate(-50%, -8px) rotate(45deg);
    }

    .dev-arrow-next::after {
        transform: translate(-50%, 8px) rotate(-45deg);
    }

    .dev-dots {
        bottom: 1.45rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        gap: 0.42rem !important;
        z-index: 10 !important;
    }

    .dev-slides-wrap {
        border-radius: 10px;
        border-top-right-radius: 10px;
    }

    .dev-info {
        border-radius: 10px;
        padding: 20px 18px 18px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .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-equipo {
        padding: 60px 0;
    }

    .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;
    }

    .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;
    }

    .faq-cta {
        padding: 0 1rem;
    }

    .btn-faq {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        max-width: 100%;
        white-space: nowrap;
        text-align: center;
        padding: 0.85rem 1.4rem;
        border-radius: 0.55rem;
        font-size: 0.95rem;
        font-weight: 700;
        line-height: 1;
    }

    /*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;
    }

    .site-footer-brand {
        display: flex;
        flex-direction: column;
        order: 1;
        padding-bottom: 1.8rem;
    }

    .site-footer-brand .logo {
        order: 1;
        margin-bottom: 0;
    }

    .site-footer-brand .logo img {
        height: 3rem;
    }

    .site-footer-cta {
        order: 2;
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .site-footer-btn {
        order: 3;
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.2rem;
        font-size: 0.95rem;
    }

    .site-footer-socials {
        order: 4;
        justify-content: center;
        padding: 1.5rem 0 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        margin-top: 1.5rem;
        margin-bottom: 0;
    }

    .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;
    }

    .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);
    }

    .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;
    }
}

/* =========================================
   RESPONSIVE MOVIL 430px - 390px
========================================= */

@media (min-width: 390px) and (max-width: 430px) {
    .metodo-udai {
        padding: 3.2rem 1.1rem;
    }

    .metodo-titulo {
        font-size: 2.9rem;
        line-height: 0.98;
        margin-bottom: 0.7rem;
    }

    .metodo-bajada {
        font-size: 1.05rem;
        line-height: 1.2;
    }

    .metodo-card {
        min-height: 500px;
        border-radius: 1rem;
    }

    .metodo-contenido {
        padding: 1.3rem 1.15rem;
        justify-content: center;
    }

    .metodo-texto-wrap {
        width: 100%;
        max-width: 320px;
    }

    .metodo-texto-wrap h3 {
        font-size: 1.3rem;
        line-height: 1.03;
        max-width: 320px;
        margin-bottom: 0.8rem;
    }

    .metodo-linea {
        max-width: 320px;
        height: 2px;
        margin-bottom: 0.8rem;
    }

    .metodo-texto-wrap p {
        font-size: 0.92rem;
        line-height: 1.34;
        max-width: 320px;
    }

    .metodo-flecha {
        width: 72px;
        height: 72px;
        bottom: 0.95rem;
    }

    .metodo-flecha-arriba {
        left: 0.9rem;
    }

    .metodo-flecha-abajo {
        right: 0.9rem;
    }

    .metodo-indicadores {
        bottom: 1.35rem;
    }

    .btn-metodo {
        max-width: 360px;
        font-size: 1.05rem;
    }
}

/* =========================================
   FOOTER RESPONSIVE DESKTOP
========================================= */
@media (min-width: 1025px) {
    .site-footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .site-footer-brand .logo {
        order: 1;
        margin-bottom: 1.2rem;
    }

    .site-footer-socials {
        order: 2;
        display: flex;
        gap: 1rem;
        margin-bottom: 1.8rem;
        align-items: center;
    }

    .site-footer-cta {
        order: 3;
        margin-bottom: 1.5rem;
    }

    .site-footer-btn {
        order: 4;
    }

    .site-footer-links {
        grid-template-columns: repeat(4, max-content);
        align-items: start;
        row-gap: 0;
    }

    .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);
    }
}

/* =========================================
   PANTALLAS 2K Y 4K
========================================= */
@media (min-width: 1920px) {
    main {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .rombo,
    .hero-mujeres,
    .rombo--top2,
    .rombo--top3,
    .seccion-numeros,
    .ecosistema-udai,
    .metodo-udai,
    .seccion-jalisco,
    .jalisco-numeros,
    .seccion-equipo,
    .seccion-faq,
    .seccion-contacto,
    .site-footer {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
}