/* CSS Reset e Variáveis Globais */
:root {
    --primary: #8C5220; /* Chocolate quente */
    --primary-dark: #5C3A21; /* Chocolate amargo */
    --primary-light: #B0703C; /* Caramelo */
    --accent: #FF9F1C; /* Dourado / Laranja vibrante */
    --bg-light: #FAF8F5; /* Creme */
    --bg-dark: #2C1E16; /* Fundo escuro premium */
    --text-main: #333333;
    --text-light: #F4F4F4;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Tipografia */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
}

h1 strong {
    color: var(--accent);
    background: linear-gradient(120deg, var(--accent) 0%, #FFBF69 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(140, 82, 32, 0.1);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #F0E6D2 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(140, 82, 32, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(140, 82, 32, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Animações Flutuante e Pulso */
.floating {
    animation: float 6s ease-in-out infinite;
}

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

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 159, 28, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 159, 28, 0); }
}

/* Botões CTA */
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--accent) 0%, #E88300 100%);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 159, 28, 0.4);
}

.cta-button span {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    margin-top: 5px;
    opacity: 0.9;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 159, 28, 0.6);
}

.large {
    font-size: 1.5rem;
    padding: 25px 60px;
    width: 100%;
}

.secure-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #777;
    font-weight: 500;
}

/* Problem Solution Section */
.problem-solution {
    padding: 80px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}

.problem-solution h2 {
    color: var(--accent);
    font-size: 2.8rem;
    margin-bottom: 50px;
}

.problem-solution em {
    font-style: italic;
    color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05); /* Escuro glass */
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

.feature-card p {
    color: #DDD;
}

/* What you get */
.what-you-get {
    padding: 100px 0;
}

.what-you-get h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.benefit-item.reverse {
    flex-direction: row-reverse;
}

.benefit-img {
    width: 45%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.benefit-text {
    width: 55%;
}

.benefit-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.benefit-text p {
    font-size: 1.2rem;
    color: #555;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1.5" fill="rgba(140,82,32,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.offer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
}

.offer h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.offer p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.price-box {
    background-color: var(--primary-dark);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.old-price {
    display: block;
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 5px;
}

.new-price {
    display: block;
    font-size: 2rem;
    color: var(--accent);
}

.new-price strong {
    font-size: 4rem;
}

.price-box p {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.guarantee-icon {
    font-size: 2.5rem;
}

.guarantee p {
    margin-bottom: 0;
    font-size: 1.1rem;
    text-align: left;
}

/* Footer */
footer {
    background-color: #1A110A;
    color: #888;
    text-align: center;
    padding: 40px 20px;
}

footer p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsividade */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero h1 { font-size: 2.5rem; }
    
    .hero-image-container {
        margin-top: 50px;
    }
    
    .benefit-item, .benefit-item.reverse {
        flex-direction: column;
    }
    
    .benefit-img, .benefit-text {
        width: 100%;
    }
    
    .benefit-text {
        text-align: center;
        margin-top: 30px;
    }
    
    .offer-container {
        padding: 40px 20px;
    }
}
