/* Fuentes */
@font-face {
    font-family: 'Carves';
    src: url('assets/images/Carves.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-bg: #fcfcfc;
    --color-text: #222222;
    --color-text-muted: #666666;
    --color-gold: #b28b36;
    --nav-height: 110px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* =========================================
   1. Navegación
   ========================================= */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4vw;
    z-index: 100;
    background: transparent;
    transition: background 0.4s ease;
}

.navbar.scrolled {
    background: rgba(252, 252, 252, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo-container {
    height: 100%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    user-select: none;
    cursor: pointer;
}

.logo-monogram { height: 42px; width: auto; object-fit: contain; flex-shrink: 0; display: block; }
.logo-text { height: 14px; width: auto; object-fit: contain; flex-shrink: 0; display: block; }

.nav-links {
    display: none;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--color-gold); }

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px; height: 12px;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    height: 1.5px;
    width: 100%;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

/* =========================================
   2. Hero Section (Estatic)
   ========================================= */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tree-video-wrapper {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center bottom;
    max-width: 90vw;
    display: block;
}

.hero-tagline {
    position: absolute;
    bottom: 12vh;
    right: 6vw;
    text-align: right;
    z-index: 10;
}

.tagline-main {
    font-family: 'Carves', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    color: var(--color-text);
    opacity: 0;
    animation: fadeUp 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

.tagline-sub {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
    color: var(--color-text-muted);
    opacity: 0;
    animation: fadeUp 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.8s;
}

.scroll-hint {
    position: absolute;
    bottom: clamp(22px, 4vh, 48px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.scroll-text {
    font-size: clamp(0.68rem, 0.8vw, 0.78rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: clamp(20px, 3vh, 28px);
    background: linear-gradient(to bottom, var(--color-text-muted), transparent);
    animation: scrollPulse 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

/* =========================================
   3. Capítulo 01: Tierra (Scroll Storytelling)
   ========================================= */
.chapter-track {
    position: relative;
    width: 100vw;
    height: 250vh; /* Recorrido más compacto para transiciones de imágenes */
    background-color: var(--color-bg);
}

.chapter-stage {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chapter-content {
    width: 90vw;
    max-width: 1400px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6vw;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.chapter-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.chapter-content.reverse-layout {
    flex-direction: row-reverse;
}

/* Columna Texto */
.chapter-text-col {
    flex: 1;
    max-width: 500px;
}

.chapter-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.chapter-number { font-family: 'Carves', serif; font-size: 1rem; }

.chapter-title {
    font-family: 'Carves', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    line-height: 1.05;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.chapter-body {
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 1.2rem;
}

/* Columna Imágenes (Polaroids) */
.chapter-image-col {
    flex: 1;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-stack {
    position: relative;
    width: 85%; /* Dejar espacio para las rotaciones */
    max-width: 500px;
    aspect-ratio: 1 / 1;
}

/* Reducir el ancho de la pila cuando el formato es alargado para que no desborde la pantalla */
.image-stack.tall-stack {
    max-width: 340px; 
}

.polaroid-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    background: #fff;
    padding: 12px 12px 45px 12px; /* Margen tipo polaroid */
    box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    opacity: 0;
    will-change: opacity, transform, filter;
    /* Centrado inicial antes de que JS aplique la rotación individual */
    transform: translate(-50%, -50%);
}

.polaroid-inner {
    width: 100%;
    background-color: #f0f0f0; /* Color de fondo por si tarda en cargar */
    overflow: hidden;
    aspect-ratio: 3 / 2; /* Menos recorte para fotos apaisadas */
}

/* Formato más alargado hacia arriba para la sección 2 */
.polaroid-inner.tall-format {
    aspect-ratio: 4 / 5;
}

.polaroid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
   4. Sub-capítulo: Proceso (Editorial Grid)
   ========================================= */
.process-section {
    width: 100vw;
    background-color: var(--color-bg);
    padding: 5vh 0 5vh 0;
}

.process-container {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10vw;
    row-gap: 4vh; /* Reduce el espacio vertical entre filas */
    align-items: start;
}

.process-step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    display: block;
    font-family: 'Carves', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.step-title {
    font-family: 'Carves', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: normal;
}

.step-body {
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* =========================================
   4.5 Transición: Origen
   ========================================= */
.transition-section {
    width: 100vw;
    min-height: 100vh; /* Ocupa al menos toda la pantalla para generar expectativa */
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centrar verticalmente */
    text-align: center;
    padding-top: 15vh;
    padding-bottom: 5vh;
}

.transition-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1; /* Empuja el scroll-indicator hacia abajo si hay espacio */
}

.transition-scroll {
    position: relative;
    margin-top: 5vh; /* Espacio entre el texto y el indicador */
    bottom: auto;
    left: auto;
    transform: none;
}

.transition-title {
    font-family: 'Carves', serif;
    font-size: clamp(4rem, 8vw, 8rem);
    color: var(--color-text);
    margin: 0;
    line-height: 1;
    font-weight: normal;
    text-transform: uppercase;
}

.transition-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 1rem 0 2rem 0;
    font-weight: 500;
}

.transition-body {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================================
   5. Capítulo 3: Perfil Sensorial
   ========================================= */
.sensorial-section {
    width: 100vw;
    background-color: var(--color-bg);
    padding: 10vh 0;
    position: relative;
    overflow: hidden;
}

.sensorial-container {
    width: 95vw;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: stretch; /* Permite que las columnas compartan la altura y puedan alinearse internamente */
    gap: 4vw;
}

/* Bottle 3D Effect & Layout */
.sensorial-bottle-col {
    display: grid;
    grid-template-rows: min-content 1fr min-content; /* Fuerza a título, imagen y texto a ocupar su propia fila y empujarse a las mismas alturas */
    align-items: end; /* Alinea las imágenes a la base para que estén a la misma altura */
    justify-items: center;
    perspective: 1000px;
    text-align: center;
    margin-top: 20px; /* Las botellas empiezan un poquito más abajo (20px) */
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sensorial-bottle-col.visible {
    opacity: 1;
    transform: translateY(0);
}

.bottle-title {
    font-family: 'Carves', serif;
    font-size: clamp(1.3rem, 1.8vw, 1.8rem); /* Aún más pequeño */
    color: var(--color-gold);
    margin-bottom: 0.5rem; /* Pegado a la imagen */
    font-weight: normal;
    line-height: 1;
    align-self: end; /* Título siempre pegado a la imagen */
}

.bottle-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: end; /* Ambas botellas se asientan sobre la misma línea imaginaria inferior */
    width: 100%;
    height: 100%;
}

.bottle-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Todo el texto de abajo empieza en la misma línea superior */
    align-items: center;
    height: 100%;
    margin-top: 2rem;
}

.bottle-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 0.5rem 0; /* Reset margin top */
    font-weight: 600;
}

.bottle-desc {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--color-text-muted);
    max-width: 250px;
    line-height: 1.5;
    margin: 0; /* Reset margin top */
}

.bottle-subtitle + .bottle-desc {
    margin-top: 0; 
}

.bottle-3d {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.05));
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
    transform-style: preserve-3d;
}

.bottle-500 {
    max-width: 450px; /* Botella más grande */
}

.bottle-5l {
    max-width: 250px; /* Garrafa más pequeña */
}

.blend-img {
    mix-blend-mode: multiply; /* Camufla el fondo blanco del JPG y PNG con el fondo crema */
}

.bottle-3d:hover {
    transform: scale(1.05) rotateY(15deg) rotateX(5deg);
    filter: drop-shadow(-20px 30px 40px rgba(0,0,0,0.15));
}

/* Typography & Layout */
.sensorial-text-col.center-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sensorial-title {
    font-family: 'Carves', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem); /* Texto más pequeño */
    color: var(--color-text);
    margin: 1rem 0;
    font-weight: normal;
}

.sensorial-desc {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem); /* Texto más pequeño */
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.text-justify {
    text-align: justify;
}

/* Ratings */
.sensorial-ratings {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrar estrellas */
    gap: 0.8rem;
}

.rating-row {
    display: flex;
    align-items: center;
    justify-content: center; /* Centrar */
    gap: 1.5rem;
    width: 100%;
}

.rating-label {
    font-weight: 600;
    font-size: 1rem;
    min-width: 130px;
    text-align: right; /* Alinear a la derecha para empujar estrellas */
    color: var(--color-text);
}

.stars {
    font-size: 1.4rem;
    display: flex;
    gap: 4px;
    min-width: 130px;
    justify-content: flex-start; /* Estrellas alineadas a la izquierda */
}

.star.filled {
    color: #6d7b5f; /* Verde oliva del diseño */
}

.star.empty {
    color: transparent;
    -webkit-text-stroke: 1px #6d7b5f;
}

/* =========================================
   DOWNLOAD SECTION
   ========================================= */
.download-section {
    width: 100vw;
    padding: 15vh 0; /* Espaciado generoso similar a Origen */
    background-color: var(--color-bg);
}

.download-container {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.download-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 60%;
}

.download-title {
    font-family: 'Carves', serif;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    color: var(--color-text);
    font-weight: normal;
    line-height: 1.1;
    margin: 0;
}

.download-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    background-color: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-download svg {
    width: 20px;
    height: 20px;
}

.btn-download:hover {
    background-color: var(--color-text);
    color: var(--color-bg);
}

/* =========================================
   LEAD SECTION
   ========================================= */
.lead-section {
    width: 100vw;
    padding: 15vh 0;
    background-color: var(--color-bg);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.lead-container {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.lead-text {
    display: flex;
    flex-direction: column;
}

.lead-title {
    font-family: 'Carves', serif;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    color: var(--color-text);
    font-weight: normal;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
}

.lead-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 400px;
    margin: 0;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group.half {
    width: 50%;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0; /* Reset for iOS */
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: var(--color-text-muted);
}

.lead-form select {
    color: var(--color-text-muted);
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.lead-form select option {
    background-color: var(--color-bg);
    color: var(--color-text);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-bottom: 1px solid var(--color-gold);
}

.btn-submit {
    margin-top: 1rem;
    padding: 1.2rem 2.5rem;
    background-color: var(--color-text);
    color: var(--color-bg);
    border: none;
    font-family: -apple-system, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background-color: var(--color-bg);
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 5rem 0 2rem 0;
    width: 100vw;
}

.footer-container {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Carves', serif;
    font-size: 2.5rem;
    color: var(--color-gold);
    margin: 0 0 0.5rem 0;
    font-weight: normal;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
}

.footer-links-group {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    margin: 0 0 0.5rem 0;
}

.footer-col p,
.footer-col a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    width: 90vw;
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* =========================================
   6. Keyframes
   ========================================= */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
    0%    { transform: scaleY(0); transform-origin: top; }
    50%   { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100%  { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================
   5. Responsive
   ========================================= */
@media (min-width: 600px) {
    .logo-container { gap: 16px; }
    .logo-monogram { height: 52px; }
    .logo-text { height: 17px; }
}

@media (min-width: 1024px) {
    :root { --nav-height: 120px; }
    .logo-container { gap: 20px; }
    .logo-monogram { height: 64px; }
    .logo-text { height: 21px; }
    .menu-toggle { display: none; }
    .nav-links { display: flex; }
}

@media (max-width: 768px) {
    .hero-tagline { bottom: 15vh; right: 6vw; left: 6vw; text-align: center; }
    .tree-video-wrapper { bottom: 15vh; }
    
    .chapter-content {
        flex-direction: column;
        justify-content: flex-start;
        height: 85vh;
        gap: 2rem;
    }
    
    .chapter-text-col { max-width: 100%; }
    .chapter-title { margin-bottom: 1rem; }
    
    .chapter-image-col {
        width: 100%;
        min-height: 40vh;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .process-step.step-right {
        margin-top: 0 !important;
    }
    
    .sensorial-container {
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }
    
    .sensorial-bottle-col {
        order: unset; /* Orden natural: Botella 500, Texto, Garrafa 5L */
        margin-top: 0; /* Reset margin on mobile */
    }
    
    .bottle-500, .bottle-5l {
        max-width: 250px;
    }

    .download-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .download-text-wrapper {
        max-width: 100%;
    }

    .download-title {
        font-size: 2.5rem;
    }

    .lead-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lead-text {
        text-align: center;
        align-items: center;
    }

    .form-row {
        flex-direction: column;
        gap: 0; /* Ya tienen gap en .lead-form */
    }

    .form-group.half {
        width: 100%;
    }
}
