html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    line-height: 1.6;
    color: var(--color-negro);
    background: var(--color-blanco);
    -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: #000;
    --color-texto-claro: #daded8;
    --color-texto-claro2: #b4b4b4;
    --color-verde: #2c3424;
    --color-verde-hover: #4c583e;
    --color-fondo-menu: rgba(20, 20, 20, 0.30);
    --color-borde-suave: rgba(255, 255, 255, 0.12);
    --color-sombra: rgba(0, 0, 0, 0.28);
    --color-overlay: rgba(0, 0, 0, 0.38);
    --color-overlay-inferior: rgba(0, 0, 0, 0.55);
    --fuente-principal: Georgia, "Times New Roman", serif;
    --fuente-secundaria: Arial, Helvetica, sans-serif;
    --ancho-maximo: 1200px;
    --radio-boton: 7px;
}

/* CONTENEDOR */
.container {
    width: 1200px;
    margin: 0 auto;
}

/* HEADER Y NAV */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease;
}

.header.header-scrolled {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: var(--color-fondo-menu);
    border-bottom: 1px solid var(--color-borde-suave);
}

.nav {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    height: 3.6rem;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
    flex: 1;
    justify-content: flex-start;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-texto-claro);
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.75;
}

.btn-contacto0 {
    text-decoration: none;
    color: var(--color-blanco);
    background-color: var(--color-verde);
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--fuente-secundaria);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-contacto0:hover {
    background-color: var(--color-verde-hover);
    transform: translateY(-2px);
}

.btn-hamburguesa {
    display: none;
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.btn-hamburguesa span {
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--color-blanco);
    margin: 0.4rem auto;
    transition: transform 0.3s ease, opacity 0.25s ease;
    transform-origin: center;
}

.btn-hamburguesa.activo span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.btn-hamburguesa.activo span:nth-child(2) {
    opacity: 0;
}

.btn-hamburguesa.activo span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.header.menu-abierto {
    background: transparent !important;
    border-bottom: 1px solid transparent !important;
    backdrop-filter: blur(0) !important;
    -webkit-backdrop-filter: blur(0) !important;
}

/* SECCION INICIO */
.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("img/cima/cima.png");
    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: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--color-blanco);
    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-blanco);
    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-texto-claro);
    color: var(--color-verde);
}

.btn-claro:hover {
    background: var(--color-texto-claro2);
    transform: translateY(-2px);
}

.btn-oscuro {
    background: var(--color-verde);
    color: var(--color-blanco);
    font-family: Arial, Helvetica, sans-serif;
}

.btn-oscuro:hover {
    background-color: var(--color-verde-hover);
    transform: translateY(-2px);
}

/*Seccion para detalles*/
.seccion-detalles {
    background: var(--color-texto-claro);
    padding: 6rem 3rem;
}

.container-detalles {
    width: 75rem;
    margin: 0 auto;
}

.encabezado-detalles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.texto-detalles h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 600;
    color: var(--color-verde-hover);
    margin-bottom: 1.4rem;
    text-transform: uppercase;
}

.texto-detalles p {
    width: 690px;
    font-size: 1.15rem;
    line-height: 1.45;
    color: var(--color-verde-hover);
    /*font-family: Georgia, "Times New Roman", serif;*/
}

.btn-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 185px;
    height: 56px;
    padding: 0 1.6rem;
    background: var(--color-verde);
    color: var(--color-blanco);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.btn-info:hover {
    background: var(--color-verde-hover);
    transform: translateY(-2px);
}

.grid-detalles {
    display: flex;
    justify-content: space-between;
    gap: 1.8rem;
}

.card-detalle {
    width: 270px;
}

.imagen-detalle {
    width: 100%;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-blanco);
    margin-bottom: 1rem;
}

.imagen-detalle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-detalle h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-verde-hover);
    text-align: center;
}

.card-detalle h3::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-verde);
    margin: 0 auto 0.9rem auto;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    opacity: 0.7;
}

/*Seccion para cuadro de inversiones*/
.seccion-inversion {
    background: linear-gradient(90deg, #24331b 0%, #1f2b17 50%, #24331b 100%);
    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: 3.7rem;
    line-height: 1.05;
    font-weight: 550;
    color: var(--color-texto-claro);
    margin-bottom: 1.8rem;
}

.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-claro);
}

.btn-inversion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.8rem;
    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-inversion:hover {
    background: var(--color-texto-claro2);
    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-texto-claro);
    margin-bottom: 0.8rem;
}

.item-beneficio span {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    line-height: 1.25;
    color: var(--color-texto-claro);
    text-transform: uppercase;
}

.linea-inversion {
    width: 100%;
    height: 3px;
    background: var(--color-texto-claro);
    margin: 2.8rem 0 2.6rem;
}

/*Seccion para masterplan*/
.seccion-masterplan {
    position: relative;
    padding: 6rem 3rem;
    background-image: url("img/cima/fondoMapa.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    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);
}

.contenido-masterplan h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.35rem;
    line-height: 1.08;
    font-weight: 600;
    color: var(--color-blanco);
    margin-bottom: 1.2rem;
    max-width: 800px;
}

.linea-masterplan {
    width: 100%;
    height: 3px;
    background: rgba(239, 236, 225, 0.85);
    margin-bottom: 1.2rem;
}

.contenido-masterplan p {
    max-width: 60rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    line-height: 1.35;
    color: var(--color-blanco);
    margin-bottom: 2.8rem;
}

.imagen-masterplan {
    width: 57rem;
    margin: 0 auto 3rem;

    transform: rotate(55deg);
}

.imagen-masterplan img {
    width: 100%;
    display: block;
    object-fit: contain;
}

.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);
}


/*Seccion para pasos*/
.seccion-pasos {
    background: var(--color-texto-claro2);
    padding: 6rem 3rem;
}

.contenedor-pasos {
    width: 75rem;
    margin: 0 auto;
}

.slider-pasos {
    position: relative;
    width: 100%;
    height: 630px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--color-verde);
}

.carrusel-pasos {
    position: absolute;
    inset: 0;
}

.carrusel-pasos img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carrusel-pasos img.imagen-activa {
    opacity: 1;
}

.overlay-pasos {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.34);
    z-index: 2;
}

.contenido-pasos {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 4rem;
}

.puntos-pasos {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-left: 0.4rem;
}

.punto {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.95);
    transition: 0.3s ease;
}

.punto.activo {
    background: var(--color-verde-hover);
    transform: scale(1.08);
}

.texto-pasos {
    max-width: 630px;
    margin-left: 5rem;
}

.texto-pasos h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    line-height: 1.02;
    font-weight: 600;
    color: var(--color-blanco);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.linea-pasos {
    width: 100%;
    max-width: 580px;
    height: 3px;
    background: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.2rem;
}

.texto-pasos p {
    max-width: 480px;
    /*font-family: Georgia, "Times New Roman", serif;*/
    font-size: 1.18rem;
    line-height: 1.38;
    color: var(--color-blanco);
    margin-bottom: 1.6rem;
}

.btn-pasos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 56px;
    padding: 0 1.5rem;
    background: var(--color-texto-claro);
    color: var(--color-negro);
    text-decoration: none;
    border-radius: 9px;
    font-size: 1.1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-pasos:hover {
    background: var(--color-texto-claro2);
    transform: translateY(-2px);
}

/*Seccion para ubicacion*/
.seccion-ubicacion {
    background: var(--color-texto-claro);
    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: 3.25rem;
    line-height: 1.08;
    font-weight: 600;
    color: var(--color-verde);
    margin-bottom: 1.2rem;
}

.linea-ubicacion {
    width: 100%;
    height: 3px;
    background: var(--color-verde);
    margin: 0 auto 1.2rem;
}

.encabezado-ubicacion p {
    max-width: 980px;
    margin: 0 auto;
    /*font-family: Georgia, "Times New Roman", serif;*/
    font-size: 1.18rem;
    line-height: 1.35;
    color: var(--color-verde-hover);
}

.imagen-ubicacion {
    width: 100%;
    overflow: hidden;
}

.imagen-ubicacion img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/*Seccion para udai*/
.seccion-udai {
    position: relative;
    background-image: url("img/inicio.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 3rem;
    overflow: hidden;
}

.overlay-udai {
    position: absolute;
    inset: 0;
    background: rgba(72, 88, 63, 0.72);
    z-index: 1;
}

.contenedor-udai {
    width: 75rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contenido-udai {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    min-height: 270px;
}

.texto-udai h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    line-height: 1.06;
    font-weight: 600;
    color: var(--color-blanco);
    max-width: 560px;
}

.logo-udai {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 520px;
}

.logo-udai img {
    width: 100%;
    max-width: 500px;
    display: block;
    object-fit: contain;
}

/*Seccion para contactanos*/
.seccion-contacto {
    position: relative;
    background: url("img/cima/detalle4.png") center/cover no-repeat;
    padding: 6rem 2rem;
}

.overlay-contacto {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.contenedor-contacto {
    position: relative;
    max-width: 650px;
    margin: auto;
    padding: 52px 48px 48px;
    background: rgba(47, 60, 40, 0.62);
    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-texto-claro);
    color: var(--color-negro);
    border: 2px solid var(--color-texto-claro);
    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-texto-claro);
    border: 2px solid var(--color-texto-claro);
}

/*Seccion para Footer*/
.seccion-footer {
    background: var(--color-verde);
    padding: 6rem 0 3rem;
    color: var(--color-texto-claro);
}

.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-claro);
    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-claro);
    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-claro);
    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-claro);
    font-size: 1rem;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.columna-footer ul li a:hover {
    opacity: 0.75;
    color: var(--color-texto-claro2);
}

.footer-inferior {
    text-align: center;
    margin-top: 3.5rem;
    color: var(--color-texto-claro);
}

.footer-inferior p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.footer-inferior a {
    color: var(--color-texto-claro);
    font-size: 0.85rem;
    text-decoration: underline;
}

.footer-inferior a:hover {
    opacity: 0.8;
    color: var(--color-texto-claro2);
}


/* =======================
   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 */
    .nav {
        min-height: 76px;
        gap: 1.2rem;
    }

    .logo img {
        height: 3rem;
    }

    .nav-links {
        gap: 1.2rem;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .btn-contacto0 {
        padding: 0.75rem 1rem;
        font-size: 0.92rem;
    }

    /* 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-detalles {
        padding: 5rem 2rem;
    }

    .encabezado-detalles {
        align-items: flex-start;
        gap: 2rem;
    }

    .texto-detalles {
        flex: 1;
    }

    .texto-detalles h2 {
        font-size: 2.5rem;
        line-height: 1.06;
    }

    .texto-detalles p {
        width: 100%;
        max-width: 38rem;
        font-size: 1.05rem;
    }

    .btn-info {
        min-width: 170px;
        height: 52px;
        font-size: 1rem;
    }

    .grid-detalles {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .card-detalle {
        width: 100%;
    }

    .imagen-detalle {
        height: 260px;
    }

    .card-detalle h3 {
        font-size: 1.1rem;
    }

    /* 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;
    }

    .btn-masterplan {
        width: 250px;
        height: 54px;
        font-size: 1rem;
    }

    /* SECCION PASOS */
    .seccion-pasos {
        padding: 5rem 2rem;
    }

    .slider-pasos {
        height: 540px;
        border-radius: 18px;
    }

    .contenido-pasos {
        gap: 2rem;
        padding: 0 2.2rem;
    }

    .texto-pasos {
        max-width: 32rem;
        margin-left: 1.5rem;
    }

    .texto-pasos h2 {
        font-size: 3rem;
        line-height: 1.04;
    }

    .linea-pasos {
        max-width: 100%;
    }

    .texto-pasos p {
        max-width: 28rem;
        font-size: 1.05rem;
    }

    .btn-pasos {
        min-width: 170px;
        height: 52px;
        font-size: 1rem;
    }

    /* 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: 5rem 2rem;
    }

    .contenido-udai {
        gap: 2rem;
        min-height: 220px;
    }

    .texto-udai h2 {
        font-size: 2.6rem;
        max-width: 28rem;
    }

    .logo-udai {
        width: 360px;
    }

    .logo-udai img {
        max-width: 360px;
    }

    /* 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 */
    .header {
        width: 100%;
    }

    .nav {
        min-height: 72px;
        padding: 0.7rem 0;
        gap: 0.75rem;
        position: relative;
    }

    .logo img {
        height: 2.25rem;
    }

    .btn-contacto0 {
        display: none;
    }

    .btn-hamburguesa {
        display: block;
        width: 2.8rem;
        height: 2.8rem;
    }

    .btn-hamburguesa span {
        width: 1.8rem;
        height: 2.5px;
        margin: 0.34rem auto;
    }

    .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: rgba(14, 22, 34, 0.72);
        backdrop-filter: blur(22px) saturate(160%);
        -webkit-backdrop-filter: blur(22px) saturate(160%);

        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: rgba(0, 0, 0, 0.82);
        backdrop-filter: blur(30px) saturate(200%);
        -webkit-backdrop-filter: blur(30px) saturate(200%);
        opacity: 1;
        transition: opacity 0.4s ease;
    }

    .nav-links li {
        position: relative;
        z-index: 1;
        opacity: 0;
        transform: translateY(18px);
    }

    .nav-links.menu-activo {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity 0.35s ease, visibility 0s linear 0s;
    }

    .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.1s;
    }

    .nav-links.menu-activo li:nth-child(3) {
        transition-delay: 0.15s;
    }

    .nav-links.menu-activo li:nth-child(4) {
        transition-delay: 0.2s;
    }

    .nav-links.menu-activo li:nth-child(5) {
        transition-delay: 0.25s;
    }

    .nav-links.menu-activo li:nth-child(6) {
        transition-delay: 0.3s;
    }

    .nav-links a {
        display: block;
        width: auto;
        text-decoration: none;
        color: var(--color-blanco);
        font-size: 1.2rem;
        padding: 0.35rem 0;
        letter-spacing: 0.02em;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-links a:hover {
        opacity: 0.8;
        transform: translateY(-1px);
    }

    .nav {
        position: relative;
        z-index: 1002;
    }

    .btn-hamburguesa {
        position: relative;
        z-index: 1003;
    }

    /* 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 */
    .seccion-detalles {
        padding: 3.6rem 0 3.8rem;
    }

    .encabezado-detalles {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        margin-bottom: 2rem;
    }

    .texto-detalles h2 {
        font-size: 2rem;
        line-height: 1.05;
        margin-bottom: 1rem;
    }

    .texto-detalles p {
        width: 100%;
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.24;
    }

    .btn-info {
        min-width: 150px;
        height: 46px;
        padding: 0 1.25rem;
        font-size: 0.95rem;
        border-radius: 999px;
        align-self: flex-start;
    }

    .grid-detalles {
        display: flex;
        flex-direction: column;
        gap: 1.8rem;
    }

    .card-detalle {
        width: 100%;
        max-width: 270px;
        margin: 0 auto;
    }

    .imagen-detalle {
        height: 150px;
        border-radius: 18px;
    }

    .card-detalle h3 {
        font-size: 1.05rem;
    }

    .card-detalle h3::before {
        height: 2px;
        margin-top: 0.85rem;
        margin-bottom: 0.45rem;
    }

    /* 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: 16rem;
        margin: 0 auto 1.8rem;
    }

    .btn-masterplan {
        width: 190px;
        height: 42px;
        font-size: 0.92rem;
        border-radius: 999px;
    }

    /* PASOS */
    .seccion-pasos {
        padding: 3rem 0;
    }

    .slider-pasos {
        height: 360px;
        border-radius: 10px;
    }

    .contenido-pasos {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.9rem;
        padding: 1rem 1rem 0.8rem;
    }

    .texto-pasos {
        max-width: 100%;
        margin-left: 0;
        margin-top: 0.3rem;
    }

    .texto-pasos h2 {
        font-size: 1.9rem;
        line-height: 0.98;
        margin-bottom: 0.65rem;
    }

    .linea-pasos {
        max-width: 100%;
        height: 2px;
        margin-bottom: 0.7rem;
    }

    .texto-pasos p {
        max-width: 17rem;
        font-size: 0.94rem;
        line-height: 1.05;
        margin-bottom: 0.9rem;
    }

    .btn-pasos {
        min-width: 145px;
        height: 40px;
        padding: 0 1rem;
        font-size: 0.92rem;
        border-radius: 6px;
    }

    .puntos-pasos {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 0.55rem;
        margin-left: 0;
        margin-top: auto;
        padding-bottom: 0.15rem;
    }

    .punto {
        width: 10px;
        height: 10px;
    }

    /* 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: 1.6rem 0;
    }

    .contenido-udai {
        min-height: auto;
        gap: 1rem;
    }

    .texto-udai h2 {
        font-size: 1.15rem;
        line-height: 1.02;
        max-width: 11rem;
    }

    .logo-udai {
        width: 150px;
    }

    .logo-udai img {
        max-width: 150px;
    }

    /* 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;
    }
}