/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CONFIGURAÇÃO GLOBAL */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.6;
}

.top-bar {
    background-color: #4b1f0e;
    color: #ffffff;
    font-size: 16px;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.top-bar-item .icon {
    font-size: 14px;
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

.site-header {
    background-color: #ffffff;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header-cta {
    background-color: #4b1f0e;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

/* Estilização da Seção */
.hero-benefits {
    background-color: #fdf5e6; /* Tom de creme do fundo */
    padding: 60px 20px;
    font-family: 'Arial', sans-serif; /* Use a fonte definida no seu projeto */
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1100px;
    width: 100%;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* Título à esquerda */
.main-title {
    flex: 1;
    min-width: 300px;
    color: #4a2c1a; /* Marrom escuro */
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: bold;
    margin: 0;
}

/* Área da direita (Texto + Botão) */
.cta-area {
    flex: 1;
    min-width: 300px;
}

.description {
    color: #4a2c1a; /* Azul do texto selecionado no print */
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Botão Laranja */
.btn-primary {
    display: inline-block;
    background-color: #f28d21; /* Cor laranja do botão */
    color: #ffffff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px; /* Bordas arredondadas */
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background-color: #e07b10;
}

/* Ajuste Responsivo para Celular */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
        text-align: center;
    }
    .cta-area {
        text-align: center;
    }
}

/* --- INÍCIO DO CARROSSEL INFINITO --- */

.image-carousel-continuous {
    width: 100%;
    overflow: hidden; /* Esconde o que sai da tela */
    background: #ffffff;
    padding: 40px 0;
}

.carousel-viewport {
    display: flex;
    width: 100%;
}

.carousel-track-infinite {
    display: flex;
    /* Cálculo: 250px (largura) * 8 (total de itens) = 2000px */
    width: 2000px; 
    animation: scroll-infinite 20s linear infinite;
}

/* Pausa suave ao passar o mouse */
.carousel-track-infinite:hover {
    animation-play-state: paused;
}

.carousel-item {
    width: 250px; /* Largura de cada imagem */
    padding: 0 15px; /* Espaçamento entre elas */
    flex-shrink: 0;
}

.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* A Animação Mágica */
@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move exatamente a metade do trilho (4 itens de 250px = 1000px) */
        transform: translateX(-1000px);
    }
}

/* --- FIM DO CARROSSEL --- */

/* Container dos Selos */
.product-badges {
    background-color: #fdf5e6; /* Cor bege de fundo da seção */
    padding: 20px 0;
    width: 100%;
}

.container-badges {
    max-width: 1200px;
    margin: 0 auto;
}

.badge-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    padding: 0;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Aqui controlamos o tamanho da imagem que você baixou */
.badge-img {
    width: 44px;  /* Largura que estava no nome do seu arquivo */
    height: 44px; /* Altura que estava no nome do seu arquivo */
    object-fit: contain;
    display: block;
}

.badge-item span {
    color: #4a2c1a;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
}

/* Ajuste para celular */
@media (max-width: 768px) {
    .badge-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
    }
}

/* Configuração da Seção */
.product-details {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Cabeçalho */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    color: #4a2c1a;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-header p {
    color: #666;
    line-height: 1.6;
}

/* Grid de Conteúdo */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas iguais */
    gap: 40px;
    align-items: center;
}

/* Cards de Benefícios */
.benefits-column {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Sub-grid para 2x2 */
    gap: 30px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-icon {
    font-size: 24px;
    color: #4a2c1a;
}

.benefit-text h3 {
    font-size: 1.2rem;
    color: #4a2c1a;
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Imagem do Produto */
.product-image-container {
    text-align: center;
}

.main-product-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Botão de Ação */
.bottom-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-primary {
    display: inline-block;
    background-color: #f28d21;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

/* Responsivo para Celular */
@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr; /* Imagem vai para baixo ou para cima */
    }
    .benefits-column {
        grid-template-columns: 1fr;
    }
    .product-image-container {
        order: -1; /* Imagem aparece antes dos textos no mobile */
    }
}

/* Seção de Ingredientes */
.ingredients-section {
    background-color: #fdf5e6; /* Tom bege para contrastar com a seção branca anterior */
    padding: 80px 20px;
    font-family: Arial, sans-serif;
}

.ingredients-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.ingredients-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ingredient-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.ing-icon {
    background-color: #f28d21;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    flex-shrink: 0;
    font-weight: bold;
}

.ing-text h3 {
    color: #4a2c1a;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
}

.ing-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Imagem Central com efeito flutuante */
.ingredient-image {
    flex: 1;
    text-align: center;
}

.floating-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    animation: float 4s ease-in-out infinite;
}

/* Animação para a imagem não ficar estática */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsivo */
@media (max-width: 992px) {
    .ingredients-content {
        flex-direction: column;
    }
    .ingredient-image {
        order: -1; /* Imagem vai para o topo no celular */
        margin-bottom: 30px;
    }
    .ingredients-list {
        width: 100%;
    }
}

/* Seção de Estatísticas */
.results-stats {
    padding: 80px 20px;
    background-color: #ffffff; /* Fundo branco para destacar os números */
    text-align: center;
    font-family: Arial, sans-serif;
}

.stats-title {
    color: #4a2c1a;
    font-size: 2.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.3;
}

/* Organização dos Itens */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* O número em destaque (Laranja) */
.stat-number {
    font-size: 4rem;
    font-weight: bold;
    color: #f28d21; /* Laranja padrão do seu projeto */
    margin-bottom: 15px;
}

.stat-text h3 {
    font-size: 1.2rem;
    color: #4a2c1a;
    margin-bottom: 10px;
    min-height: 50px; /* Alinha os textos se um for maior que o outro */
}

.stat-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Estilo do Botão */
.stats-cta {
    margin-top: 50px;
}

.btn-primary {
    display: inline-block;
    background-color: #f28d21;
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e07b10;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsividade para Celular */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }

    .stats-title {
        font-size: 1.8rem;
    }
}

/* Seção FAQ */
.faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    color: #4a2c1a;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.faq-container {
    border-top: 1px solid #eee;
}

/* Estilo do Accordion */
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    cursor: pointer;
}

.faq-item summary {
    list-style: none; /* Remove a setinha padrão */
    font-weight: bold;
    font-size: 1.1rem;
    color: #4a2c1a;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Criando uma setinha personalizada com CSS */
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #f28d21;
}

/* Quando aberto, troca o sinal de + para - */
.faq-item[open] summary::after {
    content: '-';
}

.faq-answer {
    padding: 10px 0 20px;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    animation: fadeIn 0.4s ease;
}

/* Animação suave ao abrir */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Remove a seta padrão no Safari/Chrome */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Rodapé Principal */
.main-footer {
    background-color: #4a2c1a; /* Marrom escuro para fechar a página com autoridade */
    color: #ffffff;
    padding: 60px 20px 40px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.main-footer .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Marca no Rodapé */
.footer-brand {
    font-size: 1.8rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* Disclaimer Médico - Texto menor e discreto */
.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.45rem;
    line-height: 1.6;
    color: #d1d1d1;
    text-align: justify;
}

/* Links e Copyright */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f28d21; /* Laranja no hover */
}

.copyright {
    font-size: 0.8rem;
    color: #a1a1a1;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    .footer-disclaimer p {
        text-align: center;
    }
}