﻿/* @import movido a head.php para rendimiento */
/* @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap'); */

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #161616;
    --text-main: #F5F5F7;
    --text-muted: #a0a0a0;
    
    /* Dorado Maestro */
    --accent-gold: linear-gradient(135deg, #D4AF37 0%, #F2D388 50%, #996515 100%);
    --color-gold: #D4AF37; /* Fallback solido */
    
    --danger: #9e2a2b;
    --success: #335c67;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

/* Utilities */
.text-gold { 
    background: var(--accent-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    color: var(--color-gold); /* Fallback */
}
.text-ivory { color: var(--text-main); }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-dark { background-color: var(--bg-dark); }
.section-secondary { background-color: var(--bg-dark); }

/* Buttons */
.btn-gold {
    display: inline-block;
    background: var(--accent-gold);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212,175,55,0.5);
    opacity: 0.95;
}

.btn-outline {
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #F2D388;
    box-shadow: 0 0 15px rgba(212,175,55,0.2);
}

/* Cards */
.card {
    background-color: var(--bg-card);
    border: 1px solid rgba(212,175,55,0.2);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Typography specifics */
.pre-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--accent-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 600;
    color: var(--color-gold);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-main);
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Bullet Points */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    color: var(--text-main);
}

.check-list li::before {
    content: "✓";
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* Grid & Layout */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* Pricing */
.price-tag {
    font-family: 'Libre Baskerville', serif;
    font-size: 4rem;
    background: var(--accent-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: inline-block;
    color: var(--color-gold);
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.offer-box {
    background-color: var(--bg-card);
    border: 1px solid rgba(212,175,55,0.2);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    text-align: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.offer-box::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: var(--accent-gold);
}

/* Order Bump Box */
.bump-box {
    border: 1px dashed rgba(212, 175, 55, 0.4);
    background-color: rgba(212, 175, 55, 0.03);
    padding: 30px;
    margin-top: 40px;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section { padding: 80px 0; }
    .grid-2 { grid-template-columns: 1fr; gap: 50px; }
}

/* --- HERO & NAVBAR UPDATES (New Image Replication) --- */

/* Navbar */
.navbar-breakup {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px; /* Match hero-container */
    padding: 2.5rem 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    border: none;
    margin-left: 0;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

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

.btn-nav {
    border: 1px solid var(--color-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem !important;

}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Space for navbar */
    overflow: hidden;
    /* Default background if image fails */
    background-color: #0a0a0a;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 1; /* Full visibility */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Completely transparent */
    z-index: 1;
    pointer-events: none; /* Allow clicks to pass through if necessary */
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Hero Typography from Image */
.hero-pre-line {
    width: 100px;
    height: 2px;
    background: var(--accent-gold);
    margin-bottom: 20px;
}

.hero-title-gold {
    font-family: 'Libre Baskerville', serif; /* Or the font used in image, likely serif */
    font-size: 2.5rem;
    color: var(--color-gold);  
    background: var(--accent-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    display: block;
    margin-bottom: 15px;
}

.hero-title-main {
    font-family: 'Lato', sans-serif;
    font-size: 4rem; /* Big impact */
    font-weight: 300; /* Thin elegance */
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 30px;
    display: block;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Hero Visual (Right side) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end; /* Align to right */
    align-items: center; /* Center vertically */
    padding-right: 50px; /* Breathe from edge */
}

.hero-visual img.main-figure {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(212,175,55,0.2));
    animation: float 6s ease-in-out infinite;
}

.hero-visual .tablet-mockup {
    /* Transform removed for flat mockups */
    border-radius: 0;
    overflow: visible;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links { display: none; } /* Simplified for mobile for now */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 50px;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, #0a0a0a 0%, rgba(10,10,10,0.9) 100%);
    }

    .hero-pre-line { margin: 0 auto 20px auto; }
    .hero-title-main { font-size: 3rem; }
    .hero-desc { margin: 0 auto 40px auto; }
}

/* FIX: Legibilidad de etiquetas de bonos y fases */
.card h4.text-gold {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: #F2D388 !important; /* Dorado solido claro high-contrast */
    text-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
    margin-bottom: 5px;
}


/* === NUEVOS ELEMENTOS VISUALES === */

/* Parallax Breaker */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0;
    position: relative;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.75); /* Oscuro para contraste */
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.parallax-quote {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-style: italic;
    color: #F5F5F7;
    margin-bottom: 0;
    line-height: 1.4;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

/* Bonus Icons */
.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    filter: grayscale(100%) sepia(100%) hue-rotate(5deg) saturate(500%) contrast(0.8); /* Efecto dorado */
}

/* Testimonial New Layout */
.testimonial-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: #222;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-family: "Playfair Display", serif;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

