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

:root {
    --cream: #E8D5B7;
    --dark-green: #3D4A2C;
    --gold: #B8935A;
    --black: #2C2416;
    --white: #FFFFFF;
}

body {
    font-family: 'Lora', serif;
    color: var(--black);
    background: var(--cream);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - COMERCIAL */
.hero {
    min-height: 95vh;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '$50';
    position: absolute;
    font-size: 25rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
}

.title-small {
    display: block;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.title-big {
    display: block;
    font-size: 4.5rem;
    color: var(--cream);
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 550px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--black);
    padding: 22px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 25px rgba(184, 147, 90, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 147, 90, 0.6);
    background: #C9A56A;
}

.cta-icon {
    font-size: 1.5rem;
}

.hero-note {
    margin-top: 15px;
    color: var(--cream);
    font-size: 0.95rem;
    opacity: 0.8;
}

.hero-book {
    display: flex;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

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

.book-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    box-shadow: 0 25px 70px rgba(0,0,0,0.6);
    border: 6px solid var(--gold);
    transition: transform 0.3s ease;
}

.book-image:hover {
    transform: scale(1.03);
}

/* Video Section */
.video-section {
    padding: 100px 20px;
    background: var(--cream);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 50px;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 6px solid var(--gold);
    box-shadow: 0 20px 60px rgba(184, 147, 90, 0.3);
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Benefits Section */
.benefits {
    padding: 100px 20px;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--cream);
    border: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(184, 147, 90, 0.3);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--black);
}

/* Quote Section */
.quote-section {
    padding: 80px 20px;
    background: var(--dark-green);
    text-align: center;
}

.quote {
    max-width: 800px;
    margin: 0 auto;
}

.quote p {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1.4;
}

/* CTA Final */
.cta-final {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-green) 100%);
}

.cta-final-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-final-book img {
    width: 100%;
    max-width: 380px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
    border: 6px solid var(--gold);
}

.cta-final-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.cta-final-description {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 28px 60px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 35px rgba(184, 147, 90, 0.5);
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(184, 147, 90, 0.7);
    background: #C9A56A;
}

.cta-final-note {
    margin-top: 20px;
    color: var(--cream);
    font-size: 1.05rem;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: var(--black);
    text-align: center;
    color: var(--cream);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .title-big {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .book-image {
        max-width: 320px;
    }
    
    .cta-final-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-final-book img {
        margin: 0 auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .title-small {
        font-size: 1.3rem;
    }
    
    .title-big {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .quote p {
        font-size: 2rem;
    }
    
    .cta-final-text h2 {
        font-size: 2.5rem;
    }
}
