/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e30613; /* Vermelho */
    --gold: #f5c518;    /* Dourado */
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray: #f4f4f4;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero & Slider */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background: #000;
}

.slider-container, .slider, .slide {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-text {
    position: absolute;
    color: white;
    z-index: 2;
    padding: 1rem;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: transform 0.3s;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: #c20511;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 10px;
}

/* Barra de Progresso */
.progress-section {
    text-align: center;
    margin-top: -50px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 5;
    position: relative;
    padding: 2rem;
}

.progress-wrapper {
    background: #eee;
    height: 30px;
    border-radius: 15px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #ff9900);
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: bold;
    transition: width 2s ease-out;
}

.warning-text {
    color: var(--primary);
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

/* Cards Sociais */
.social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-10px); }

.card i { font-size: 3rem; margin-bottom: 1rem; }
.instagram i { color: #E1306C; }
.whatsapp-vip i { color: #25D366; }
.share i { color: var(--primary); }

.card a, .card button {
    display: block;
    margin-top: 1rem;
    background: var(--dark);
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Bolão Hero + Promo Banner (Nova Seção) */
.bolao-hero {
    text-align: center;
    padding: 4rem 1rem;
    background: #fdfdfd;
}

.bolao-hero__sup {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.bolao-hero__title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.bolao-hero__highlight {
    color: var(--primary);
}

.bolao-hero__sub {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #666;
}

.bolao-hero__banner {
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.promo-banner__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.promo-banner__link:hover .promo-banner__img {
    transform: scale(1.02);
}

.btn-compre-agora {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Planos */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.price-card {
    border: 2px solid var(--gray);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.price-card.featured {
    border-color: var(--gold);
    background: #fffdf0;
    transform: scale(1.05);
}

.price-card h3 { font-size: 1.5rem; }
.price { font-size: 3.5rem; font-weight: 900; color: var(--primary); margin: 1rem 0; }
.price span { font-size: 1.5rem; }

.price-card ul { list-style: none; margin: 2rem 0; }
.price-card li { margin-bottom: 0.5rem; }

.btn-buy {
    display: block;
    background: var(--primary);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Como Funciona */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: black;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Footer & PIX */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 4rem 1rem 2rem;
    text-align: center;
}

.pix-box {
    background: #333;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 300px;
    margin: 1rem auto;
    cursor: pointer;
    border: 1px dashed var(--gold);
}

.pix-box span { font-family: monospace; font-size: 1.2rem; }

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 100;
}

.whatsapp-float img { width: 30px; margin-right: 10px; }

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    max-width: 400px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.emoji { font-size: 4rem; display: block; margin-bottom: 1rem; }

/* Animações */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-text h1 { font-size: 2rem; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 15px; border-radius: 50%; }
    .pricing-grid { gap: 1rem; }
    .price-card.featured { transform: scale(1); }
    .bolao-hero__title { font-size: 1.8rem; }
}