/* ------------------------------
   RESET E CONFIGURAÇÕES GERAIS
------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #222;
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

/* Containers padrão */
.container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}

/* ------------------------------
   CORES DO SITE
------------------------------ */
:root {
    --primary: #ff4d4d;
    --primary-dark: #d93636;
    --success: #27ae60;
    --text: #222;
    --text-light: #666;
    --cta: #c1272d;
}

/* ------------------------------
   URGENCY BANNER
------------------------------ */
.urgency-banner {
    background-color: var(--primary);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.hero {
    background: #fff;
    padding: 40px 0;
}

.hero-content {
    text-align: center;
}

.badge {
    background-color: var(--success);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 12px 0;
}

.highlight-text {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    text-align: center;
    transition: 0.3s;
}

.btn-primary {
    background-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

/* ------------------------------
   CARROSSEL KIT
------------------------------ */
.kit-carousel {
    overflow: hidden;
    margin: 20px 0 30px;
}

.kit-track {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Cartões do Kit */
.kit-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.kit-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    text-align: center;
    font-weight: 500;
}

/* ------------------------------
   "O QUE VOCÊ VAI RECEBER"
------------------------------ */
.section-header h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* ------------------------------
   TESTEMUNHOS - CARROSSEL
------------------------------ */
.testimonials-carousel {
    overflow: hidden;
    margin-top: 30px;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    animation: scroll 22s linear infinite;
}

/* ------------------------------
   OFERTAS
------------------------------ */
.offer-section {
    padding: 40px 0;
}

.offer-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.offer-box {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.offer-box.highlight {
    border: 3px solid var(--primary);
    transform: scale(1.03);
}

/* ------------------------------
    POPUPS
------------------------------ */
.sales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
    z-index: 9999;
}

.sales-popup.show {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------
   EXIT POPUP
------------------------------ */
.exit-popup-overlay,
.upsell-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.exit-popup-overlay.show,
.upsell-popup-overlay.show {
    display: flex;
}

.exit-popup-content,
.upsell-popup-content {
    background: white;
    padding: 25px;
    max-width: 380px;
    border-radius: 14px;
    text-align: center;
}

/* ------------------------------
   FAQ
------------------------------ */
.faq details {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

/* ------------------------------
   FOOTER
------------------------------ */
footer {
    padding: 30px 0;
    background: #fafafa;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

/* ------------------------------
   RESPONSIVIDADE
------------------------------ */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 1.8rem;
    }

    .offer-wrapper {
        grid-template-columns: 1fr;
    }

    .kit-track, .testimonials-track {
        animation-duration: 35s;
    }
}
/* Ajuste das imagens da seção "O que você vai receber" */
.receive-items img {
    width: 180px;          /* Tamanho ideal */
    height: auto;
    object-fit: contain;   /* Impede deformação */
    margin: 0 20px;
    filter: drop-shadow(0px 8px 20px rgba(0,0,0,0.08));
}

.receive-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    overflow: hidden;
    padding: 20px 0;
}

.receive-items img:hover {
    transform: scale(1.05);
    transition: 0.3s;
}.infinite-scroll {
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    align-items: center;
}


