/* Media queries min-width 1025px movidas a desktop-corrections.css para mejor organización */
/* Mayor interlineado para el párrafo animado */
.quienes__paragraph[data-text-reveal] {
    line-height: 3.2;
    font-weight: 300;
}

/* === HERO IMAGE SECTION (entre Quienes Somos y Proyectos) === */
.hero-image-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #edede7;
    overflow: hidden;
    border: none;
    padding: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform;
    transform: translateY(0);
}

/* Responsive para tablets */
@media (max-width: 1024px) {
    .hero-image-container {
        height: 70vh;
        min-height: 500px;
        max-height: 700px;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .hero {
        min-height: 75vh;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .hero-image-container {
        height: 48vh;
        min-height: 220px;
        max-height: 340px;
    }
    .hero-image {
        height: 100%;
        min-height: 220px;
        max-height: 340px;
        object-fit: cover;
    }
    
        /* Ocultar imágenes de Quienes Somos en móvil */
        .quienes__grid {
            display: none;
        }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .hero-image-container {
        height: 50vh;
        min-height: 350px;
    }
}

.proyectos__text-wrapper {
    padding: 0;
    margin: 0;
}
/* === PROYECTOS === */
.proyectos {
    width: 100vw;
    background: #edede7;
    padding: 0;
    margin: 0;
}
.proyectos__container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}
.proyectos__title {
    /* Hereda de .quienes__title */
    margin-bottom: 3rem;
    text-align: left;
}
.proyecto__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    gap: 2.5rem;
}
.proyecto__img-wrapper {
    flex: 1 1 350px;
    min-width: 220px;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6e6e6;
    border-radius: 1rem;
    overflow: hidden;
}
.proyecto__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
}
.proyecto__info {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.2rem;
}
.proyecto__nombre {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.7rem;
}
.proyecto__btn {
    background: #3a6e4f;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 0.7rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
}
.proyecto__btn:hover {
    background: #28513a;
}
@media (max-width: 900px) {
    .proyecto__card {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.2rem 0.5rem;
    }
    .proyecto__img-wrapper {
        max-width: 98vw;
        min-width: 0;
    }
    .proyecto__img {
        border-radius: 0.7rem;
    }
    .proyecto__info {
        align-items: center;
        text-align: center;
    }
}

/* === PROVEEDORES === */
.proveedores {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #1a1a1a;
    padding: 8rem clamp(5rem, 8vw, 10rem);
    overflow: hidden;
}

.proveedores__bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.proveedores__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    transform: translateY(0);
}

.proveedores__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.proveedores::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(200, 190, 170, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(180, 170, 150, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.proveedores__container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.proveedores__content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
}

.proveedores__text-wrapper {
    padding-top: 0;
    width: 100%;
    text-align: left;
}

.proveedores__text-wrapper .quienes__title {
    color: #ffffff;
    font-size: clamp(3rem, 4vw, 3.5rem);
}

.proveedores__hr {
    border-top-color: #ffffff !important;
}

.proveedores__intro {
    margin-top: 2rem;
    max-width: 900px;
}

.proveedores__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.proveedores__description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    color: #ffffff;
    text-align: left;
}

.proveedores__form-wrapper {
    background: transparent;
    border-radius: 0;
    padding: 3.5rem;
    box-shadow: none;
    width: 100%;
    max-width: none;
    border: 2px solid #fff;
}

.proveedores__form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: left;
    letter-spacing: -0.02em;
}

.proveedores__form-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.proveedores__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem 2rem;
    margin-bottom: 3.5rem;
}

.proveedores__form-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.proveedores__form-group--full {
    grid-column: 1 / -1;
}

.proveedores__form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.proveedores__form-group input,
.proveedores__form-group textarea,
.proveedores__form-group select {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 2.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    transition: border-color 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.proveedores__form-group select {
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 24px;
    padding-right: 30px;
    height: auto;
    min-height: auto;
    line-height: normal;
    display: block;
}

.proveedores__form-group select option[value=""] {
    color: rgba(255, 255, 255, 0.7);
}

.proveedores__form-group select:invalid {
    color: rgba(255, 255, 255, 0.7);
}

.proveedores__form-group select:valid {
    color: #ffffff;
}

.proveedores__form-group select option {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}

.proveedores__form-group input:focus,
.proveedores__form-group textarea:focus,
.proveedores__form-group select:focus {
    outline: none;
    border-bottom: 2.5px solid #ffffff;
    background: transparent;
}

.proveedores__form-group input::placeholder,
.proveedores__form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.proveedores__form-group textarea {
    resize: vertical;
    min-height: 130px;
    height: 130px;
    max-height: 300px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.proveedores__form-submit {
    width: auto;
    background: transparent;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.8rem 2.5rem;
    border: 2px solid #ffffff;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.proveedores__form-submit:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: none;
}

.proveedores__form-submit:active {
    transform: none;
}

/* Eliminar fondo blanco de autocompletado en inputs (especialmente email) */
.proveedores__form-group input:-webkit-autofill,
.proveedores__form-group input:-webkit-autofill:focus,
.proveedores__form-group input:-webkit-autofill:hover,
.proveedores__form-group textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    background-color: transparent !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 9999s ease-in-out 0s;
}

/* Responsive */
@media (max-width: 1024px) {
    .proveedores {
        padding: 5rem 3rem;
    }
    
    .proveedores__content {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .proveedores {
        padding: 4rem 2rem;
    }
    
    .proveedores__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .proveedores__form-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .proveedores__subtitle {
        font-size: 1.5rem;
    }
    
    .proveedores__description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .proveedores {
        padding: 3rem 1.5rem;
    }
    
    .proveedores__form-title {
        font-size: 1.8rem;
    }
    
    .proveedores__subtitle {
        font-size: 1.3rem;
    }
}

:root {
    --color-white: #ffffff;
    --color-muted: rgba(255, 255, 255, 0.7);
    --color-overlay: rgba(2, 8, 20, 0.55);
    --color-accent: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    /* Sistema de layout unificado */
    --content-max-width: 1400px;
    --content-padding-desktop: clamp(5rem, 8vw, 10rem);
    --content-padding-tablet: 3rem;
    --content-padding-mobile: 1.5rem;
    /* Gutter calculado: alinea con el corredor de contenido max-width en todas las pantallas */
    --page-gutter: max(clamp(5rem, 8vw, 10rem), calc((100vw - 1400px) / 2));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Desactivar guionado automático globalmente */
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
}

html {
    scroll-behavior: auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body.is-smooth-scroll-active {
    scrollbar-width: none;
}

body.is-smooth-scroll-active::-webkit-scrollbar {
    width: 0;
    height: 0;
}

[data-anim] {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 1s ease;
    will-change: opacity, transform, filter;
}

[data-anim="bottom"] {
    transform: translateY(4rem);
    filter: blur(6px);
}

[data-anim="top"] {
    transform: translateY(-4rem);
    filter: blur(6px);
}

[data-anim="left"] {
    transform: translateX(-4rem) scale(0.92);
    filter: blur(4px);
}

[data-anim="right"] {
    transform: translateX(4rem) scale(0.92);
    filter: blur(4px);
}

[data-anim="fade"] {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.95);
}

[data-anim="zoom"] {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(10px);
}

[data-anim="slide-up"] {
    opacity: 0;
    transform: translateY(6rem) rotateX(15deg);
    filter: blur(8px);
}

[data-anim].anim-on,
[data-anim].is-visible {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) rotateX(0) !important;
    filter: blur(0) !important;
}

body {
    font-family: var(--font-body);
    color: var(--color-white);
    background-color: #000;
    min-height: 100vh;
    overflow-x: hidden;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 15, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
    z-index: 10;
}

body.is-lang-transition::after {
    opacity: 1;
}

body.is-page-entering {
    animation: pageFadeIn 0.95s ease forwards;
}

body.is-page-exiting {
    animation: pageFadeOut 0.6s ease forwards;
}

.section {
    position: relative;
    padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 6vw, 6rem);
    background-color: #04080f;
}

.section + .section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: clamp(2rem, 6vw, 4rem);
}

.section--quienes {
    background-color: #ffffff;
    color: #111111;
    border-top: none;
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section__inner--quienes {
    gap: clamp(2rem, 4vw, 3.5rem);
    max-width: none;
}

.section--quienes::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.35);
    margin-top: clamp(1rem, 3vw, 2rem);
}

.section--proyectos {
    background-color: #ffffff;
    color: #111111;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

.section__inner--proyectos {
    max-width: none;
    gap: clamp(2rem, 5vw, 3rem);
}

.proyectos__header {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.proyectos__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3rem);
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    margin: 0;
}

.proyectos__title-underline {
    display: block;
    width: 160px;
    height: 4px;
    background-color: #111111;
    margin-top: 0.35rem;
}

.proyectos__layout {
    display: grid;
    grid-template-columns: minmax(180px, 240px) 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}

.proyectos__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--font-heading);
}

.proyectos__item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 1rem;
}

.section--image-full {
    padding: 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding-block: clamp(2.5rem, 6vw, 4rem);
}

.section-image-full {
    width: min(1200px, 92vw);
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.proyectos__item-index {
    font-weight: 600;
}

.proyectos__item-name {
    font-family: var(--font-body);
    letter-spacing: 0.1rem;
    font-weight: 500;
}

.proyectos__item.is-active .proyectos__item-name {
    color: #111;
}

.proyectos__item.is-disabled {
    color: rgba(0, 0, 0, 0.4);
}

.proyectos__card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.proyectos__media {
    position: relative;
    margin: 0;
}

.proyectos__media img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0;
    aspect-ratio: 4 / 3;
    max-height: clamp(480px, 70vh, 760px);
}

.proyectos__media-cta {
    position: absolute;
    left: 1.5rem;
    bottom: 1.2rem;
    font-family: var(--font-heading);
    font-style: italic;
    letter-spacing: 0.2rem;
    text-transform: capitalize;
    color: #f3f4ef;
}

.proyectos__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.proyectos__label {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: #6f8160;
}

.proyectos__heading {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 400;
    color: #111;
}

.proyectos__project-title {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: #111;
}

.proyectos__content p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #1f1f1f;
}

.proyectos__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.95rem;
}

.proyectos__link {
    color: #005b83;
    text-decoration: none;
    font-weight: 500;
}

.proyectos__link:hover {
    text-decoration: underline;
}

.section--quienes .section__eyebrow {
    color: #666;
}

.quienes__title {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(2rem, 4.5vw, 3rem);
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.quienes__divider {
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.35);
    margin-bottom: 1.5rem;
}

.quienes__header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.quienes__description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    line-height: 1.4;
    width: 100%;
    text-align: left;
    max-width: 100%;
}

.proyectos__title-container--full-width {
    width: calc(100% - 10rem) !important;
    margin: 0 5rem !important;
    padding: 0 !important;
}

.quienes__description[data-text-reveal] {
    display: block;
}


/* Efecto letra por letra para cualquier texto con data-text-reveal */
.letter {
    color: #d1d1d1;
    transition: color 0.2s ease;
    display: inline;
}
.letter.revealed {
    color: #1f1f1f;
}

.quienes__carousel {
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-block: 1rem;
    margin-inline: calc(-1 * clamp(1.5rem, 6vw, 6rem));
}

.quienes__carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: quienes-carousel-scroll 22s linear infinite;
}

.quienes__carousel img {
    width: clamp(280px, 28vw, 420px);
    height: clamp(200px, 24vw, 300px);
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Contenedor principal con efecto de revelado mediante scroll */
.quienes__video-reveal {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: clamp(500px, 80vh, 800px);
    overflow: hidden;
}

/* Contenedor del video que se desplaza con parallax */
.quienes__video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Video con efecto parallax sincronizado con scroll */
.quienes__video-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%; /* Altura extra para permitir el desplazamiento parallax */
    object-fit: cover;
    opacity: 0.7; /* Opacidad reducida para que el texto sea legible */
    /* Efecto parallax usando animation-timeline (scroll) */
    animation: parallax-scroll linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

/* Animación de parallax vertical */
@keyframes parallax-scroll {
    from {
        transform: translateY(-15%);
    }
    to {
        transform: translateY(15%);
    }
}

/* Contenedor de texto centrado sobre el video */
.quienes__video-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(2rem, 5vw, 4rem);
    z-index: 2;
    color: #ffffff;
}

/* Título del texto sobre el video */
.quienes__video-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 0.05rem;
    text-transform: none;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Descripción del texto sobre el video */
.quienes__video-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: #ffffff;
    max-width: 800px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Fallback para navegadores sin soporte de animation-timeline */
@supports not (animation-timeline: view()) {
    .quienes__video-parallax {
        animation: none;
        top: -15%;
    }
}

.section__intro {
    max-width: 720px;
}

.section__eyebrow {
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin-bottom: 1.25rem;
}

.section__description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.section__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.section-card {
    padding: 2rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    min-height: 220px;
}

.section-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.section-card__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.section-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.section-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.section-stats__number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
}

.section-stats__label {
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 120%;
    object-fit: cover;
    transform: translateX(-50%) translateY(0);
    will-change: transform;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.65) 70%);
    z-index: 2;
}

.hero__inner {
    position: relative;
    z-index: 3;
    min-height: inherit;
    padding: 0 clamp(5rem, 8vw, 10rem) 4rem;
    padding-top: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.8rem clamp(5rem, 8vw, 10rem);
}



.nav__bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.nav__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}


.nav__logo {
    width: 200px;
    height: auto;
    object-fit: contain;
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



.nav__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.95rem;
    flex-wrap: wrap;
    justify-self: end;
}

.nav__social {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-self: start;
}

.nav__social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 239, 226, 0.92);
    font-size: 1.6rem;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__social .icon-linktree {
    width: 26px;
    height: 26px;
}

.nav__social a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.nav__burger {
    width: 3.2rem;
    height: 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    transition: transform 0.2s ease;
}

.nav__burger:hover {
    transform: scale(1.05);
}

.nav__burger span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav__burger.is-open span:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__burger.is-open span:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

.nav__divider {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.4);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__content {
    text-align: center;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero__subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    line-height: 1.25;
    letter-spacing: 0.04em;
    color: var(--color-white);
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-top: 1rem;
    color: var(--color-white);
}

.hero__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    letter-spacing: 0.2rem;
}

.scroll-indicator__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator__svg {
    width: 100%;
    height: 100%;
    display: block;
}

.scroll-indicator__svg circle {
    fill: rgba(255, 255, 255, 0.35);
}

.scroll-indicator__text {
    color: var(--color-muted);
}

.whatsapp-button {
    position: fixed;
    bottom: 2.5rem;
    right: clamp(5rem, 8vw, 10rem);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 20;
    transition: transform 0.2s ease;
}

.whatsapp-button:hover {
    transform: translateY(-4px);
}

.scroll-to-top-button {
    position: fixed;
    bottom: 2.5rem;
    right: calc(clamp(5rem, 8vw, 10rem) + 78px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 20;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top-button.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-button:hover {
    transform: translateY(-4px);
    background-color: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Ocultar botones flotantes cuando el footer está visible */
.scroll-to-top-button.hidden-by-footer,
.whatsapp-button.hidden-by-footer {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}

body.no-scroll {
    overflow: hidden;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    background-color: #7c8270;
    background-image: url('OPTIMIZED/images/fondo-menu-1600w.webp');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s;
    z-index: 3000;
    overflow: hidden;
}

.menu-overlay::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    background-color: #7c8270 !important;
    background-image: url('OPTIMIZED/images/fondo-menu-1600w.webp') !important;
    background-size: cover !important;
    background-position: center !important;
}

.menu-overlay.is-open::before {
    opacity: 1;
    pointer-events: auto;
}

.menu-overlay__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 2.5rem 5rem 2.5rem 5rem;
}

.menu-overlay__header {
    padding-bottom: 1.2rem;
    border-bottom: 3px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.menu-overlay__logo {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.menu-overlay__close {
    position: absolute;
    top: 2.5rem;
    right: 5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    transition: all 0.3s ease;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-overlay__close span {
    display: block;
    font-weight: 200;
}

.menu-overlay__close:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.15);
}

.menu-overlay__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    flex: 1;
    align-items: flex-start;
    overflow: hidden;
}

.menu-overlay__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-top: 1.5rem;
}

.menu-overlay__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 2.5rem;
    padding-top: 2.5rem;
    padding-left: 0;
    width: 100%;
    position: relative;
    margin-top: 0;
}

.menu-overlay__nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-overlay__link {
    color: rgba(255, 255, 255, 0.98);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 2.5rem;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.menu-overlay__link:hover {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    transform: translateX(6px);
}

.menu-overlay__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 90%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    margin-top: 0;
}

.menu-overlay__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-overlay__video-label {
    position: absolute;
    bottom: 1.2rem;
    right: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.menu-overlay__hero-text {
    font-family: var(--font-body);
    font-size: 2.8rem;
    line-height: 1.2;
    color: white;
    margin: 0.3rem 0 0 0;
    text-align: right;
    font-weight: 300;
    letter-spacing: 0.035em;
    width: 100%;
    align-self: flex-end;
    position: static;
    max-width: 95%;
    z-index: 1;
}
@media (min-width: 1025px) {
    .menu-overlay__right {
        margin-top: 2.5rem;
    }
    .menu-overlay__video-wrapper {
        margin-top: 0;
    }
}

.menu-overlay__hero-text em {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
}

.menu-overlay__social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.15rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    margin-top: auto;
    padding-top: 2rem;
}

.menu-overlay__social a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.menu-overlay__social a .arrow {
    font-size: 1em;
    transition: transform 0.3s ease;
}

.menu-overlay__social a:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(4px);
}

.menu-overlay__social a:hover .arrow {
    transform: translate(3px, -3px);
}

/* Responsive */
@media (max-width: 1200px) {
    .menu-overlay__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .menu-overlay__wrapper {
        padding: 2.5rem 3rem;
    }
    
    .menu-overlay__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .menu-overlay__left {
        padding-top: 1rem;
    }
    
    .menu-overlay__right {
        align-items: center;
        padding-top: 1rem;
    }
    
    .menu-overlay__video-wrapper {
        max-width: clamp(320px, 60vw, 420px);
    }
    
    .menu-overlay__hero-text {
        text-align: center;
        align-self: center;
        position: static;
        right: auto;
        bottom: auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .menu-overlay__wrapper {
        padding: 2rem 2rem;
    }
    
    .menu-overlay__header {
        margin-bottom: 2rem;
        padding-bottom: 1.2rem;
    }
    
    .menu-overlay__logo {
        width: clamp(120px, 30vw, 150px);
    }
    
    .menu-overlay__close {
        top: 2rem;
        right: 2rem;
    }
    
    .menu-overlay__grid {
        gap: 2.5rem;
    }
    
    .menu-overlay__nav {
        gap: 0.8rem;
    }
    
    .menu-overlay__link {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }
    
    .menu-overlay__right {
        display: flex;
        gap: 2rem;
    }
    
    .menu-overlay__video-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    .menu-overlay__social {
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .menu-overlay__wrapper {
        padding: 1.5rem 1.5rem;
    }
    
    .menu-overlay__header {
        margin-bottom: 1.5rem;
    }
    
    .menu-overlay__logo {
        width: 100px;
    }
    
    .menu-overlay__right {
        gap: 1.5rem;
    }
    
    .menu-overlay__video-wrapper {
        aspect-ratio: 16 / 10;
    }
    
    .menu-overlay__hero-text {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }
}

.menu-overlay__play span {
    display: none;
}

.menu-overlay__play:hover {
    display: none;
}

.menu-overlay__play.is-hidden {
    display: none;
}

.menu-overlay__image-caption {
    display: none;
}

.menu-overlay__tagline {
    display: none;
}

.menu-overlay__tagline span {
    display: none;
}

@media (max-width: 768px) {
    .menu-overlay {
        width: 100vw;
    }

    .menu-overlay__link {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .menu-overlay__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

.site-footer {
    background-color: #05080f;
    color: var(--color-white);
    padding: 4rem clamp(5rem, 8vw, 10rem);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-footer__column--left {
    display: flex;
    align-items: center;
}

.site-footer__logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.site-footer__column--right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
}

.site-footer__location,
.site-footer__contact,
.site-footer__copyright {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.site-footer__contact a {
    color: inherit;
    text-decoration: none;
}

.site-footer__social {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.site-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__social a:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}

.site-footer__social .icon-linktree {
    width: 24px;
    height: 24px;
}

/* Footer responsive: stack en mobile */
@media (max-width: 640px) {
    .site-footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-footer__column--right {
        align-items: center;
    }

    .site-footer__social {
        justify-content: center;
    }
}

.tours-page {
    font-family: var(--font-body);
    color: var(--color-white);
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.55)),
        url('OPTIMIZED/images/fondo-menu-1600w.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5rem);
}

.tours {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
}

.tours-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
    opacity: 0.75;
}

.tours-back:hover {
    opacity: 1;
}

.tours__intro {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 760px;
}

.tours__eyebrow {
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.tours__intro h1 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3rem);
    letter-spacing: 0.25rem;
    text-transform: uppercase;
}

.tours__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tours-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    overflow: hidden;
    background: rgba(5, 9, 16, 0.85);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.tours-card__media iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
    background: #000;
}

.tours-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tours-card__eyebrow {
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--color-muted);
}

.tours-card__cta {
    margin-top: auto;
    align-self: flex-start;
    padding: 0.85rem 1.5rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.tours-card__cta:hover {
    background-color: var(--color-white);
    color: #05090f;
}

@media (max-width: 900px) {
    .nav__bar {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .nav__actions {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        justify-self: center;
    }

    .nav__social {
        justify-content: center;
        justify-self: center;
    }

    .hero__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .menu-overlay__body {
        flex-direction: column;
    }

    .section__content {
        grid-template-columns: 1fr;
    }

    .section-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .proyectos__layout {
        grid-template-columns: 1fr;
    }

    .proyectos__list {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .nav__brand-text {
        letter-spacing: 0.1rem;
    }

    .nav__brand-tagline {
        letter-spacing: 0.15rem;
    }

    .scroll-indicator {
        letter-spacing: 0.1rem;
    }

    .menu-overlay {
        padding: 2rem 1.25rem;
    }

    .menu-overlay__logo {
        width: 180px;
    }

    .menu-overlay__links-list {
        font-size: 1.7rem;
    }

    .menu-overlay__social {
        letter-spacing: 0.15rem;
    }

    .menu-overlay__image img {
        max-height: unset;
    }

    .section-card,
    .section-stats {
        padding: 1.5rem;
    }

    .proyectos__list {
        flex-direction: column;
    }

    .proyectos__links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        filter: blur(12px);
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes pageFadeOut {
    from {
    }
    to {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(10px);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.is-page-entering,
    body.is-page-exiting {
        animation: none !important;
    }

    [data-anim] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Sección Quienes Somos */
.quienes {
    min-height: auto;
    background: #edede7;
    padding: 8rem clamp(5rem, 8vw, 10rem);
    position: relative;
    overflow: hidden;
}

.quienes::before {
    content: none;
}

.quienes__container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

 .quienes__text-wrapper {
    padding: 3rem 0;
    height: 100%;
}

.quienes__title {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: clamp(3.5rem, 4.5vw, 5rem);
    font-weight: 700;
    font-style: normal;
    color: #2c2c2c;
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.quienes__description {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
}

.quienes__paragraph {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 1.8vw, 1.75rem);
    line-height: 2 !important;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: left;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

.quienes__paragraph .letter {
    display: inline;
    color: #e0e0e0;
    transition: color 0.3s ease;
    line-height: inherit;
    margin: 0;
    padding: 0;
}

.quienes__paragraph .letter.revealed {
    color: #1a1a1a;
}

.quienes__paragraph .space {
    display: inline;
    white-space: pre;
}

 .quienes__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
    height: 100%;
}

.quienes__grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.quienes__grid-item--large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.quienes__grid-item--small {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.quienes__grid-item--medium {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.quienes__grid-item--tall {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.quienes__image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.quienes__image {
    width: 100%;
    height: 150%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: filter 0.6s ease;
    filter: grayscale(0.2) brightness(0.95);
    will-change: transform;
}

.quienes__image-overlay {
    position: absolute;
    inset: 0;
    background: none;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.quienes__grid-item:hover .quienes__image {
    transform: scale(1.08);
    filter: grayscale(0) brightness(1);
}

.quienes__grid-item:hover .quienes__image-overlay {
    opacity: 1;
}

/* Animaciones */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .quienes {
        padding: 6rem 4rem;
    }
    
    .quienes__container {
        gap: 4rem;
    }
    
    .quienes__title {
        font-size: 4rem;
    }
    
    .quienes__grid {
        height: 600px;
    }
}

@media (max-width: 900px) {
    .quienes__container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .quienes__title {
        font-size: 3.5rem;
    }
    
    .quienes__paragraph {
        font-size: 1.3rem;
        line-height: 2 !important;
    }
    
    .quienes__grid {
        height: 500px;
    }
}

@media (max-width: 600px) {
    .quienes {
        padding: 4rem 2rem;
    }
    
    .quienes__title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .quienes__paragraph {
        font-size: 1.1rem;
        line-height: 2 !important;
    }
    
    /* Carrusel horizontal para las imágenes de Quienes Somos */
    .quienes__grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        gap: 1rem !important;
        padding-bottom: 1rem !important;
        height: auto !important;
        grid-template-columns: unset !important;
        grid-template-rows: unset !important;
        /* Ocultar scrollbar */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE 10+ */
    }
    
    .quienes__grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .quienes__grid-item {
        min-width: 80vw !important;
        max-width: 85vw !important;
        flex: 0 0 auto !important;
        height: 280px !important;
    }
    
    .quienes__grid-item--large,
    .quienes__grid-item--small,
    .quienes__grid-item--medium,
    .quienes__grid-item--tall {
        grid-column: unset !important;
        grid-row: unset !important;
        min-width: 80vw !important;
        max-width: 85vw !important;
        height: 280px !important;
    }
}

@keyframes quienes-carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .quienes__carousel-track {
        animation: none !important;
    }
}

/* Sección Nuestro Enfoque */
.enfoque {
    width: 100%;
    background: #edede7;
    padding: 3rem 5rem 3rem 5rem;
    position: relative;
}

.enfoque__container {
    max-width: 1600px;
    margin: 0 auto;
}

.enfoque__title {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 0.8rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
}

.enfoque__divider {
    width: 100%;
    height: 2px;
    background: #222;
    margin-bottom: 1rem;
}

.enfoque__description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #222;
    font-weight: 300;
    line-height: 1.5;
    max-width: 100%;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .enfoque {
        padding: 2.5rem 3rem;
    }
    
    .enfoque__title {
        font-size: 2.3rem;
    }
    
    .enfoque__description {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .enfoque {
        padding: 2rem 2rem;
    }
    
    .enfoque__title {
        font-size: 2rem;
    }
    
    .enfoque__description {
        font-size: 1.2rem;
    }
}

.nav__logo:hover,
.nav__brand:hover .nav__logo {
    transform: scale(1.07);
}

.vision {
    width: 100%;
    background: #e8e8e0;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* ====================================================
   SECCIÓN VISION - Nueva estructura
   ==================================================== */

.vision {
    width: 100%;
    background: #e8e8e0;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* Contenedor de texto */
.vision__text-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 6rem);
    text-align: left;
    position: relative;
    z-index: 1;
}

.vision__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(2rem, 4.5vw, 3rem);
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    color: #1f1f1f;
    margin-bottom: 1rem;
}

.vision__divider {
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.35);
    margin-bottom: 1.5rem;
}

.vision__description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    line-height: 1.4;
    width: 100%;
    text-align: left;
    max-width: 100%;
}

.vision__paragraph {
    margin: 0;
}

/* Contenedor de imagen con parallax */
.vision__parallax-frame {
    width: 100%;
    height: 90vh; /* Altura aumentada al 90% de la pantalla */
    overflow: hidden;
    position: relative;
}

.vision__parallax-image {
    width: 100%;
    height: 130%; /* Imagen más alta que el contenedor para el efecto */
    display: block;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
}

/* Estilos responsive para vision */
@media (max-width: 768px) {
    .vision__text-container {
        padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
    }
    
    .vision__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        letter-spacing: 0.15rem;
    }
    
    .vision__description {
        font-size: clamp(1.2rem, 4vw, 1.75rem);
    }
}

@media (max-width: 900px) {
    .vision__parallax-text {
        padding: 1.1rem 0.7rem;
        max-width: 99vw;
    }
    .vision__line, .vision__line--bold {
        font-size: 1.1rem;
    }
}

.proyectos__title-container--full-width .quienes__paragraph[data-text-reveal] {
    text-align: justify !important;
    text-justify: inter-word !important;
    width: 100% !important;
    max-width: none !important;
}

@media (max-width: 768px) {
  .nav {
    padding: 1.5rem 1.2rem;
  }
  .nav__bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    gap: 1rem;
    min-height: 64px;
    box-sizing: border-box;
  }
  .nav__brand {
    order: 1;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
  }
  .nav__logo {
    height: 38px;
    width: auto;
  }
  .nav__actions {
    order: 2;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .nav__burger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    margin-left: 0.5rem;
    position: relative !important;
    z-index: 1001 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .nav__burger span {
    display: block !important;
    width: 100% !important;
    height: 3px;
    background-color: #ffffff !important;
    border-radius: 2px;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.6);
  }
  .nav__social {
    display: none !important;
  }
  .hero__inner {
    padding: 0 1.5rem 2rem;
    padding-top: 100px;
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: none !important;
  }
}
