/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #312324;
}

/* Header principal */
.hero-header {
    background: linear-gradient(135deg, #923764, #b8457a);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.hero-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3px;
    opacity: 0.9;
}

/* Seções principais */
.section {
    padding: 65px 20px;
}

.section-light {
    background: #fdf3f8;
}

.section-white {
    background: white;
}

.section-gray {
    background: #f5f5f5;
}

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

/* Títulos */
.section-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: #312324;
}

.section-title-large {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: #312324;
}

/* Lista de benefícios */
.benefits-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 15px;
}

.check-icon {
    color: #ff66c4;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.x-icon {
    color: #ff66c4;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.arrow-icon {
    color: #00bf63;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.dot-icon {
    color: #00bf63;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 18px;
    font-weight: 500;
    color: #312324;
}

/* Botões */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #923764;
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    margin: 42px auto 0;
    display: block;
    width: fit-content;
}

.cta-button:hover {
    background: #ff66c4;
    color: #fdf3f8;
}

.cta-button svg {
    height: 22px;
    width: 22px;
}

/* Grid de depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-image {
    width: 273px;
    height: 273px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #312324;
}

.testimonial-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #312324;
}

/* Seção de imagens das mulheres */
.women-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 60px 0;
}

.women-images img {
    width: 90%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
}

/* Seção do produto */
.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.product-image {
    max-width: 100%;
    height: auto;
}

.product-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #312324;
}

.product-content p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #312324;
}

/* Seção de receita */
.recipe-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.recipe-intro {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #312324;
}

.recipe-instructions {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 20px;
    color: #312324;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 0;
}

.faq-question {
    background: rgba(253, 226, 185, 0.35);
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #312324;
}

.faq-answer {
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
    background: white;
    display: none;
    color: #312324;
}

.faq-answer.active {
    display: block;
}

/* Footer */
.footer {
    background: #f8f8f8;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.footer p {
    margin-bottom: 10px;
}

.footer a {
    color: #007bff;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 25px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 16px;
    }

    .section-title-large {
        font-size: 25px;
    }

    .product-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .women-images {
        flex-direction: column;
        gap: 15px;
    }

    .women-images img {
        max-width: 250px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-image {
        width: 200px;
        height: 200px;
    }

    .cta-button {
        width: 93%;
        font-size: 15px;
    }

    .benefit-text {
        font-size: 14px;
    }
}