/* =========================================
   1. VARIABLES Y RESET GLOBAL
========================================= */
:root {
    --black: #111111;
    --grey-text: #555555;
    --soft-grey: #fafafa;
    --gold: #b5a48b;
    --white: #ffffff;
    --serif: 'Playfair Display', serif;
    --sans: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--black); font-family: var(--sans); line-height: 1.6; overflow-x: hidden; }

/* Utilidades Compartidas */
.gold-text { color: var(--gold); text-transform: uppercase; letter-spacing: 4px; font-size: 0.75rem; margin-bottom: 20px; display: block; font-weight: 500; }
.serif { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 30px; font-weight: 400; line-height: 1.2; }
.italic { font-style: italic; font-family: var(--serif); }
.eyebrow { text-transform: uppercase; letter-spacing: 6px; font-size: 0.85rem; font-weight: 500; }
.text-center { text-align: center; }

/* =========================================
   2. NAVEGACIÓN INTELIGENTE
========================================= */
.navbar { position: fixed; top: 0; width: 100%; padding: 30px 5%; z-index: 1000; transition: all 0.4s ease; display: flex; justify-content: center; }
.navbar.scrolled { background: var(--white); padding: 15px 5%; box-shadow: 0 4px 30px rgba(0,0,0,0.05); }

.nav-container { display: flex; justify-content: center; align-items: center; width: 100%; max-width: 1400px; position: relative; }
.nav-menu { display: flex; align-items: center; width: 100%; justify-content: center; }
.nav-links { display: flex; align-items: center; }
.left-links { margin-right: 40px; }
.right-links { margin-left: 40px; }

.nav-links a { text-decoration: none; color: var(--white); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 3px; margin: 0 1.5rem; transition: color 0.3s ease; }
.navbar.scrolled .nav-links a { color: var(--black); }
.nav-links a:hover { color: var(--gold) !important; }

/* Contenedor del logo: evita que los enlaces lo aplasten */
.nav-logo {
    flex-shrink: 0; 
}

/* Ajuste específico para logos en formato SVG */
.logoImg { 
    height: 45px; 
    width: auto; /* Fuerza al SVG a mantener su proporción original */
    max-width: none; /* Evita recortes forzados por el navegador */
    object-fit: contain; /* Asegura que todo el vector entre en la caja */
    display: block;
    filter: brightness(0) invert(1); 
    transition: filter 0.4s ease; 
}

.navbar.scrolled .logoImg { 
    filter: brightness(0); 
}

.hamburger { display: none; }
.mobile-logo { display: none; }

/* Menú negro por defecto en páginas internas */
.contact-page .navbar, .about-page .navbar, .portfolio-page .navbar { background: var(--white); padding: 15px 5%; box-shadow: 0 4px 30px rgba(0,0,0,0.02); }
.contact-page .nav-links a, .about-page .nav-links a, .portfolio-page .nav-links a { color: var(--black); }
.contact-page .logoImg, .about-page .logoImg, .portfolio-page .logoImg { filter: brightness(0); }

/* =========================================
   3. PÁGINA PRINCIPAL (INDEX.HTML)
========================================= */
.hero-full { position: relative; height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); }

.hero-overlay-text { position: relative; z-index: 2; text-align: center; color: var(--white); width: 90%; max-width: 1000px; }
.hero-overlay-text h1 { font-size: clamp(3rem, 7vw, 6rem); margin: 15px 0; line-height: 1.1; }

.philosophy-section { padding: 120px 5%; text-align: center; background-color: var(--white); }
.container-small { max-width: 800px; margin: 0 auto; }
.main-text { font-size: 1.1rem; color: var(--grey-text); }

.immersive-portfolio { padding-bottom: 50px; }
.full-img-block { position: relative; width: 100%; height: 85vh; margin-bottom: 20px; overflow: hidden; }
.full-img-block img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s ease; }
.full-img-block:hover img { transform: scale(1.03); }
.img-caption { position: absolute; bottom: 50px; left: 5%; color: var(--white); z-index: 2; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.img-caption span { font-size: 2.5rem; display: block; line-height: 1; margin-bottom: 10px; }

.dual-block { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 0 20px; }
.img-half { position: relative; height: 90vh; overflow: hidden; }
.img-half img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s ease; }
.img-half:hover img { transform: scale(1.03); }
.caption-inner { position: absolute; bottom: 30px; width: 100%; text-align: center; color: var(--white); text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem; }

/* =========================================
   4. PÁGINA SOBRE EL ESTUDIO (ABOUT.HTML)
========================================= */
.about-hero { height: 60vh; min-height: 400px; display: flex; align-items: center; justify-content: center; background-color: var(--soft-grey); text-align: center; padding-top: 80px; }
.about-hero-text h1 { color: var(--black); line-height: 1.1; margin-top: 15px; }

.bio-section { padding: 100px 5%; background-color: var(--white); }
.bio-grid { display: grid; grid-template-columns: 45% 45%; gap: 10%; max-width: 1400px; margin: 0 auto; align-items: flex-start; }
.bio-image { position: sticky; top: 120px; height: 80vh; overflow: hidden; }
.bio-image img { width: 100%; height: 100%; object-fit: cover; }
.bio-caption { position: absolute; bottom: -15px; right: -15px; background: var(--white); padding: 15px 25px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); }
.bio-content { padding-top: 50px; }
.bio-content h2 { font-size: 3rem; margin-bottom: 10px; }
.subtitle { font-family: var(--sans); font-weight: 300; font-size: 1.1rem; color: var(--gold); margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; }
.bio-content p { font-size: 1.05rem; line-height: 1.8; color: var(--grey-text); margin-bottom: 25px; }
.bio-secondary-img { width: 100%; height: auto; margin-top: 50px; }

/* =========================================
   5. PÁGINA DE CONTACTO (CONTACT.HTML)
========================================= */
.contact-split { display: flex; min-height: 100vh; padding-top: 80px; background-color: var(--white); }
.contact-visual { width: 45%; position: relative; overflow: hidden; }
.contact-visual img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.contact-overlay-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: var(--white); width: 80%; }
.contact-overlay-text h1 { font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1.1; margin-top: 15px; }
.contact-form-container { width: 55%; display: flex; align-items: center; justify-content: center; padding: 60px 8%; }
.form-wrapper { width: 100%; max-width: 600px; }
.form-intro { font-size: 1.05rem; color: var(--grey-text); margin-bottom: 40px; line-height: 1.7; }
.pixieset-wrapper { width: 100%; min-height: 500px; }

/* =========================================
   6. PÁGINA DE PORTAFOLIO (PORTFOLIO.HTML) - CORREGIDA
========================================= */

/* A. Corrección del Hero (Centrado y sin cortes) */
.portfolio-hero {
    min-height: 55vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--soft-grey);
    padding: 180px 5% 80px; /* Despeja el menú fijo superior */
}

.portfolio-hero .hero-text {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra horizontalmente todo el bloque */
    text-align: center;
}

.portfolio-hero .hero-text h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.1;
    margin: 15px 0 25px;
    text-align: center;
}

.hero-intro {
    font-size: 1.15rem;
    color: var(--grey-text);
    max-width: 700px;
    line-height: 1.8;
    text-align: center;
    margin: 0 auto; /* Asegura que no se pegue a la izquierda */
}

/* B. Estructura Editorial del Portafolio */
.portfolio-journal { background-color: var(--white); }
.journal-section { padding: 120px 0; } 
.journal-container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.bg-soft { background-color: var(--soft-grey); }

.mt-50 { margin-top: 50px; }
.mt-80 { margin-top: 80px; }
.mb-80 { margin-bottom: 80px; }

.category { color: var(--gold); text-transform: uppercase; letter-spacing: 3px; font-size: 0.7rem; display: block; margin-bottom: 15px; font-weight: 500; }
.seo-caption { font-size: 0.8rem; color: #888; margin-top: 15px; text-align: center; font-style: italic; max-width: 800px; margin-left: auto; margin-right: auto; }

.journal-split { display: flex; align-items: center; gap: 8%; }
.journal-split.reverse { flex-direction: row-reverse; }

.j-image { overflow: hidden; }
.j-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.5s ease; }
.j-image:hover img { transform: scale(1.03); }

/* C. Prevención de cortes en rostros (Móviles y Tabletas) */
.j-image.half { width: 46%; height: 75vh; }
.j-image.half img { object-position: center 10%; } /* Recorte enfocado arriba */

.j-image.full-width { width: 100%; height: auto; max-height: 90vh; }

.j-text.half { width: 46%; }
.j-text h3 { font-size: 3.2rem; margin-bottom: 25px; line-height: 1.1; }
.j-text p { font-size: 1.05rem; color: var(--grey-text); line-height: 1.8; }

/* Grillas del Portafolio */
.journal-grid-details { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; align-items: flex-end; }
.journal-grid-details .j-item img { width: 100%; height: 55vh; object-fit: cover; }

.journal-grid-ceremony { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.journal-grid-ceremony .j-item img { width: 100%; height: 65vh; object-fit: cover; }

.journal-grid-celebration { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: center; }
.journal-grid-celebration .j-item img { width: 100%; height: 70vh; object-fit: cover; }
.journal-grid-celebration .j-text { padding: 40px; }

/* =========================================
   7. FOOTER
========================================= */
.soft-footer { background-color: var(--soft-grey); padding: 100px 5% 40px; border-top: 1px solid #eaeaea; }
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-top { text-align: center; margin-bottom: 60px; }
.f-logo { height: 35px; margin-bottom: 15px; filter: opacity(0.85); }
.f-tagline { font-family: var(--serif); font-style: italic; color: var(--grey-text); font-size: 1.2rem; }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; border-top: 1px solid #e0e0e0; padding-top: 60px; text-align: center; }
.footer-col h5 { text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; margin-bottom: 20px; color: var(--gold); }
.footer-col a, .footer-col p { color: var(--grey-text); text-decoration: none; display: block; margin-bottom: 12px; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--black); }
.underlined { text-decoration: underline !important; font-weight: 500; }
.footer-bottom { margin-top: 80px; text-align: center; font-size: 0.7rem; letter-spacing: 2px; color: #aaaaaa; }

/* Efecto AOS Custom */
[data-aos="reveal-up"] { clip-path: inset(100% 0 0 0); transition: clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1); }
[data-aos="reveal-up"].aos-animate { clip-path: inset(0 0 0 0); }

/* =========================================
   8. RESPONSIVE DESIGN (MÓVILES)
========================================= */
@media (max-width: 990px) {
    /* Navbar Móvil */
    .nav-container { justify-content: space-between; }
    .desktop-logo { display: none; }
    .mobile-logo { display: block; margin: 0 auto; position: absolute; left: 50%; transform: translateX(-50%); }
    
    .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 2000; }
    .hamburger span { width: 25px; height: 2px; background-color: var(--white); transition: all 0.3s; }
    .navbar.scrolled .hamburger span, .contact-page .hamburger span, .about-page .hamburger span, .portfolio-page .hamburger span { background-color: var(--black); }
    
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background-color: var(--black); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background-color: var(--black); }

    .nav-menu {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: var(--white); flex-direction: column; justify-content: center;
        transform: translateY(-100%); transition: transform 0.4s ease-in-out;
        z-index: 1500; opacity: 0;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; }
    
    .nav-links { flex-direction: column; margin: 0; }
    .nav-links a { color: var(--black) !important; font-size: 1.5rem; margin: 15px 0; }

    /* Index */
    .hero-overlay-text h1 { font-size: 3.5rem; }
    .philosophy-section { padding: 80px 5%; }
    .full-img-block { height: 60vh; }
    .dual-block { grid-template-columns: 1fr; gap: 20px; padding: 0; }
    .img-half { height: 60vh; }

    /* About */
    .bio-grid { grid-template-columns: 1fr; gap: 40px; }
    .bio-image { position: relative; top: 0; height: 50vh; }
    .bio-content { padding-top: 20px; }
    
    /* Contacto */
    .contact-split { flex-direction: column; padding-top: 70px; }
    .contact-visual { width: 100%; height: 40vh; }
    .contact-form-container { width: 100%; padding: 50px 5%; }

    /* Portafolio (Correcciones Móviles) */
    .portfolio-hero { padding-top: 130px; min-height: auto; }
    .journal-section { padding: 80px 0; }
    .journal-split, .journal-split.reverse { flex-direction: column; gap: 40px; }
    .j-image.half, .j-text.half { width: 100%; height: auto; }
    .j-image.half { height: 60vh; }
    .j-image.half img { object-position: center 5%; } /* Mantiene los rostros arriba en celular */
    .j-text h3 { font-size: 2.5rem; }

    .journal-grid-details, .journal-grid-ceremony, .journal-grid-celebration { grid-template-columns: 1fr; gap: 40px; }
    .journal-grid-details .j-item img, .journal-grid-ceremony .j-item img, .journal-grid-celebration .j-item img { height: 55vh; }
    .journal-grid-celebration .j-text { padding: 0; text-align: center; }

    /* Footer */
    .soft-footer { padding: 60px 5% 30px; }
    .footer-links-grid { grid-template-columns: 1fr; gap: 40px; }
}
/* =========================================
   PÁGINA DE PAQUETES (PACKAGES.HTML - PDF DATA)
========================================= */
.packages-section { padding: 120px 0; }
.mb-50 { margin-bottom: 50px; }
.mt-20 { margin-top: 20px; }
.mt-auto { margin-top: auto; } /* Empuja los botones al fondo de la tarjeta */

/* Sistema de Grillas para Precios */
.pricing-grid {
    display: grid;
    gap: 30px;
    align-items: stretch;
}
.pricing-grid.columns-3 { grid-template-columns: repeat(3, 1fr); }
.pricing-grid.columns-1 { grid-template-columns: 1fr; }

/* Diseño de la Tarjeta Editorial */
.pricing-card {
    background: var(--white);
    border: 1px solid #eaeaea;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

/* Tarjeta Destacada (Popular) */
.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 5px 20px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Tipografía de Precios */
.price-amount {
    font-family: var(--serif);
    font-size: 3.5rem;
    color: var(--black);
    line-height: 1;
    margin: 15px 0 5px;
}
.price-desc {
    color: var(--gold);
    font-style: italic;
    font-family: var(--serif);
    margin-bottom: 30px;
}

/* Lista de Características */
.package-features { list-style: none; margin-bottom: 40px; }
.package-features li {
    font-size: 0.95rem;
    color: var(--grey-text);
    padding: 12px 0;
    border-bottom: 1px solid #f4f4f4;
}
.package-features li:last-child { border-bottom: none; }
.package-features.compact li { font-size: 0.85rem; padding: 5px 0; border: none; }

/* Layout Flexible interno para tarjetas horizontales */
.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}

/* Botón sólido adaptado */
.btn-primary {
    display: block;
    text-align: center;
    padding: 18px 20px;
    background-color: var(--black);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    text-decoration: none;
    transition: 0.3s ease;
}
.btn-primary:hover { background-color: var(--gold); color: var(--white) !important; }

/* Botón Secundario (Con Borde / Outline) */
.btn-outline {
    display: block;
    text-align: center;
    padding: 16px 20px;
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black); /* Borde elegante oscuro */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover { 
    background-color: var(--black); 
    color: var(--white) !important; 
}

/* Estilos de Props (A la carte) */
.addons-grid { display: flex; flex-direction: column; gap: 20px; }
.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
}
.addon-item h4 { font-weight: 400; font-size: 1rem; color: var(--black); }
.addon-item .price { color: var(--gold); font-family: var(--serif); font-size: 1.3rem; font-style: italic; }

/* Responsive para Paquetes */
@media (max-width: 990px) {
    .pricing-grid.columns-3 { grid-template-columns: 1fr; }
    .pricing-card { padding: 40px 30px; }
    .addon-item { flex-direction: column; align-items: flex-start; gap: 5px; }
}
/* =========================================
   CALCULADORA DE COBERTURA (TIMELINE TOOL)
========================================= */

.calculator-page .navbar { background: var(--white); padding: 15px 5%; box-shadow: 0 4px 30px rgba(0,0,0,0.02); }
.calculator-page .nav-links a { color: var(--black); }
.calculator-page .logoImg { filter: brightness(0); }

.calculator-wrapper {
    background-color: var(--soft-grey);
    padding: 60px 0 120px;
}

.calc-split {
    display: grid;
    grid-template-columns: 55% 40%;
    gap: 5%;
    align-items: flex-start;
}

/* Lado Izquierdo (Formulario) */
.calc-form {
    background: var(--white);
    padding: 60px;
    border: 1px solid #eaeaea;
}

.calc-group {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f4f4f4;
}
.calc-group:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.calc-group h3 { font-size: 2rem; margin-bottom: 15px; }
.calc-desc { color: var(--grey-text); font-size: 1.05rem; margin-bottom: 25px; line-height: 1.6; }

/* Botones de Selección Estilo Radio */
.radio-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    padding: 15px 20px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.radio-btn:hover { border-color: var(--gold); }

.radio-btn input[type="radio"] {
    accent-color: var(--gold);
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
}

/* Selector desplegable estilizado */
.calc-select {
    width: 100%;
    padding: 18px 20px;
    font-family: var(--sans);
    font-size: 1.05rem;
    border: 1px solid #ddd;
    background: var(--white);
    outline: none;
    cursor: pointer;
}
.calc-select:focus { border-color: var(--gold); }

/* Lógica de Ocultar/Mostrar cajas */
.conditional-box { display: none; }
.conditional-box.active { display: block; animation: fadeIn 0.5s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Textos bloqueados (Ceremonia) */
.locked-options p {
    color: var(--gold);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Lado Derecho (Recibo en Vivo) */
.result-sticky-box {
    position: sticky;
    top: 120px;
    background: var(--black);
    color: var(--white);
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.result-sticky-box h2 { font-size: 2.5rem; margin: 10px 0 30px; }

.result-number {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.result-number #totalHours { font-family: var(--serif); font-size: 6rem; line-height: 0.8; color: var(--gold); }
.hours-text { font-size: 1.5rem; text-transform: uppercase; letter-spacing: 3px; margin-left: 10px; }

/* Desglose de horas */
.breakdown .b-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    font-size: 0.95rem;
    color: #ccc;
}

.recommendation-box {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-left: 3px solid var(--gold);
}
.recommendation-box h4 { font-size: 1.5rem; margin: 10px 0; }
.recommendation-box p { font-size: 0.9rem; color: #bbb; line-height: 1.6; }

/* Responsive Calculadora */
@media (max-width: 990px) {
    .calc-split { grid-template-columns: 1fr; gap: 40px; }
    .result-sticky-box { position: relative; top: 0; padding: 40px 25px; }
    .calc-form { padding: 40px 20px; }
}
/* =========================================
   CTA CALCULADORA TIMELINE (BANER GLOBAL)
========================================= */
.timeline-cta-section {
    padding: 80px 5%;
    background-color: var(--white); 
    display: flex;
    justify-content: center;
}

.timeline-cta-box {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 50px;
    text-align: center;
    max-width: 1100px;
    width: 100%;
    border-bottom: 4px solid var(--gold);
    transition: transform 0.4s ease;
}

.timeline-cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.timeline-cta-box h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.timeline-cta-box p {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Efecto hover inverso para el botón blanco sobre fondo negro */
.timeline-cta-box .btn-primary:hover {
    background-color: var(--gold) !important;
    color: var(--white) !important;
}

/* Responsive para el CTA */
@media (max-width: 768px) {
    .timeline-cta-box {
        padding: 50px 20px;
    }
    .timeline-cta-box p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}