html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    line-height: 1.6;
    color: var(--color-negro);
    background: var(--color-texto-secundario2);
    -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-blanco: #ffffff;
    --color-negro: #000000;
    --color-texto-secundario: #275247;
    --color-texto-secundario2: #e1e8e4;
    --color-verde: #0e1f10;
    --color-verde-hover: #275247;
    --color-amarillo: #e5c61f;
    --color-amarillo-hover: #f0d94a;
    --color-fondo-menu: rgba(14, 31, 16, 0.88);
    --color-fondo-menu-scroll: rgba(14, 31, 16, 0.96);
    --color-borde-suave: rgba(255, 255, 255, 0.12);
    --color-overlay: rgba(0, 0, 0, 0.26);
    --color-overlay-inferior: rgba(0, 0, 0, 0.50);
    --color-sombra: rgba(0, 0, 0, 0.28);
    --fuente-principal: Georgia, "Times New Roman", serif;
    --fuente-secundaria: Arial, Helvetica, sans-serif;
    --ancho-maximo: 1200px;
    --radio-boton: 8px;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

/* HEADER */
.header {
    position: fixed;
    top: 1.75rem;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: top 0.35s ease;
}

.nav {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 1.6rem;
    background: var(--color-fondo-menu);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: width 0.35s ease, border-radius 0.35s ease, background 0.35s ease;
}

.header.header-scrolled {
    top: 0;
}

.header.header-scrolled .nav {
    width: 100%;
    border-radius: 0;
    background: var(--color-fondo-menu-scroll);
}

.logo img {
    height: 3rem;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-blanco);
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.75;
}

.btn-contacto0 {
    text-decoration: none;
    color: var(--color-blanco);
    background: var(--color-verde-hover);
    padding: 0.95rem 1.35rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--fuente-secundaria);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-contacto0:hover {
    background-color: rgba(34, 95, 66, 0.92);
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   BLOQUEO DE SCROLL — menú abierto (iOS included)
───────────────────────────────────────── */
body.menu-abierto {
    overflow: hidden;
    position: fixed;
    width: 100%;
    touch-action: none;
}

/* ─────────────────────────────────────────
   BOTÓN HAMBURGUESA
───────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-blanco);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, width 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;
    width: 0;
}

.hamburger.abierto span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─────────────────────────────────────────
   MENÚ MÓVIL FULLSCREEN
───────────────────────────────────────── */
.menu-movil {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 11, 0.72) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.menu-movil.abierto {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.menu-movil ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0 2rem;
}

.menu-movil ul li a {
    display: block;
    padding: 1.2rem 0;
    color: var(--color-blanco);
    text-decoration: none;
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.menu-movil ul li a:hover {
    color: var(--color-amarillo);
    letter-spacing: 0.1em;
}

.menu-movil-cta a {
    color: var(--color-amarillo) !important;
    font-weight: 700 !important;
}

/* ─────────────────────────────────────────
   BOTÓN CERRAR (X) MENÚ MÓVIL
───────────────────────────────────────── */
.menu-movil-cerrar {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-movil-cerrar span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-blanco);
    border-radius: 2px;
    position: absolute;
}

.menu-movil-cerrar span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-movil-cerrar span:nth-child(2) {
    transform: rotate(-45deg);
}

/* ─────────────────────────────────────────
   RESPONSIVE — ocultar nav desktop en móvil/tablet
───────────────────────────────────────── */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }

    .btn-contacto0-desktop {
        display: none !important;
    }
}


.seccion-inicio {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image:
        linear-gradient(to bottom, var(--color-overlay), var(--color-overlay-inferior)),
        url("rancho/rancho_entrada.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 6rem 0rem;
    padding-left: 0;
}

.contenido-inicio {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
    max-width: 75rem;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.20) 45%,
            rgba(0, 0, 0, 0.10) 100%);
    z-index: 1;
}

.contenido-inicio h1 {
    /*font-family: var(--fuente-principal);*/
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--color-texto-secundario2);
    margin-bottom: 22px;
    text-transform: uppercase;
    text-shadow: 0 3px 12px var(--color-sombra);
}

.linea-separadora {
    width: 45rem;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.95);
    margin: 18px 0 22px 0;
}

.contenido-inicio p {
    max-width: 40rem;
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--color-texto-secundario2);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.botones-inicio {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: var(--radio-boton);
    font-size: 1.1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-claro {
    background: var(--color-amarillo);
    color: var(--color-negro);
}

.btn-claro:hover {
    background: var(--color-amarillo-hover);
    transform: translateY(-2px);
}

.btn-oscuro {
    background: var(--color-verde-hover);
    color: var(--color-blanco);
    font-family: Arial, Helvetica, sans-serif;
}

.btn-oscuro:hover {
    background-color: rgba(34, 95, 66, 0.92);
    transform: translateY(-2px);
}


/*Seccion para cuadro de inversiones*/
.seccion-inversion {
    background: var(--color-verde);
    padding: 6rem 3rem;
}

.contenedor-inversion {
    width: 75rem;
    margin: 0 auto;
}

.encabezado-inversion {
    text-align: center;
    margin-bottom: 4.5rem;
}

.encabezado-inversion h2 {
    /*font-family: Georgia, "Times New Roman", serif;*/
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 600;
    color: var(--color-blanco);
    margin-bottom: 1.8rem;
}

.inverAma {
    color: var(--color-amarillo);
}

.encabezado-inversion p {
    max-width: 50rem;
    margin: 0 auto 2rem;
    /*font-family: Georgia, "Times New Roman", serif;*/
    font-size: 1.25rem;
    line-height: 1.45;
    color: var(--color-texto-secundario2);
}

.btn-inversion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.8rem;
    background: var(--color-amarillo);
    color: var(--color-negro);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-inversion:hover {
    background: var(--color-amarillo-hover);
    transform: translateY(-2px);
}

.beneficios-inversion {
    width: 75rem;
    margin: 0 auto;
    margin-left: 2rem;
}

.fila-beneficios {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0rem;
}

.item-beneficio {
    width: 31%;
}

.item-beneficio h3 {
    /*font-family: Georgia, "Times New Roman", serif;*/
    font-size: 2.9rem;
    line-height: 1.1;
    font-weight: 500;
    color: var(--color-amarillo);
    margin-bottom: 0.8rem;
}

.item-beneficio span {
    display: block;
    /*font-family: Georgia, "Times New Roman", serif;*/
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-texto-secundario2);
    text-transform: uppercase;
}

.linea-inversion {
    width: 100%;
    height: 3px;
    background: var(--color-texto-secundario2);
    margin: 2.8rem 0 2.6rem;
}

/*Seccion para masterplan*/
.seccion-masterplan {
    position: relative;
    padding: 6rem 3rem;
    background: var(--color-texto-secundario2);
    overflow: hidden;
}

.overlay-masterplan {
    position: absolute;
    inset: 0;
    /*background: rgba(37, 52, 31, 0.68);*/
    z-index: 1;
    margin: 0rem;
}

.desPC {
    display: none;
}

.contenedor-masterplan {
    width: 75rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contenido-masterplan {
    width: 100%;
    color: var(--color-blanco);
    text-align: center;
}

.contenido-masterplan h2 {
    /*font-family: Georgia, "Times New Roman", serif;*/
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 600;
    color: var(--color-negro);
    margin-bottom: 1.2rem;
}

.linea-masterplan {
    width: 100%;
    height: 3px;
    background: transparent;
    margin-bottom: 1.2rem;
}

.contenido-masterplan p {
    max-width: 30rem;
    margin: 0 auto;
    /*font-family: Georgia, "Times New Roman", serif;*/
    font-size: 1.2rem;
    line-height: 1.35;
    color: var(--color-negro);
    margin-bottom: 2.8rem;
}

.imagen-masterplan {
    width: 50rem;
    margin: 0 auto 3rem;
    overflow: hidden;
    border-radius: 0.5rem;
    justify-content: center;
}

.imagen-masterplan img {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.35s ease;
}

.imagen-masterplan img:hover {
    transform: scale(1.02);
}

/* Visor grande */
.visor-masterplan {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

.visor-masterplan.activo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.visor-masterplan img {
    max-width: 92vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 0.4rem;
    background: var(--color-texto-secundario2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
    transform: translate(0px, 0px) scale(1);
    transform-origin: center center;
    transition: transform 0.12s ease;
    cursor: zoom-in;
    user-select: none;
    -webkit-user-drag: none;
}

.visor-masterplan img.zoom-activo {
    cursor: move;
}

.btn-masterplan {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 270px;
    height: 56px;
    margin: 0 auto;
    background: var(--color-texto-claro);
    color: var(--color-negro);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-masterplan:hover {
    background: var(--color-texto-claro2);
    transform: translateY(-2px);
}

.dropdown-planos {
    display: none;
}

/*Seccion para amenidades*/
.seccion-aminidades {
    background: var(--color-verde);
    padding: 6rem 3rem;
}

.contenedor-aminidades {
    width: 75rem;
    margin: 0 auto;
}

.encabezado-aminidades {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2.6rem;
}

.titulo-aminidades h2 {
    /*font-family: Arial, Helvetica, sans-serif;*/
    font-size: 3rem;
    line-height: 1.02;
    font-weight: 600;
    color: var(--color-texto-secundario2);
    text-transform: uppercase;
}

.titulo-aminidades h2 span {
    color: var(--color-amarillo);
}

.texto-aminidades {
    max-width: 420px;
    padding-top: 0.3rem;
}

.texto-aminidades p {
    font-size: 1.12rem;
    line-height: 1.4;
    color: var(--color-blanco);
}

.tabs-aminidades {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.tab-aminidad {
    width: 100%;
    border: none;
    background: var(--color-verde-hover);
    color: var(--color-blanco);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.4755rem 0.95rem;
    cursor: pointer;
    transition: all 0.28s ease;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    text-transform: uppercase;
    position: relative;
    transform: translateY(10px);
}

.tab-aminidad:hover {
    background: #3b815c;
}

.tab-aminidad.activa {
    background: #5b9875;
    transform: translateY(0);
    padding-top: 1.15rem;
    padding-bottom: 1.1rem;
}

.visor-aminidades {
    width: 100%;
    height: 610px;
    overflow: hidden;
    border-radius: 0 14px 14px 14px;
    position: relative;
    background: #0d1b12;
}

.visor-aminidades img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: opacity 0.35s ease, transform 0.5s ease;
}

.visor-aminidades.cambiando img {
    opacity: 0.25;
    transform: scale(1.02);
}

.dropdown-aminidades {
    display: none;
}

/*Seccion para planos*/
.seccion-planos {
    background: var(--color-verde);
    padding: 6rem 3rem;
    padding-bottom: 0rem;
}

.contenedor-planos {
    width: 75rem;
    margin: 0 auto;
}

.encabezado-planos {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.encabezado-planos h2 {
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 600;
    color: var(--color-texto-secundario2);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.encabezado-planos h2 span {
    color: var(--color-amarillo);
}

.encabezado-planos p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.45;
    color: var(--color-texto-secundario2);
}

.panel-planos {
    background: var(--color-texto-secundario2);
    padding: 5rem 1.8rem 2.2rem;
    padding-bottom: 5rem;
    border-radius: 0;
}

.select-planos-movil {
    display: none;
}

.tabs-planos {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

#planoTitulo {
    white-space: pre-line;
}

.tab-plano {
    border: none;
    background: var(--color-verde-hover);
    color: var(--color-texto-secundario2);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.tab-plano i {
    font-size: 0.78rem;
    font-weight: 600;
    padding-left: 0.5rem;
}

.tab-plano:hover {
    background: #427d69;
}

.tab-plano.activa {
    background: #5b9875;
}

.linea-planos {
    width: 100%;
    height: 2px;
    background: #4c554d;
    margin-bottom: 1.4rem;
}

.contenido-planos {
    display: grid;
    grid-template-columns: 280px 1fr 190px;
    gap: 2rem;
    align-items: start;
}

.info-planos h3 {
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--color-negro);
    margin-bottom: 1.5rem;
}

.lista-planos {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lista-planos li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.lista-planos li img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.lista-planos li span {
    font-size: 1rem;
    line-height: 1.15;
    color: var(--color-negro);
}

.plano-central {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.plano-central img {
    width: 100%;
    max-width: 430px;
    display: block;
    object-fit: contain;
}

.galeria-planos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.thumb-plano {
    width: 100%;
    text-align: center;
}

.thumb-plano img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    margin-bottom: 0.45rem;
}

.thumb-plano span {
    display: block;
    font-size: 0.72rem;
    color: #4b4b4b;
    border-top: 1px solid #7b857c;
    padding-top: 0.35rem;
}

.btn-cotizar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: #356b5a;
    color: var(--color-blanco);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-cotizar:hover {
    background: #427d69;
    transform: translateY(-2px);
}

/*Seccion para ubicacion*/
.seccion-ubicacion {
    background: var(--color-verde);
    padding: 6rem 0 3rem;
    margin-bottom: 0rem;
    padding-bottom: 0rem;
}

.contenedor-ubicacion {
    width: 75rem;
    margin: 0 auto;
}

.encabezado-ubicacion {
    text-align: center;
    margin-bottom: 2.5rem;
}

.encabezado-ubicacion h2 {
    /*font-family: Georgia, "Times New Roman", serif;*/
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 600;
    color: var(--color-texto-secundario2);
    margin-bottom: 1.2rem;
}

.linea-ubicacion {
    width: 100%;
    height: 3px;
    background: transparent;
    margin: 0 auto 1.2rem;
}

.encabezado-ubicacion p {
    max-width: 750px;
    margin: 0 auto;
    /*font-family: Georgia, "Times New Roman", serif;*/
    font-size: 1.18rem;
    line-height: 1.35;
    color: var(--color-texto-secundario2);
}

.imagen-ubicacion {
    width: 100%;
    overflow: hidden;
}

.imagen-ubicacion img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/*Seccion para udai*/
.seccion-udai {
    background: var(--color-verde);
    padding: 9rem 3rem;
}

.contenedor-udai {
    width: 75rem;
    margin: 0 auto;
}

.seccion-udai h2 {
    /*font-family: Arial, Helvetica, sans-serif;*/
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 600;
    text-align: center;
    color: var(--color-texto-secundario2);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.card-udai {
    position: relative;
    width: 100%;
    min-height: 520px;
    border-radius: 26px;
    overflow: hidden;
    background: url("rancho/diseñado_udai.png") center/cover no-repeat;
}

.overlay-udai {
    position: absolute;
    inset: 0;
}

.contenido-udai {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    text-align: center;
}


/*Seccion para contactanos*/
.seccion-contacto {
    position: relative;
    background: url("rancho/cocina_form.webp") 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: var(--color-fondo-menu);
    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;
    font-family: Arial, Helvetica, sans-serif;
}

.subtitulo {
    font-size: 0.97rem;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 2.2rem;
    color: var(--color-blanco);
    text-align: left;
}

.formulario {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
}

.fila {
    display: flex;
    gap: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}

.campo {
    flex: 1;
    margin-bottom: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}

.campo label {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
    font-family: Arial, Helvetica, sans-serif;
}

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;
    font-family: Arial, Helvetica, sans-serif;
    resize: none;
}

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;
}

textarea {
    padding: 1.4rem 0.7rem;
}

.btn-contacto-form {
    width: 19rem;
    display: flex;
    margin: auto;
    justify-content: center;
    margin-top: 1rem;
    background: var(--color-amarillo);
    color: var(--color-negro);
    border: 2px solid var(--color-amarillo);
    font-size: 1.55rem;
    font-family: Arial, Helvetica, sans-serif;
    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);
}

/*Seccion para Footer*/
.seccion-footer {
    background: var(--color-verde);
    padding: 6rem 0 3rem;
    color: var(--color-texto-secundario2);
}

.contenedor-footer {
    width: 75rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.columna-footer-principal {
    width: 40rem;
}

.logo-footer {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.logo-footer img {
    width: 12rem;
    display: block;
}

.redes-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.redes-footer a {
    color: var(--color-texto-secundario2);
    font-size: 2rem;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.redes-footer a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.columna-footer-principal h2 {
    /*font-family: Georgia, "Times New Roman", serif;*/
    font-size: 2.5rem;
    line-height: 1.08;
    font-weight: 600;
    color: var(--color-texto-secundario2);
    margin-bottom: 2rem;
}

.btn-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--color-verde);
    color: var(--color-blanco);
    border: 2px solid var(--color-blanco);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-footer i {
    font-size: 1.4rem;
}

.btn-footer:hover {
    background: var(--color-blanco);
    color: var(--color-verde);
    transform: translateY(-2px);
}

.columnas-grid {
    width: 35rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.columna-footer {
    min-width: 300px;
}

.columna-footer h3 {
    /*font-family: Georgia, "Times New Roman", serif;*/
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-texto-secundario2);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.titulo-secundario-footer {
    margin-top: 1.8rem;
}

.columna-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.columna-footer ul li {
    margin-bottom: 0.9rem;
}

.columna-footer ul li a {
    text-decoration: none;
    color: var(--color-texto-secundario2);
    font-size: 1rem;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.columna-footer ul li a:hover {
    opacity: 0.75;
    color: var(--color-blanco);
}

.footer-inferior {
    text-align: center;
    margin-top: 3.5rem;
    color: var(--color-texto-secundario2);
}

.footer-inferior p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-inferior a {
    color: var(--color-texto-secundario2);
    font-size: 0.85rem;
    text-decoration: underline;
}

.footer-inferior a:hover {
    opacity: 0.8;
    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) {

    html {
        scroll-padding-top: 76px;
    }

    .container,
    .container-detalles,
    .contenedor-inversion,
    .contenedor-masterplan,
    .contenedor-pasos,
    .contenedor-ubicacion,
    .contenedor-udai,
    .contenedor-footer {
        width: 92%;
        max-width: 92%;
    }


    /* HEADER */
    .container {
        width: 92%;
        max-width: 100%;
    }

    .header {
        top: 1.1rem;
    }

    .nav {
        min-height: 76px;
        gap: 1rem;
        padding: 0 1.1rem;
        border-radius: 10px;
    }

    .header.header-scrolled {
        top: 0;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        height: 2.6rem;
    }

    .nav-links {
        gap: 1.1rem;
        justify-content: center;
        min-width: 0;
    }

    .nav-links a {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .btn-contacto0 {
        flex-shrink: 0;
        padding: 0.8rem 1.05rem;
        font-size: 0.88rem;
        white-space: nowrap;
    }

    /* SECCION INICIO */
    .seccion-inicio {
        padding: 7rem 0 5rem;
        min-height: 85vh;
    }

    .contenido-inicio {
        padding-top: 2rem;
        max-width: 52rem;
    }

    .contenido-inicio h1 {
        font-size: 2.9rem;
        line-height: 1.08;
        max-width: 48rem;
    }

    .linea-separadora {
        width: 32rem;
    }

    .contenido-inicio p {
        max-width: 34rem;
        font-size: 1rem;
        line-height: 1.45;
    }

    .btn {
        padding: 0.95rem 1.3rem;
        font-size: 1rem;
    }

    /* SECCION DETALLES */


    /* SECCION INVERSION */
    .seccion-inversion {
        padding: 5rem 2rem;
    }

    .encabezado-inversion {
        margin-bottom: 3.5rem;
    }

    .encabezado-inversion h2 {
        font-size: 3rem;
    }

    .encabezado-inversion p {
        max-width: 42rem;
        font-size: 1.1rem;
    }

    .btn-inversion {
        font-size: 1rem;
        padding: 0.95rem 1.5rem;
    }

    .beneficios-inversion {
        width: 100%;
        margin: 0 auto;
    }

    .fila-beneficios {
        gap: 1.5rem;
    }

    .item-beneficio {
        width: 100%;
        flex: 1;
    }

    .item-beneficio h3 {
        font-size: 2.3rem;
    }

    .item-beneficio span {
        font-size: 0.98rem;
    }

    .linea-inversion {
        margin: 2.2rem 0;
    }

    /* SECCION MASTERPLAN */
    .seccion-masterplan {
        padding: 5rem 2rem;
    }

    .contenido-masterplan h2 {
        font-size: 2.8rem;
        max-width: 44rem;
    }

    .contenido-masterplan p {
        max-width: 100%;
        font-size: 1.08rem;
    }

    .imagen-masterplan {
        width: 100%;
        max-width: 33rem;
    }

    .imagen-masterplan img {
        cursor: default;
    }

    .imagen-masterplan img:hover {
        transform: none;
    }

    .btn-masterplan {
        width: 250px;
        height: 54px;
        font-size: 1rem;
    }

    .dropdown-planos {
        display: none;
    }

    /*Seccion aminidades*/
    .seccion-aminidades {
        padding: 5rem 2rem;
    }

    .contenedor-aminidades {
        width: 100%;
        max-width: 950px;
    }

    .encabezado-aminidades {
        gap: 2rem;
        margin-bottom: 2rem;
        align-items: flex-start;
    }

    .titulo-aminidades {
        flex: 1 1 auto;
    }

    .titulo-aminidades h2 {
        font-size: 2.35rem;
        line-height: 1.02;
    }

    .texto-aminidades {
        max-width: 340px;
        padding-top: 0.2rem;
        flex: 0 0 340px;
    }

    .texto-aminidades p {
        font-size: 0.98rem;
        line-height: 1.35;
    }

    .tabs-aminidades {
        width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        white-space: nowrap;
    }

    .tabs-aminidades::-webkit-scrollbar {
        display: none;
    }

    .tab-aminidad {
        flex: 1 0 auto;
        width: auto;
        font-size: 0.8rem;
        padding: 0.85rem 1rem 0.8rem;
        transform: translateY(8px);
    }

    .tab-aminidad.activa {
        padding-top: 1rem;
        padding-bottom: 0.95rem;
        transform: translateY(0);
    }

    .visor-aminidades {
        height: 500px;
        border-radius: 0 0px 12px 12px;
    }

    /* SECCION Planos */
    .seccion-planos {
        padding: 5rem 2rem 0;
    }

    .contenedor-planos {
        width: 100%;
        max-width: 950px;
    }

    .encabezado-planos {
        max-width: 800px;
        margin: 0 auto 2.5rem;
    }

    .encabezado-planos h2 {
        font-size: 2.5rem;
    }

    .encabezado-planos p {
        max-width: 680px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .panel-planos {
        padding: 1.8rem 1.4rem 2rem;
    }

    .tabs-planos {
        justify-content: center;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .tab-plano {
        font-size: 0.72rem;
        padding: 0.7rem 1.2rem;
        text-align: center;
    }

    .tab-plano i {
        padding-left: 1rem;
        font-size: 0.72rem;
    }

    .linea-planos {
        margin-bottom: 1.2rem;
    }

    .contenido-planos {
        grid-template-columns: 230px 1fr 160px;
        gap: 1.3rem;
        align-items: start;
    }

    .info-planos h3 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .lista-planos {
        gap: 0.85rem;
    }

    .lista-planos li {
        gap: 0.7rem;
    }

    .lista-planos li img {
        width: 24px;
        height: 24px;
    }

    .lista-planos li span {
        font-size: 0.9rem;
        line-height: 1.15;
    }

    .plano-central img {
        max-width: 100%;
        width: 100%;
    }

    .galeria-planos {
        gap: 0.9rem;
    }

    .thumb-plano img {
        height: 95px;
        border-radius: 14px;
    }

    .thumb-plano span {
        font-size: 0.68rem;
        padding-top: 0.3rem;
    }

    .btn-cotizar {
        min-width: 110px;
        padding: 0.75rem 0.9rem;
        font-size: 0.9rem;
    }

    /* SECCION UBICACION */
    .seccion-ubicacion {
        padding: 5rem 0 2rem;
    }

    .encabezado-ubicacion h2 {
        font-size: 2.7rem;
    }

    .encabezado-ubicacion p {
        max-width: 44rem;
        font-size: 1.05rem;
    }

    /* SECCION UDAI */
    .seccion-udai {
        padding: 4rem 2rem 4.5rem;
    }

    .contenedor-udai {
        width: 92%;
        max-width: 92%;
    }

    .seccion-udai h2 {
        font-size: 2.7rem;
        line-height: 1.05;
        margin-bottom: 2.1rem;
    }

    .card-udai {
        min-height: 430px;
        border-radius: 22px;
    }

    .contenido-udai {
        min-height: 430px;
        padding: 2.5rem 2rem;
    }

    .contenido-udai img {
        width: 240px;
        margin-bottom: 1.2rem;
    }

    .contenido-udai p {
        max-width: 560px;
        font-size: 1.15rem;
        line-height: 1.32;
    }

    /* SECCION CONTACTO */
    .seccion-contacto {
        padding: 5rem 2rem;
    }

    .contenedor-contacto {
        max-width: 46rem;
        padding: 2.8rem 2.4rem 2.5rem;
    }

    .contenedor-contacto h2 {
        font-size: 2.2rem;
    }

    .subtitulo {
        font-size: 0.95rem;
    }

    .fila {
        gap: 0.8rem;
    }

    .btn-contacto-form {
        width: 17rem;
        font-size: 1.25rem;
    }

    /* FOOTER */
    .seccion-footer {
        padding: 5rem 0 2.5rem;
    }

    .contenedor-footer {
        gap: 2.5rem;
        align-items: flex-start;
    }

    .columna-footer-principal {
        width: 45%;
    }

    .logo-footer img {
        width: 10.5rem;
    }

    .redes-footer a {
        font-size: 1.8rem;
    }

    .columna-footer-principal h2 {
        font-size: 2.1rem;
    }

    .columnas-grid {
        width: 50%;
        gap: 1.5rem 1rem;
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }

    .columna-footer {
        min-width: auto;
    }

    .columna-footer h3 {
        font-size: 0.95rem;
    }

    .columna-footer ul li a {
        font-size: 0.95rem;
    }

    .footer-inferior {
        margin-top: 3rem;
    }
}

/* =======================
   RESPONSIVE MÓVILES
   ======================= */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 72px;
    }

    body {
        overflow-x: hidden;
    }

    .container,
    .container-detalles,
    .contenedor-inversion,
    .contenedor-masterplan,
    .contenedor-pasos,
    .contenedor-ubicacion,
    .contenedor-udai,
    .contenedor-footer {
        width: calc(100% - 2rem);
        max-width: 100%;
    }

    /* HEADER */
    .container {
        width: calc(100% - 1.4rem);
        max-width: 100%;
    }

    .header {
        top: 0.8rem;
    }

    .header.header-scrolled {
        top: 0;
    }

    .nav {
        min-height: 68px;
        gap: 0.8rem;
        padding: 0 0.9rem;
        border-radius: 10px;
        position: relative;
        z-index: 1002;
    }

    .header.header-scrolled .nav {
        border-radius: 0;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        height: 2.2rem;
    }

    .btn-contacto0 {
        display: none;
    }

    .btn-hamburguesa {
        display: block;
        width: 2.8rem;
        height: 2.8rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        position: relative;
        z-index: 1003;
    }

    .btn-hamburguesa span {
        display: block;
        width: 1.9rem;
        height: 2.5px;
        background: var(--color-blanco);
        margin: 0.34rem auto;
        transition: transform 0.3s ease, opacity 0.25s ease;
        transform-origin: center;
    }

    .btn-hamburguesa.activo span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .btn-hamburguesa.activo span:nth-child(2) {
        opacity: 0;
    }

    .btn-hamburguesa.activo span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        flex: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.35rem;
        padding: 2rem 1.5rem;
        list-style: none;
        background:
            linear-gradient(180deg,
                rgba(8, 8, 8, 0.82) 0%,
                rgba(18, 18, 18, 0.70) 38%,
                rgba(28, 28, 28, 0.88) 100%);
        backdrop-filter: blur(22px) saturate(110%);
        -webkit-backdrop-filter: blur(22px) saturate(110%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        z-index: 1000;
        overflow: hidden;
    }

    .nav-links::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at top center,
                rgba(255, 255, 255, 0.05) 0%,
                rgba(255, 255, 255, 0) 28%),
            linear-gradient(180deg,
                rgba(0, 0, 0, 0.20) 0%,
                rgba(0, 0, 0, 0.34) 45%,
                rgba(0, 0, 0, 0.58) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .nav-links li {
        position: relative;
        z-index: 1;
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .nav-links.menu-activo {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links.menu-activo::before {
        opacity: 1;
    }

    .nav-links.menu-activo li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.menu-activo li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .nav-links.menu-activo li:nth-child(2) {
        transition-delay: 0.10s;
    }

    .nav-links.menu-activo li:nth-child(3) {
        transition-delay: 0.15s;
    }

    .nav-links.menu-activo li:nth-child(4) {
        transition-delay: 0.20s;
    }

    .nav-links.menu-activo li:nth-child(5) {
        transition-delay: 0.25s;
    }

    .nav-links.menu-activo li:nth-child(6) {
        transition-delay: 0.30s;
    }

    .nav-links a {
        position: relative;
        z-index: 1;
        display: block;
        width: auto;
        text-decoration: none;
        color: var(--color-blanco);
        font-size: 1.15rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        padding: 0.35rem 0;
        text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-links a:hover {
        opacity: 0.82;
        transform: translateY(-1px);
    }

    /* INICIO */
    .seccion-inicio {
        min-height: 100vh;
        padding: 6.2rem 0 2.4rem;
        align-items: flex-start;
        background-position: center center;
        background-size: cover;
    }

    .overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.34) 0%,
                rgba(0, 0, 0, 0.18) 34%,
                rgba(0, 0, 0, 0.58) 100%);
    }

    .contenido-inicio {
        width: 100%;
        max-width: 90%;
        padding-top: 1.4rem;
    }

    .contenido-inicio h1 {
        font-size: 1.95rem;
        line-height: 1.08;
        margin-bottom: 0.65rem;
        max-width: 19rem;
    }

    .linea-separadora {
        width: 11.7rem;
        height: 2px;
        margin: 0.55rem 0 0.8rem 0;
    }

    .contenido-inicio p {
        max-width: 20.5rem;
        font-size: 0.92rem;
        line-height: 1.28;
        margin-bottom: 1.25rem;
    }

    .botones-inicio {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .btn {
        min-width: 10.6rem;
        padding: 0.8rem 1rem;
        font-size: 0.96rem;
        text-align: center;
    }

    .desaparecer {
        display: none;
    }

    /* DETALLES */


    /* INVERSION */
    .seccion-inversion {
        padding: 3.8rem 0;
    }

    .encabezado-inversion {
        margin-bottom: 2.4rem;
    }

    .encabezado-inversion h2 {
        font-size: 2.35rem;
        line-height: 1.04;
        margin-bottom: 1rem;
    }

    .encabezado-inversion p {
        max-width: 19rem;
        font-size: 1rem;
        line-height: 1.15;
        margin-bottom: 1.3rem;
    }

    .encabezado-inversion p br {
        display: none;
    }

    .btn-inversion {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 999px;
    }

    .beneficios-inversion {
        width: 100%;
        margin: 0 auto;
    }

    .fila-beneficios {
        flex-direction: column;
        align-items: center;
        gap: 1.7rem;
    }

    .item-beneficio {
        width: 100%;
        text-align: center;
    }

    .item-beneficio h3 {
        font-size: 2.15rem;
        margin-bottom: 0.35rem;
    }

    .item-beneficio span {
        font-size: 0.95rem;
        line-height: 1.05;
    }

    .linea-inversion {
        height: 2px;
        margin: 1.9rem 0;
    }

    /* MASTERPLAN */
    .seccion-masterplan {
        padding: 3.3rem 0 3.5rem;
    }

    .contenido-masterplan {
        text-align: center;
    }

    .desPC {
        display: inline;
    }

    .contenido-masterplan h2 {
        font-size: 2rem;
        line-height: 1.02;
        max-width: 100%;
        margin-bottom: 0.8rem;
    }

    .linea-masterplan {
        height: 2px;
        margin-bottom: 0.9rem;
    }

    .contenido-masterplan p {
        max-width: 100%;
        font-size: 0.98rem;
        line-height: 1.08;
        margin-bottom: 1.6rem;
    }

    .imagen-masterplan {
        width: 100%;
        max-width: 25rem;
        margin: 0 auto 1.8rem;
    }

    .btn-masterplan {
        width: 190px;
        height: 42px;
        font-size: 0.92rem;
        border-radius: 999px;
    }

    /*Seccion aminidades*/
    .seccion-aminidades {
        padding: 3.5rem 1rem;
    }

    .contenedor-aminidades {
        width: 100%;
    }

    .encabezado-aminidades {
        flex-direction: column;
        align-items: center;
        gap: 1.4rem;
        margin-bottom: 1.6rem;
        text-align: center;
    }

    .titulo-aminidades {
        width: 100%;
    }

    .titulo-aminidades h2 {
        font-size: 2.1rem;
        line-height: 1.02;
    }

    .texto-aminidades {
        max-width: 320px;
        width: 100%;
        padding-top: 0;
    }

    .texto-aminidades p {
        font-size: 0.98rem;
        line-height: 1.35;
        color: var(--color-blanco);
    }

    .tabs-aminidades {
        display: none;
    }

    .dropdown-aminidades {
        display: block;
        width: 100%;
        margin-bottom: 0.7rem;
        position: relative;
        z-index: 5;
    }

    .dropdown-aminidades-btn {
        width: 100%;
        border: none;
        background: #2e6b58;
        color: var(--color-blanco);
        padding: 0.8rem 1rem;
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.95rem;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
    }

    .dropdown-aminidades-btn i {
        font-size: 1rem;
        transition: transform 0.25s ease;
    }

    .dropdown-aminidades.abierto .dropdown-aminidades-btn i {
        transform: rotate(180deg);
    }

    .dropdown-aminidades-menu {
        display: none;
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 0;
        width: 100%;
        background: #173628;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    }

    .dropdown-aminidades.abierto .dropdown-aminidades-menu {
        display: block;
    }

    .dropdown-aminidad-opcion {
        width: 100%;
        border: none;
        background: transparent;
        color: var(--color-blanco);
        text-align: left;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .dropdown-aminidad-opcion:last-child {
        border-bottom: none;
    }

    .dropdown-aminidad-opcion.activa {
        background: #2e6b58;
    }

    .visor-aminidades {
        height: 365px;
        border-radius: 7px;
        overflow: hidden;
    }

    .visor-aminidades img {
        object-fit: cover;
        transition: none;
        opacity: 1 !important;
        transform: none !important;
    }

    .visor-aminidades.cambiando img {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Planos */
    .seccion-planos {
        padding: 3.5rem 1rem 0;
    }

    .contenedor-planos {
        width: calc(100% - 1.2rem);
        max-width: 100%;
    }

    .encabezado-planos {
        max-width: 100%;
        margin-bottom: 1.8rem;
    }

    .encabezado-planos h2 {
        font-size: 2rem;
        line-height: 1.03;
        margin-bottom: 0.9rem;
    }

    .encabezado-planos p {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.32;
    }

    .panel-planos {
        padding: 1.2rem 1rem 1.4rem;
        border-radius: 16px;
    }

    .tabs-planos {
        display: none;
    }

    .dropdown-planos {
        display: block;
        width: 100%;
        margin-bottom: 0.7rem;
        position: relative;
        z-index: 5;
    }

    .dropdown-planos-btn {
        width: 100%;
        border: none;
        background: #2e6b58;
        color: var(--color-blanco);
        padding: 0.8rem 1rem;
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.95rem;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
    }

    .dropdown-planos-btn i {
        font-size: 1rem;
        transition: transform 0.25s ease;
    }

    .dropdown-planos.abierto .dropdown-planos-btn i {
        transform: rotate(180deg);
    }

    .dropdown-planos-menu {
        display: none;
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 0;
        width: 100%;
        background: #173628;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    }

    .dropdown-planos.abierto .dropdown-planos-menu {
        display: block;
    }

    .dropdown-plano-opcion {
        width: 100%;
        border: none;
        background: transparent;
        color: var(--color-blanco);
        text-align: left;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .dropdown-plano-opcion:last-child {
        border-bottom: none;
    }

    .dropdown-plano-opcion.activa {
        background: #2e6b58;
    }


    .linea-planos {
        margin-bottom: 1rem;
    }

    .linea-planos {
        margin-bottom: 1rem;
    }

    .contenido-planos {
        display: flex;
        flex-direction: column;
        gap: 1.3rem;
    }

    .info-planos {
        order: 1;
    }

    .info-planos h3 {
        font-size: 1.45rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .lista-planos {
        gap: 0.75rem;
    }

    .lista-planos li {
        gap: 0.65rem;
    }

    .lista-planos li img {
        width: 22px;
        height: 22px;
    }

    .lista-planos li span {
        font-size: 0.9rem;
        line-height: 1.1;
    }

    .plano-central {
        order: 2;
    }

    .plano-central img {
        width: 100%;
        max-width: 290px;
    }

    .galeria-planos {
        order: 3;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .thumb-plano {
        width: calc(50% - 0.4rem);
        max-width: 150px;
    }

    .thumb-plano img {
        height: 90px;
        border-radius: 12px;
        margin-bottom: 0.35rem;
    }

    .thumb-plano span {
        font-size: 0.64rem;
        padding-top: 0.25rem;
    }

    .btn-cotizar {
        min-width: 120px;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    /* UBICACION */
    .seccion-ubicacion {
        padding: 3.4rem 0 0;
    }

    .contenedor-ubicacion {
        width: calc(100% - 0rem);
        max-width: 100%;
        margin: 0 auto;
    }

    .encabezado-ubicacion {
        margin: 2rem;
        margin-top: 0rem;
    }

    .encabezado-ubicacion h2 {
        font-size: 2rem;
        line-height: 1.02;
        margin-bottom: 0.75rem;
    }

    .linea-ubicacion {
        height: 2px;
        margin-bottom: 0.85rem;
    }

    .encabezado-ubicacion p {
        max-width: 100%;
        font-size: 0.98rem;
        line-height: 1.1;
    }

    .imagen-ubicacion {
        width: 100%;
    }

    .imagen-ubicacion img {
        width: 100%;
        display: block;
    }

    /* UDAI */
    .seccion-udai {
        padding: 3rem 0.8rem 3.4rem;
    }

    .contenedor-udai {
        width: calc(100% - 1rem);
    }

    .seccion-udai h2 {
        font-size: 1.75rem;
    }

    .card-udai {
        min-height: 235px;
        border-radius: 20px;
        background: url("rancho/diseñado_cel.png") center/cover no-repeat;
    }

    .contenido-udai {
        min-height: 235px;
        padding: 1.5rem 1rem;
    }

    .contenido-udai img {
        width: 135px;
    }

    .contenido-udai p {
        max-width: 260px;
        font-size: 0.88rem;
        line-height: 1.22;
    }

    /* CONTACTO */
    .seccion-contacto {
        padding: 3.8rem 1rem;
    }

    .contenedor-contacto {
        max-width: 100%;
        width: calc(100% - 2.2rem);
        padding: 2rem 1.2rem 1.5rem;
        border-radius: 22px;
    }

    .contenedor-contacto h2 {
        font-size: 2.1rem;
        margin-bottom: 1rem;
    }

    .subtitulo {
        font-size: 0.95rem;
        margin-bottom: 1.3rem;
        line-height: 1.1;
    }

    .fila {
        flex-direction: column;
        gap: 0;
    }

    .campo {
        margin-bottom: 0.8rem;
    }

    .campo label {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    input,
    select,
    textarea {
        padding: 0.8rem 0.7rem;
        font-size: 0.92rem;
        border-radius: 0.35rem;
    }

    textarea {
        padding: 1rem 0.7rem;
    }

    .btn-contacto-form {
        width: 100%;
        font-size: 1.15rem;
        padding: 0.75rem;
        margin-top: 0.7rem;
        border-radius: 0.45rem;
    }

    /* FOOTER */
    .seccion-footer {
        padding: 3rem 0 2rem;
    }

    .contenedor-footer {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .columna-footer-principal {
        width: 100%;
        order: 1;
        display: flex;
        flex-direction: column;
    }

    .logo-footer {
        order: 1;
    }

    .logo-footer img {
        width: 10.5rem;
    }

    .desvanece {
        display: none;
    }

    .columna-footer-principal h2 {
        font-size: 1.5rem;
        line-height: 1.02;
        margin-bottom: 1.2rem;
        max-width: 18rem;
        order: 2;
    }

    .btn-footer {
        margin-top: 0.25rem;
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
        order: 3;
        justify-content: center;
    }

    .columnas-grid {
        width: 100%;
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 1.3rem;
    }

    .columna-footer {
        min-width: auto;
    }

    .columna-footer h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .titulo-secundario-footer {
        margin-top: 0;
    }

    .columna-footer ul li {
        margin-bottom: 0.5rem;
    }

    .columna-footer ul li a {
        font-size: 1rem;
        line-height: 1.05;
    }

    .redes-footer {
        justify-content: center;
        margin-top: 1rem;
        margin-bottom: 1rem;
        order: 4;
    }

    .redes-footer a {
        font-size: 2.2rem;
    }

    .footer-inferior {
        margin-top: 1.6rem;
    }

    .footer-inferior p {
        font-size: 0.9rem;
        line-height: 1.15;
    }

    .footer-inferior a {
        font-size: 0.9rem;
    }
}