:root {
    --black-pure: #000000;
    --black-bg: #0a0a0a;
    --gold: #ffb703;
    --red: #d90429;
    --green: #28a745;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black-pure);
    color: white;
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* --- HEADER IMPACTO --- */
.hero-header {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    padding: 100px 0;
    border-bottom: 2px solid var(--gold);
}

.hero-layout { display: flex; align-items: center; justify-content: space-between; gap: 40px; }

.top-badge {
    background: var(--gold);
    color: black;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 900;
    font-size: 0.7rem;
    margin-bottom: 15px;
}

.main-title { font-size: 4rem; font-weight: 900; line-height: 0.9; margin: 0; }
.red-text { color: var(--red); }
.subtitle { font-size: 1.2rem; margin: 20px 0; color: #ccc; }
.gold-text-bold { color: var(--gold); font-weight: 900; }

.btn-cta-premium {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 22px 50px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.4);
    transition: 0.3s;
}
.btn-cta-premium:hover { transform: scale(1.05); }
.cta-sub { font-size: 0.8rem; color: #666; margin-top: 10px; }

.img-header-main { width: 100%; max-width: 450px; z-index: 2; position: relative; }

/* --- LADY SECTION --- */
.lady-section { padding: 80px 0; background: #050505; }
.lady-layout { display: flex; align-items: center; gap: 60px; }
.lady-img-premium { width: 100%; max-width: 380px; filter: drop-shadow(0 0 20px var(--gold)); }

.section-h2 { font-size: 2.5rem; font-weight: 900; line-height: 1.1; }
.check-list-v3 { list-style: none; padding: 0; margin-top: 30px; }
.check-list-v3 li { 
    padding: 12px 0; border-bottom: 1px solid #222; 
    font-weight: 700; display: flex; align-items: center; 
}
.check-list-v3 li::before { content: "✔"; color: var(--gold); margin-right: 15px; font-size: 1.2rem; }

/* --- TESTIMONIALS --- */
.center-title { text-align: center; margin-bottom: 50px; font-weight: 900; font-size: 2.2rem; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.testi-card { background: #111; border: 1px solid #222; border-radius: 20px; padding: 20px; }
.testi-img-frame { width: 100%; height: 400px; border-radius: 15px; overflow: hidden; border: 2px solid var(--gold); }
.testi-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.testi-info h3 { color: var(--gold); margin: 15px 0 5px; }
.quote { font-style: italic; color: #ddd; }

/* --- PAYMENT AREA --- */
.payment-area { padding: 60px 0; }
.payment-glass-bar {
    display: flex; justify-content: space-around;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px; border-radius: 30px; backdrop-filter: blur(10px);
}
.pay-icon { font-size: 2.5rem; display: block; margin-bottom: 10px; }
.pay-item { text-align: center; }

/* --- KITS --- */
.kits-section { padding-bottom: 100px; } /* ESPAÇO PARA O RODAPÉ */

.kits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.kit-card { 
    background: #151515; padding: 40px 20px; border-radius: 30px; 
    text-align: center; position: relative; border: 1px solid #222; 
}
.kit-card.popular { border: 2px solid var(--gold); transform: scale(1.05); background: #1a1a1a; }

/* Efeito de brilho pulsante em volta do MAIS VENDIDO */
.glow-gold-border {
    animation: glowPulse 2s infinite ease-in-out;
}
@keyframes glowPulse {
    0% { box-shadow: 0 0 5px rgba(255, 183, 3, 0.2); }
    50% { box-shadow: 0 0 25px rgba(255, 183, 3, 0.5); }
    100% { box-shadow: 0 0 5px rgba(255, 183, 3, 0.2); }
}

.kit-card img { width: 180px; margin-bottom: 20px; }
.kit-tag { 
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: #333; color: white; padding: 6px 20px; border-radius: 20px; font-size: 0.8rem; font-weight: 900;
}
.kit-tag.gold { background: var(--gold); color: black; }
.kit-price span { font-size: 2.5rem; color: var(--gold); font-weight: 900; }

.btn-buy-green { 
    display: block; background: var(--green); color: white; padding: 18px; 
    border-radius: 10px; text-decoration: none; font-weight: 900; margin-top: 25px;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    transition: 0.3s;
}
.btn-buy-green:hover { transform: scale(1.05); filter: brightness(1.2); }

/* Efeito de pulsação no botão do kit em destaque */
.pulse-button {
    animation: pulseBtn 1.5s infinite;
}
@keyframes pulseBtn {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(40, 167, 69, 0.6); }
    100% { transform: scale(1); }
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .hero-layout, .lady-layout, .testimonial-grid, .kits-grid { flex-direction: column; grid-template-columns: 1fr; text-align: center; }
    .main-title { font-size: 2.5rem; }
    .lady-img-premium { max-width: 280px; }
}

/* --- RODAPÉ INSTITUCIONAL --- */
.footer-premium {
    background: #050505;
    padding: 80px 0 40px; /* Aumentei o padding superior */
    border-top: 1px solid #1a1a1a;
    color: #888;
    font-size: 0
/* --- CORREÇÃO DO SCRIPT DE COMPRA (TOAST) --- */
.notification-toast {
    position: fixed;
    bottom: -150px; /* Escondido */
    left: 20px;
    background: #ffffff !important; /* Força o fundo branco */
    color: #333333 !important;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 320px;
    border: 1px solid #eee;
}

.notification-toast.show {
    bottom: 20px; /* Posição visível */
}

.notif-img img { width: 50px; height: 50px; object-fit: contain; }
.notif-content p { margin: 0; font-size: 0.9rem; color: #333; }
.notif-content span { font-size: 0.8rem; display: block; color: #666; }
.notif-content small { font-size: 0.7rem; color: #999; }

/* --- RODAPÉ PROFISSIONAL --- */
.footer-premium {
    background: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid #1a1a1a;
    margin-top: 100px; /* Espaço que você pediu */
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.anvisa-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 500px;
}

.anvisa-logo {
    height: 70px;
    filter: brightness(0) invert(1); /* Deixa o selo branco para combinar com o fundo escuro */
    opacity: 0.8;
}

.anvisa-text {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
}

.footer-info { text-align: right; }
.links-group a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.85rem;
}

.links-group a:hover { color: var(--gold); }

.copyright {
    margin-top: 20px;
    color: #555;
    font-size: 0.75rem;
}

.health-disclaimer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    font-size: 0.7rem;
    color: #444;
}

@media (max-width: 768px) {
    .footer-grid { flex-direction: column; text-align: center; align-items: center; }
    .footer-info { text-align: center; }
    .anvisa-container { flex-direction: column; text-align: center; }
    .notification-toast { width: calc(100% - 40px); left: 20px; }
}
/* --- BOTÃO WHATSAPP FLUTUANTE --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img { width: 35px; }

/* --- CORREÇÃO DEFINITIVA DO TOAST (NOTIFICAÇÃO) --- */
.notification-toast {
    position: fixed;
    bottom: -150px; /* Começa escondido abaixo da tela */
    left: 20px;
    background: #ffffff !important; /* Fundo branco sólido para não bugar no preto */
    padding: 12px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    z-index: 9999;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 340px;
    border: 1px solid #ddd;
}

.notification-toast.show {
    bottom: 20px; /* Sobe para a tela */
}

.notif-img img { 
    width: 50px; 
    height: 50px; 
    object-fit: contain; 
}

.notif-content {
    flex: 1;
}

.notif-content p { 
    margin: 0; 
    font-size: 0.9rem; 
    color: #222 !important; 
}

.notif-content span { 
    font-size: 0.85rem; 
    display: block; 
    color: #444 !important; 
    margin: 2px 0;
}

.notif-content small { 
    font-size: 0.75rem; 
    color: #999; 
}

.notif-close {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 0 15px 5px;
}
.notif-close:hover { color: #333; }

/* Ajuste mobile para não sobrepor o botão do Whats */
@media (max-width: 768px) {
    .notification-toast {
        width: calc(100% - 40px);
        left: 20px;
        bottom: -150px;
    }
    .notification-toast.show {
        bottom: 90px; /* Sobe mais para não ficar em cima do Whats no celular */
    }
}
/* --- ESTILOS DO RODAPÉ, WHATS E NOTIFICAÇÃO --- */

.footer-premium {
    background: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid #1a1a1a;
    margin-top: 100px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.anvisa-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 500px;
}

.anvisa-logo {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.anvisa-text {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
}

.footer-info { text-align: right; }

.links-group a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.85rem;
}

.copyright {
    margin-top: 20px;
    color: #555;
    font-size: 0.75rem;
}

.health-disclaimer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    font-size: 0.7rem;
    color: #444;
}

/* WHATSAPP DISCRETO */
.whatsapp-float-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    z-index: 10000;
    transition: 0.3s;
}

.whatsapp-float-btn img { width: 30px; }

/* NOTIFICAÇÃO CORRIGIDA (TAMANHO PROFISSIONAL) */
.notification-toast-v2 {
    position: fixed;
    bottom: -150px;
    left: 20px;
    background: #ffffff !important;
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    z-index: 9999;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 300px;
    border: 1px solid #eee;
}

.notification-toast-v2.show {
    bottom: 20px;
}

.notif-img img { width: 45px; height: 45px; object-fit: contain; }

.notif-content p { margin: 0; font-size: 0.85rem; color: #222 !important; line-height: 1.2; }

.notif-content span { font-size: 0.8rem; display: block; color: #555 !important; margin-top: 2px; }

.notif-content small { font-size: 0.7rem; color: #28a745; font-weight: bold; }

.notif-close {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.1rem;
    cursor: pointer;
    align-self: flex-start;
}

/* AJUSTE PARA CELULAR */
@media (max-width: 768px) {
    .footer-grid { flex-direction: column; text-align: center; align-items: center; }
    .footer-info { text-align: center; }
    .anvisa-container { flex-direction: column; text-align: center; }
    .whatsapp-float-btn { width: 45px; height: 45px; bottom: 15px; right: 15px; }
    .notification-toast-v2 { width: 280px; left: 10px; }
    .notification-toast-v2.show { bottom: 85px; } /* Sobe para não bater no Whats */
}