/* 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-white: #FFFFFF;
    --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, h4 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
}

h1 strong {
    color: var(--accent);
}

/* 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: 90vh;
}

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

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

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

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

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

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    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.5); }
    70% { box-shadow: 0 0 0 15px rgba(255, 159, 28, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 159, 28, 0); }
}

/* Botões CTA */
.cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 159, 28, 0.3);
}

.cta-button:hover {
    background: #E88300;
    transform: translateY(-2px);
}

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

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

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

/* Você recebe hoje (Checklist) */
.what-you-get-list {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.what-you-get-list h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.check-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.check-list li {
    font-size: 1.2rem;
    padding: 15px 0;
    border-bottom: 1px solid #EAEAEA;
    display: flex;
    align-items: center;
    color: #444;
}

.check-list li:last-child {
    border-bottom: none;
}

.icon-check {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 15px;
}

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

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

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

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

.feature-card {
    padding: 40px 30px;
    border-radius: 12px;
    background: var(--bg-white);
    border: 1px solid #EAEAEA;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    color: var(--text-main);
    text-align: center;
}

.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: #555;
    font-size: 1.1rem;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.trust-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.trust-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.trust-image {
    flex: 1;
}

.round-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.guarantee-box {
    display: flex;
    align-items: center;
    background: #FFF9F0;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--accent);
}

.guarantee-icon {
    font-size: 2.5rem;
    margin-right: 15px;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background-color: var(--bg-white);
    border-top: 1px solid #EAEAEA;
}

.offer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 16px;
    background: var(--bg-light);
    text-align: center;
    border: 1px solid #EAEAEA;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.offer p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.price-box {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid var(--accent);
}

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

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

.new-price strong {
    font-size: 3.5rem;
    color: var(--primary-dark);
}

.price-box p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.faq-item {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.faq-item p {
    font-size: 1rem;
    color: #666;
}

/* 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;
}

/* --- NOVOS ESTILOS PARA PAGINA DESEJO --- */

/* Badge */
.badge {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* O que você aprende (Grid) */
.what-you-learn {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.what-you-learn h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Hero Montage */
.hero-montage {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 400px;
    margin: 0 auto;
}
.montage-img {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border: 4px solid var(--bg-white);
}
.img1 { /* Brigadeiro */
    width: 250px;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.img2 { /* Bolo */
    width: 180px;
    z-index: 2;
    left: 0;
    top: 20px;
    transform: rotate(-8deg);
}
.img3 { /* Tortinha */
    width: 180px;
    z-index: 1;
    right: 0;
    top: 40px;
    transform: rotate(8deg);
}

/* Problem solution updates */
.problem-text {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.2rem;
    line-height: 1.7;
}
.solution-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-main);
    text-align: left;
}
.solution-box h3 {
    margin-bottom: 25px;
    text-align: center;
}
.solution-list {
    list-style: none;
    columns: 2;
    gap: 20px;
}
.solution-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}
.solution-list .icon-check {
    margin-top: 2px;
}
@media (max-width: 768px) {
    .solution-list { columns: 1; }
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}
.product-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}
.product-block:last-child {
    margin-bottom: 0;
}
.product-block.reverse {
    flex-direction: row-reverse;
}
.product-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.product-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.product-text {
    flex: 1;
}
.product-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.product-text p {
    font-size: 1.2rem;
    color: #555;
}

/* Guarantee specific updates */
.guarantee-section {
    text-align: center;
}
.guarantee-center h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.guarantee-center p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
}
.centered-box {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* Responsividade */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero h1 { font-size: 2.5rem; }
    
    .hero-image-container {
        margin-top: 40px;
        width: 100%;
    }

    .hero-montage {
        height: 350px;
    }
    .img1 { width: 220px; }
    .img2 { width: 160px; top: 10px; }
    .img3 { width: 160px; top: 20px; }
    
    .trust-container {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-box {
        text-align: left;
    }
    
    .offer-container {
        padding: 30px 20px;
    }
    
    .new-price strong {
        font-size: 2.8rem;
    }

    .product-block {
        flex-direction: column;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .product-block.reverse {
        flex-direction: column;
    }
}

/* TESTIMONIALS */
.testimonials {
    padding: 80px 0;
    background-color: var(--primary-dark);
    color: var(--text-light);
    text-align: center;
}
.testimonials h2 {
    color: var(--bg-light);
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    text-align: left;
    padding: 30px;
    border-radius: 12px;
    background: var(--bg-white);
    border: 1px solid #EAEAEA;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    color: var(--text-main);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}
.testimonial-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--primary-dark);
}
.testimonial-info .stars {
    font-size: 0.9rem;
}
.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}
