/* =============================================== */
/* 1. CONFIGURAÇÕES GLOBAIS E RESET                */
/* =============================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Athelas", "Lora", serif; /* Adicionado Lora como fallback */
    background-color: rgb(255, 248, 241);
    color: #333;
    overflow-x: hidden;
    position: relative;
}

/* =============================================== */
/* 2. CABEÇALHO E NAVEGAÇÃO                        */
/* =============================================== */

/* --- Barra Superior --- */
.shipping-bar {
    background-color: #5E8C61;
    color: white;
    text-align: center;
    padding: 8px 10px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 1001;
}

/* --- Cabeçalho Principal --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background-color: rgb(255, 248, 241);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    letter-spacing: -1px;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.menu-icon,
.whatsapp-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

/* --- Menu Desktop (escondido no mobile) --- */
.desktop-nav {
    display: none;
}

/* --- Menu Mobile --- */
.mobile-nav {
    display: none;
    position: fixed;           /* <-- MUDANÇA PRINCIPAL: Prende o menu na tela */
    top: 86px;                 /* Altura exata do seu cabeçalho fixo (barra de frete + menu) */
    left: 0;
    width: 100%;
    height: calc(40vh - 86px);/* Faz o menu ocupar o restante da altura da tela */
    background-color: #5E8C61;
    z-index: 999;              /* Coloca o menu logo abaixo do cabeçalho */
    overflow-y: auto;          /* Adiciona uma barra de rolagem se houver muitos links */
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px 0;
}

.mobile-nav ul li a {
    display: block;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.mobile-nav ul li a:hover {
    background-color: #38533a;
}

/* =============================================== */
/* 3. SEÇÃO PRINCIPAL (HERO BANNER)                */
/* =============================================== */

.hero-section {
    background-image: url('/assets/Gemini_Generated_Image_xu5ognxu5ognxu5o.png');
    background-size: cover;
    background-position: center;
    height: calc(100vh - 91px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 20px;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    color: white;
}

.hero-text {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end; /* Alterado para end para empurrar para baixo */
    margin-bottom: 20px;
    flex-direction: column;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-text h2 {
    font-family: 'Lora', serif;
    font-size: 2.9rem;
    font-weight: 400;
}

.hero-text .highlight-text {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 2.3rem;
    margin-top: -15px;
    font-weight: 400;
}

.hero-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    max-width: 400px;
    margin: 5px auto 0;
    line-height: 1.5;
}

.cta-button {
    background-color: #E67E22;
    color: white;
    border: none;
    padding: 15px 80px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    max-width: 350px;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #38533a;
}

/* =============================================== */
/* 4. COMPONENTES E SEÇÕES DE CONTEÚDO             */
/* =============================================== */

/* --- Títulos Padrão de Seção --- */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
}

/* --- Seção "Você Cuida?" (Product Feature) --- */
.product-feature {
    padding: 40px 20px;
}

.feature-card {
    border-radius: 8px;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.feature-card img {
    width: 100%;
    display: block;
}

.card-content {
    padding: 30px;
}

.card-content h2 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    line-height: 1.2;
    color: #333;
    margin-bottom: 15px;
}

.card-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.feature-button {
    background-color: #E67E22;
    color: white;
    border: none;
    padding: 18px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.feature-button:hover {
    background-color: #38533a;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rating .stars {
    color: #f5b942;
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* --- Seção de Vantagens (Ícones em Grade) --- */
.features-section {
    padding: 50px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    max-width: 400px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    margin-bottom: 15px;
    color: #888;
}

.feature-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    font-weight: 600;
}

/* --- Seção de Seleção de Produtos --- */
.product-selection {
    background-color: #5E8C61;
    padding: 50px 20px;
}

.product-selection .section-header {
    color: #fcf8f2;
}

.product-selection .section-header .underline {
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.product-grid .product-card:nth-child(3) {
    grid-column: 1 / -1;
}

.product-card {
    background-color: #fcf8f2;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card img {
    width: 100%;
    display: block;
    background-color: #fff;
}

.product-info {
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    flex-grow: 1;
}

.price-wrapper {
    margin-bottom: 15px;
}

.old-price {
    font-size: 0.9rem;
    color: #888;
    text-decoration: line-through;
    margin-right: 8px;
}

.new-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.rating-large {
    color: #f5b942;
    margin-bottom: 10px;
}

.rating-large .review-count {
    color: #666;
    font-size: 0.9rem;
    margin-left: 5px;
}

.whatsapp-button {
    background-color: #E67E22;
    color: white;
    text-decoration: none;
    display: block;
    padding: 12px 10px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

#product-component-1762043944173 {
    margin: 0 auto;
}

#product-component-1762044310604 {
    margin: 0 auto;
}

#product-component-1762044405237 {
    margin: 0 auto;
}

.whatsapp-button:hover {
    background-color: #38533a;
}

/* --- Seções de Carrossel (Depoimentos e Vídeos) --- */
.testimonials-section, .reviews-section {
    padding: 50px 15px 0px 10px;
}

.testimonials-header, .reviews-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.testimonials-header h2 {
    font-size: 2.2rem;
}

.testimonials-header .highlight-underline {
    text-decoration: underline;
    text-decoration-color: #5E8C61;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.reviews-section {
    background-color: #5E8C61;
}

.reviews-header {
    color: #fcf8f2;
}

.carousel-container, .reviews-carousel-container {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-left: 20px;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar,
.reviews-carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track, .reviews-carousel-track {
    display: flex;
    gap: 10px;
}

.carousel-item {
    flex: 0 0 50vw;
    max-width: 170px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    aspect-ratio: 9 / 16;
}

.carousel-item video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.carousel-item:last-child, .review-card:last-child {
    margin-right: 20px;
}

.review-card {
    flex: 0 0 85vw;
    max-width: 340px;
    background-color: #fcf8f2;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quotation-mark {
    font-family: 'Lora', serif;
    font-size: 5rem;
    font-weight: bold;
    color: #100f0f;
    line-height: 0.5;
    margin-bottom: 15px;
}

.review-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    flex-grow: 1;
    margin-bottom: 20px;
}

.rating-stars {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.reviewer-info strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #333;
}

.reviewer-info span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

/* --- Seção CTA Final --- */
.final-cta-section {
    padding: 40px 20px;
}

.cta-card {
    max-width: 400px;
    margin: 0 auto;
    background-color: #5E8C61;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-content {
    padding: 30px 25px;
    color: #fcf8f2;
}

.cta-content h3 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 20px;
}

.cta-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(252, 248, 242, 0.8);
    margin-bottom: 30px;
}

.cta-button-final {
    display: block;
    background-color: #E67E22;
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    text-align: center;
    padding: 18px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button-final:hover {
    background-color: #5E8C61;
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Seção de Newsletter --- */
.newsletter-section {
    padding: 50px 20px;
    text-align: center;
}

.newsletter-header h2 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.newsletter-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.form-container {
    background-color: #5E8C61;
    padding: 25px;
    border-radius: 15px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    display: flex;
    align-items: center;
}

.input-group input {
    width: 100%;
    padding: 18px 18px 18px 50px;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #333;
}

.input-group input::placeholder {
    color: #999;
}

.submit-button {
    width: 100%;
    background-color: #E67E22;
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #515a4e;
}

/* --- Seção de FAQ --- */
.faq-section {
    background-color: #fcf8f2;
    padding: 50px 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h4 {
    color: #515a4e;
}

.faq-header h2 {
    color: #333;
}

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

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #515a4e;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 10px 20px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Ajuste se a resposta for muito longa */
    transition: max-height 0.5s ease-in;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* =============================================== */
/* 5. RODAPÉ                                       */
/* =============================================== */

.main-footer {
    background-color: #2b2b2b;
    color: #f0f0f0;
    padding: 50px 20px 30px 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.footer-logo {
    font-family: "Athelas", serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #a0a0a0;
    margin-bottom: 15px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
}

.footer-nav ul li a:hover {
    text-decoration: underline;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 250px;
    margin: 0 auto;
}

.payment-icons img {
    height: 25px;
    background-color: white;
    border-radius: 4px;
    padding: 4px 8px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info a {
    color: #f0f0f0;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 40px;
}

.footer-bottom hr {
    border: 0;
    height: 1px;
    background-color: #444;
    margin-bottom: 30px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #a0a0a0;
    margin: 5px 0;
}

.footer-bottom p strong {
    color: #f0f0f0;
    font-weight: 600;
}

.link-dev {
    text-decoration: none;
    color: #fff;
}

/* =============================================== */
/* 6. ESTILOS PARA DESKTOP (A PARTIR DE 1024px)    */
/* =============================================== */
@media (max-width: 1023px) {
    .shipping-bar {
        position: sticky;
        top: 0;
        z-index: 1001;
    }

    .main-header {
        position: sticky;
        top: 28px; /* Altura aproximada da barra de frete */
        z-index: 1000;
    }
}
@media (min-width: 1024px) {

    /* --- Container Geral --- */
    .page-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* --- Cabeçalho Desktop --- */
    .main-header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 15px 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    /* --- Banner Desktop (Hero Section) --- */
    .hero-section {
        height: 550px;
        /* Caminho para a sua imagem específica de desktop */
        background-image: url('/assets/banner-desketp.webp');
        /* Ajuste a posição para enquadrar a imagem perfeitamente */
        background-position: center center;
    }

    .menu-icon {
        display: none;
    }

    .logo {
        grid-column: 1;
        justify-self: start;
    }

    .desktop-nav {
        display: block;
        grid-column: 2;
        justify-self: center;
    }

    .whatsapp-icon {
        grid-column: 3;
        justify-self: end;
    }

    .desktop-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: inline-flex;
        gap: 40px;
    }

    .desktop-nav ul li a {
        color: #333;
        text-decoration: none;
        font-weight: bold;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

    .desktop-nav ul li a:hover {
        color: #515a4e;
    }

    /* --- Seções de Conteúdo Desktop --- */
    .hero-section {
        height: 600px;
    }

    .hero-text h2,
    .hero-text .highlight-text {
        font-size: 4rem;
    }

    .hero-text p {
        max-width: 500px;
        font-size: 1.1rem;
    }
    
    .product-feature .feature-card {
        display: flex;
        align-items: center;
        gap: 40px;
        text-align: left;
        max-width: 100%;
    }
    
    .feature-card img {
        max-width: 500px;
        flex: 1;
    }
    
    .card-content {
        flex: 1;
    }

    .card-content h2 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: none;
    }

    .product-selection .product-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .product-grid .product-card:nth-child(3) {
        grid-column: auto;
    }
    
    .carousel-container,
    .reviews-carousel-container {
        overflow-x: hidden;
        padding-left: 0;
    }
    
    .carousel-track, .reviews-carousel-track {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
        justify-content: center;
    }

    .final-cta-section .cta-card {
        display: flex;
        max-width: 100%;
    }

    .cta-content, .cta-image {
        flex: 1;
    }

    .cta-content {
        padding: 60px;
        text-align: left;
    }

    .cta-button-final {
        display: inline-block;
        width: auto;
        padding: 18px 50px;
    }

    .newsletter-section .form-container {
        max-width: 500px;
    }

    /* --- Rodapé Desktop --- */
    .main-footer {
        display: flex;
    }
    .footer-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
    }
}