:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #3D6C50;
    --light-gray: #f4f4f4;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 10px; }

p { margin-bottom: 15px; }

.accent-text { color: var(--accent-color); }
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
    /* ANIMAÇÃO DE PULSAÇÃO */
    animation: pulse 2s infinite;
}

/* ANIMAÇÃO DE PULSAÇÃO */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(61, 108, 80, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(61, 108, 80, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(61, 108, 80, 0.3);
    }
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(61, 108, 80, 0.3);
}

.section-padding {
    padding: 80px 0;
}

/* Hero Section */
.hero-section {
    background-color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px auto 30px auto;
    display: block;
}
.hero-section p {
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.25rem;
    font-weight: 500;
}
.price-highlight {
    color: var(--accent-color);
    font-weight: 700;
}

/* Pain Points Section - COM ÍCONES */
.pain-points {
    background-color: var(--light-gray);
}
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}
.pain-point-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pain-point-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(61, 108, 80, 0.1);
    border-radius: 50%;
}
.pain-point-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--accent-color);
}
.pain-point-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Solution Section */
.solution-section {
    text-align: center;
}
.solution-section h2 {
    font-size: 2rem;
    text-align: center;
}
.solution-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    text-align: center;
}
.solution-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}

/* Learn Section */
.learn-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}
.learn-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%233D6C50" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* ESTILO DA ROVER/BOX */
.material-features, .learn-features-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.material-features h3, .learn-features-box h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}
.features-grid, .learn-list-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}
.features-grid li, .learn-list-new li {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}
.features-grid li::before, .learn-list-new li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: 800;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* NOVAS GRID DE IMAGENS */
.saladas-grid, .bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.salada-item, .bonus-item {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.salada-item h3, .bonus-item h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.salada-item img, .bonus-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Carousel */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.carousel-slide img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
}
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 5px;
    z-index: 10;
}
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

/* Testimonial Carousel - MODIFICADO */
.testimonial-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.testimonial-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover; /* MUDADO PARA cover */
    border-radius: 10px;
    margin-bottom: 15px;
}
.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}


/* Offer Section - MODIFICADO */
.offer-section {
    background-color: var(--light-gray);
    text-align: center;
}
.offer-content {
    display: flex;
    justify-content: center;
}
.offer-list {
    list-style: none;
    text-align: center; /* ALTERADO PARA CENTER */
}
.offer-list li {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.offer-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
}
.pricing-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    text-align: center; /* GARANTE QUE TUDO FIQUE CENTRALIZADO */
}
.pricing-box .total-value {
    text-decoration: line-through;
    color: #888;
}
.pricing-box .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 10px 0;
}
.pricing-box .installments {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.guarantee-box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.guarantee-box h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}
.guarantee-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
}
.about-section img {
    width: 100%;
    border-radius: 10px;
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}
.faq-question.active::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 0 0 0;
}
.faq-answer p {
    padding-bottom: 20px;
}
.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--light-gray);
    font-size: 0.9rem;
}
footer .legal {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero-section h1 { font-size: 2.5rem; }
    .solution-section,
    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .offer-list { text-align: center; }
    .material-features, .learn-features-box { padding: 30px 20px; }
    .saladas-grid, .bonus-grid { grid-template-columns: 1fr; }
    .pricing-box {
        padding: 20px;
    }
}