* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: #fff;
}

header {
    text-align: center;
    padding: 3.5rem 1rem 2rem;
}
header .logo {
    display: flex;
    justify-content: center;
}
header .logo img {
    height: 100px;
    filter: drop-shadow(0 0 18px rgba(100,181,246,.5));
}
header h1 {
    font-size: 2.8rem;
    color: #e94560;
    margin-top: 0.6rem;
    text-shadow: 0 0 24px rgba(233,69,96,.5);
}
header h1 span { color: #fff; }
header p.tagline {
    font-size: 1.15rem;
    color: #a8dadc;
    margin-top: 0.5rem;
}

main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}
.card h2 {
    font-size: 1.5rem;
    color: #e94560;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.card p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #cdd6f4;
}

/* ── Features ── */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}
@media (max-width: 540px) {
    .features { grid-template-columns: 1fr; }
}
.feature {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 2rem 1.8rem;
    text-align: center;
    transition: transform .2s, border-color .2s;
}
.feature:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.22);
}
.feature .icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}
.feature h3 { color: #a8dadc; margin-bottom: 0.5rem; font-size: 1rem; }
.feature p  { font-size: 0.9rem; color: #cdd6f4; line-height: 1.6; }

/* ── Passos ── */
.passos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: .5rem;
}
.passo {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.passo-num {
    min-width: 2rem; height: 2rem;
    background: #e94560;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; font-size: .9rem;
    flex-shrink: 0;
}
.passo-texto strong { color: #ffd166; display: block; margin-bottom: .2rem; }
.passo-texto span   { font-size: .92rem; color: rgba(255,255,255,.65); line-height: 1.55; }

/* ── Pontuação preview ── */
.score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.score-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}
.score-item .s-icon { font-size: 1.6rem; margin-bottom: .4rem; }
.score-item .s-val  { font-size: 1.3rem; font-weight: bold; color: #ffd166; }
.score-item .s-desc { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: .2rem; }

/* ── CTAs ── */
.cta {
    text-align: center;
    margin: 2.5rem 0 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primario, .btn-secundario {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    padding: .9rem 2.2rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: bold;
    transition: transform .2s, box-shadow .2s;
}
.btn-primario {
    background: #e94560;
    color: #fff;
    box-shadow: 0 4px 20px rgba(233,69,96,.4);
}
.btn-primario:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233,69,96,.6);
}
.btn-secundario {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.2);
}
.btn-secundario:hover {
    background: rgba(255,255,255,.14);
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    color: rgba(255,255,255,.3);
    font-size: 0.88rem;
}
