/* =========================================
   INDEX (página inicial)
   Estilos exclusivos de index.php — hero, features, planos, cta
   ========================================= */

/* ── HERO ────────────────────────────────────────────────── */
.hero {
    height: 100vh;
    min-height: 640px;
    max-height: 880px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(160deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 20% 50%, rgba(255,255,255,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 80% 30%, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
    color: #fff; padding: 5px 14px; border-radius: 30px;
    font-size: 0.75rem; font-weight: 600; margin-bottom: 32px;
    animation: fadeSlide 0.5s ease both;
}
.hero-badge svg { width: 12px; height: 12px; fill: none; stroke: #fff; stroke-width: 2; }
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800; line-height: 1.15;
    color: #fff; letter-spacing: -1px;
    margin-bottom: 20px;
    animation: fadeSlide 0.5s ease 0.1s both;
}
.hero h1 em { font-style: normal; color: #bfdbfe; }
.hero p {
    font-size: 1.05rem; color: rgba(255,255,255,0.8); font-weight: 400;
    max-width: 520px; margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeSlide 0.5s ease 0.2s both;
}
.hero-actions {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    animation: fadeSlide 0.5s ease 0.3s both;
}
.hero-stats {
    display: flex; gap: 40px; justify-content: center; margin-top: 60px;
    flex-wrap: wrap;
    animation: fadeSlide 0.5s ease 0.4s both;
}

/* ── PLANOS ──────────────────────────────────────────────── */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ── COMO FUNCIONA ───────────────────────────────────────── */
.how-bg { background: var(--white); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
