/* ===== Bolão Alfa — Layout Premium CAIXA ===== */
:root {
    --caixa-green: #0a7a4b;
    --caixa-green-dark: #00563b;
    --caixa-gold: #f5b301;
    --caixa-gold-light: #ffd34d;
    --ink: #1a2e24;
    --bg-soft: #f4f9f6;
}

/* HERO */
.hero-premium {
    background: linear-gradient(135deg, var(--caixa-green-dark) 0%, var(--caixa-green) 55%, #0e9e63 100%);
    color: #fff;
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}
.hero-premium::after {
    content: '';
    position: absolute;
    right: -120px; top: -120px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(245,179,1,.35) 0%, transparent 70%);
    border-radius: 50%;
}
.badge-ia {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,179,1,.18);
    border: 1px solid rgba(245,179,1,.55);
    color: var(--caixa-gold-light);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .4px;
    margin-bottom: 20px;
}
.badge-ia::before { content: '🤖'; font-size: 1rem; }
.hero-premium h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    margin: 0 0 18px;
    max-width: 640px;
}
.hero-premium h1 .gold { color: var(--caixa-gold-light); }
.hero-premium p.sub {
    font-size: 1.12rem;
    opacity: .92;
    max-width: 560px;
    margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }
.btn-gold {
    background: linear-gradient(135deg, var(--caixa-gold-light), var(--caixa-gold));
    color: #3a2c00;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(245,179,1,.35);
    transition: transform .15s ease;
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-ghost {
    border: 1.5px solid rgba(255,255,255,.5);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background .15s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }

/* STATS */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}
.stat-box {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}
.stat-box strong { display: block; font-size: 1.6rem; color: var(--caixa-gold-light); }
.stat-box span { font-size: .82rem; opacity: .85; }

/* SEÇÕES */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 2rem; color: var(--ink); margin-bottom: 8px; }
.section-title p { color: #5a6e62; max-width: 620px; margin: 0 auto; }

.ia-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ia-card {
    background: #fff;
    border: 1px solid #e4efe9;
    border-top: 4px solid var(--caixa-gold);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 6px 24px rgba(10,122,75,.08);
    transition: transform .2s ease, box-shadow .2s ease;
}
.ia-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(10,122,75,.14); }
.ia-card .icone { font-size: 2.2rem; margin-bottom: 14px; }
.ia-card h3 { color: var(--caixa-green-dark); margin-bottom: 8px; font-size: 1.15rem; }
.ia-card p { color: #5a6e62; font-size: .94rem; margin: 0; }

/* RESULTADOS */
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.result-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e4efe9;
    padding: 22px;
    box-shadow: 0 6px 24px rgba(10,122,75,.06);
}
.result-card .loteria { font-weight: 700; color: var(--caixa-green-dark); }
.result-card .conc { font-size: .8rem; color: #7b8c83; margin-bottom: 14px; }
.dezenas { display: flex; gap: 8px; flex-wrap: wrap; }
.bola {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--caixa-gold-light), var(--caixa-gold));
    color: #3a2c00;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
}

/* BOLÕES */
.bolao-card-premium {
    background: linear-gradient(135deg, #fff, #f6fbf8);
    border: 1px solid #e4efe9;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 18px;
    box-shadow: 0 6px 24px rgba(10,122,75,.06);
}
.progress {
    height: 10px;
    background: #e4efe9;
    border-radius: 999px;
    overflow: hidden;
    margin: 14px 0 10px;
}
.progress > div {
    height: 100%;
    background: linear-gradient(90deg, var(--caixa-green), #12b06e);
    border-radius: 999px;
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(135deg, var(--caixa-gold), var(--caixa-gold-light));
    color: #3a2c00;
    border-radius: 18px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-final h2 { font-size: 1.8rem; margin-bottom: 10px; }
.cta-final p { margin-bottom: 24px; font-size: 1.05rem; }
.btn-dark-green {
    background: var(--caixa-green-dark);
    color: #fff;
    padding: 15px 34px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 28px rgba(0,86,59,.35);
}

@media (max-width: 768px) {
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .ia-cards, .result-grid { grid-template-columns: 1fr; }
}
/* ===== BARRA SUPERIOR AZUL CAIXA ===== */
.topbar-caixa {
    background: #00418e; /* azul CAIXA */
    color: #fff;
    padding: 8px 0;
    font-size: .82rem;
}
.topbar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.topbar-contato {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}
.topbar-item {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.topbar-wa {
    background: #25d366;
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 600;
}
.topbar-wa:hover { background: #1eb958; }

/* FAIXA FINA LARANJA */
.faixa-laranja {
    height: 4px;
    background: #f58220; /* laranja CAIXA */
}

/* LOGO MAIOR OCUPANDO 2 LINHAS */
.navbar {
    padding: 18px 0;
}
.logo-grande {
    width: 220px;
    height: auto;
    display: block;
}

/* Responsivo: esconde endereço em telas pequenas */
@media (max-width: 768px) {
    .topbar-contato { justify-content: center; gap: 12px; }
    .topbar-item:first-child { display: none; } /* esconde endereço no mobile */
    .logo-grande { width: 160px; }
}