/* ==========================================================================
   CONFIGURAÇÕES GERAIS
   ========================================================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Montserrat', sans-serif; 
    scroll-behavior: smooth; 
}
body { 
    background-color: #4a148c; 
    color: #fff; 
    overflow-x: hidden; 
}
.container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 20px; 
}
.container-small {
    max-width: 950px; 
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 60px 0; 
    background: linear-gradient(135deg, #1a0633 0%, #4a148c 100%);
    min-height: 85vh; 
    display: flex; 
    align-items: center;
}
.hero-container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 40px; 
}
.hero-images { 
    flex: 1.5; 
    position: relative; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}
.img-casal { 
    width: 100%; 
    max-width: 900px; 
    height: auto; 
    z-index: 1; 
    display: block; 
    border-radius: 24px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.4);
}
.img-pote-destaque {
    position: absolute; 
    z-index: 2; 
    width: 25%; 
    bottom: 5%; 
    left: 50%;
    transform: translateX(-65%); 
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
}
.hero-content { 
    flex: 1; 
}
.hero-content h1 { 
    font-size: 2.2rem; 
    font-weight: 800; 
    line-height: 1.2; 
    margin-bottom: 25px; 
    text-transform: uppercase; 
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}
.benefits-list { 
    list-style: none; 
    margin-bottom: 30px; 
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}
.benefits-list li { 
    font-size: 1rem; 
    margin-bottom: 8px; 
    display: flex; 
    align-items: center; 
    font-weight: 500;
}
.benefits-list li::before { 
    content: '🔥'; 
    margin-right: 10px; 
}
.btn-hero {
    display: inline-block; 
    background: #000; 
    color: #fff; 
    text-decoration: none;
    padding: 18px 35px; 
    border: 2px solid #fff; 
    border-radius: 50px; 
    font-weight: 800;
    font-size: 1.2rem; 
    transition: 0.3s; 
    margin-bottom: 25px; 
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}
.btn-hero:hover {
    background: #fff;
    color: #4a148c;
    border-color: #4a148c;
}
.hero-trust-icons { 
    display: flex; 
    gap: 15px; 
    font-size: 0.7rem; 
    font-weight: 700; 
    opacity: 0.8; 
}

/* ==========================================================================
   TARJA PRETA
   ========================================================================== */
.black-trust-bar { 
    background: #000; 
    padding: 25px 0; 
    color: #fff; 
}
.trust-bar-container { 
    display: flex; 
    justify-content: space-around; 
    align-items: center; 
    gap: 15px; 
}
.trust-bar-item { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
.trust-bar-item .icon { 
    font-size: 1.8rem; 
}
.trust-bar-item p { 
    font-size: 0.85rem; 
    line-height: 1.2; 
}

/* ==========================================================================
   SEÇÃO DE INGREDIENTES (FUNDO BRANCO)
   ========================================================================== */
.promessas-section { 
    background-color: #ffffff; 
    color: #4a148c; 
    padding: 60px 0; 
}
.promessas-intro { 
    text-align: center; 
    max-width: 950px; 
    margin: 0 auto 50px auto; 
}
.promessas-intro p { 
    font-size: 1.4rem; 
    line-height: 1.4; 
    color: #4a148c; 
}
.promessas-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
    margin-bottom: 40px; 
}
.promessa-card { 
    border: 2px solid #4a148c; 
    border-radius: 15px; 
    padding: 20px; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    background: #fff; 
}
.promessa-img img { 
    width: 120px; 
    height: auto; 
    border-radius: 50%; 
}
.promessa-info h3 { 
    font-size: 1.5rem; 
    font-weight: 800; 
    margin-bottom: 10px; 
    color: #4a148c; 
}
.promessa-info p { 
    font-size: 0.9rem; 
    line-height: 1.4; 
    color: #555; 
}
.promessas-footer { 
    text-align: center; 
    max-width: 900px; 
    margin: 0 auto; 
}
.btn-comprar-outline { 
    display: inline-block; 
    padding: 12px 40px; 
    border: 2.5px solid #4a148c; 
    border-radius: 8px; 
    color: #4a148c; 
    text-decoration: none; 
    font-weight: 800; 
    font-size: 1.1rem; 
    margin-bottom: 40px; 
    transition: 0.3s;
}
.btn-comprar-outline:hover {
    background: #4a148c;
    color: #fff;
}
.promessas-footer p { 
    font-size: 1.2rem; 
    line-height: 1.4; 
    color: #4a148c; 
}

/* ==========================================================================
   CARROSSÉIS
   ========================================================================== */
.carousel-section {
    background: linear-gradient(90deg, #4a148c 0%, #1a0633 100%);
    padding: 80px 0;
}
.swiper { 
    width: 100%; 
    padding-bottom: 50px; 
    margin-bottom: 30px; 
}
.swiper-slide img { 
    width: 100%; 
    height: auto; 
    display: block; 
    border-radius: 15px;
    object-fit: contain;
}
.swiper-button-next, .swiper-button-prev { 
    color: #fff !important; 
    transform: scale(0.7); 
}
.swiper-pagination-bullet { 
    background: #fff !important; 
}

/* ==========================================================================
   KITS E PREÇOS
   ========================================================================== */
.selection-header { 
    text-align: center; 
    margin: 60px 0 40px 0; 
}
.logo-middle { 
    max-width: 180px; 
    margin-bottom: 30px; 
}
.selection-header h2 { 
    font-size: 2.2rem; 
    font-weight: 800; 
    margin-bottom: 15px; 
}
.promo-title { 
    text-align: center; 
    margin-bottom: 30px; 
    font-weight: 800; 
    font-size: 1.8rem; 
}
.promo-title .red { 
    color: #ff5252; 
}
.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(4, minmax(280px, 1fr)); 
    gap: 15px; 
    margin-bottom: 60px; 
}
.card { 
    background: #fff; 
    border-radius: 15px; 
    display: flex; 
    flex-direction: column; 
    padding: 15px 0; 
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
	transition: all 0.3s ease;
}
.card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}
.product-img { 
    width: 100%; 
    height: auto; 
    display: block; 
}
.btn-buy { 
    background: #00c853; 
    color: #fff; 
    text-decoration: none; 
    font-weight: 800; 
    padding: 12px; 
    margin: 10px 15px; 
    border-radius: 8px; 
    text-align: center; 
    transition: 0.3s;
}
.btn-buy:hover {
    background: #00a844;
}
.price-details { 
    text-align: center; 
    color: #333; 
    padding: 15px; 
}
/* TEXTO: 12X DE APENAS */
.parcelas-label{
    font-size: 16px;
    font-weight: 700;
    color: #000; /* vermelho igual do print */
    margin-bottom: 2px;
}

.parcelas-label .highlight-red{
    color: #ff3b30;
}

/* PREÇO PRINCIPAL */
.valor-principal { 
    font-size: 36px; 
    font-weight: 900; 
    color: #000; 
    margin: 10px 0;
    line-height: 1;
    white-space: nowrap;
}

/* TEXTO DO PREÇO À VISTA */
.total-info{
    font-size: 16px;
    font-weight: 500;
    color: #555;
}

/* PREÇO ANTIGO */
.old-price{
    color: #ff3b30;
    text-decoration: line-through;
    font-weight: 700;
}

/* PREÇO NOVO */
.new-price{
    color: #00c853;
    font-weight: 800;
}
.valor-principal { 
    font-size: 42px; 
    font-weight: 900; 
    color: #000; 
	margin: 10px 0; 
}
.frete-gratis-footer { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    padding: 25px 0; 
    color: #000; 
    font-weight: 900; 
    border-top: 1px solid #eee; 
    margin-top: auto; 
}
.frete-gratis-footer img { 
    width: 95px; 
}

/* ==========================================================================
   SEÇÃO FAQ (ESTILO ACCORDION)
   ========================================================================== */
.faq-section {
    background: #fff;
    padding: 80px 0;
    margin-top: 40px;
}
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}
.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a0633;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.faq-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #4a148c;
    border-radius: 2px;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 18px 24px;
    transition: all 0.3s ease;
    border-left: 5px solid #4a148c;
    cursor: pointer;
    align-self: flex-start; /* Evita que o card estique com o vizinho */
}
.faq-item:hover {
    background: #f0f0f0;
}
.faq-question p {
    font-size: 1rem;
    font-weight: 700; /* Mais destaque na pergunta */
    color: #2d2d2d;
    margin: 0;
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Ícone indicativo de abrir/fechar */
.faq-question p::after {
    content: '+';
    font-size: 1.4rem;
    color: #4a148c;
    transition: transform 0.3s ease;
}

/* Resposta escondida por padrão */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}
.faq-answer p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    padding-top: 10px;
}

/* Quando o item estiver ativo (clicado) */
.faq-item.active {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.faq-item.active .faq-answer {
    max-height: 300px; /* Suficiente para o texto */
    margin-top: 10px;
}
.faq-item.active .faq-question p::after {
    transform: rotate(45deg); /* Transforma o + em x */
    color: #ff5252;
}

.faq-footer {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 40px;
    border-radius: 24px;
    margin-top: 20px;
}
.faq-footer-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a0633;
    margin-bottom: 15px;
}
.faq-footer-text {
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 650px;
    margin: 0 auto 30px auto;
    line-height: 1.5;
}
.btn-whatsapp-faq {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 16px 40px;
    border-radius: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp-faq:hover {
    background: #20b859;
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}
.whatsapp-icon-faq {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.whatsapp-float { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    z-index: 100; 
}
.whatsapp-float img { 
    width: 60px; 
    height: 60px; 
    transition: 0.3s;
}
.whatsapp-float img:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container, .trust-bar-container, .pricing-grid, .faq-grid {
        flex-direction: column; 
        text-align: center; 
        grid-template-columns: 1fr;
    }
    .hero-images { 
        order: 2; 
        margin-top: 20px; 
    }
    .hero-content { 
        order: 1; 
    }
    .promessas-grid {
        grid-template-columns: 1fr;
    }
    .promessa-card { 
        flex-direction: column; 
        text-align: center;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-footer-title {
        font-size: 1.4rem;
    }
    .btn-whatsapp-faq {
        font-size: 1rem;
        padding: 14px 30px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .trust-bar-container {
        flex-wrap: wrap;
        gap: 20px;
    }
    .trust-bar-item {
        flex: 0 0 45%;
        justify-content: center;
    }
    .pricing-grid {
        gap: 25px;
    }
    .faq-section {
        padding: 50px 0;
    }
    .faq-title {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   ESTILO DO RODAPÉ PRETO
   ========================================================================== */
.footer-black {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 20px 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li a {
    color: #bbbbbb;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-list li a:hover {
    color: #ffffff;
}

.footer-email {
    color: #bbbbbb;
    font-size: 14px;
    margin-bottom: 20px;
}

.img-payment {
    max-width: 100%;
    height: auto;
    filter: brightness(0.9);
}

.img-ssl {
    max-width: 120px;
    height: auto;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

/* Ajustes para Mobile */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}