/* ------------------------------------------------------------
   BASE / FUNDO GERAL
------------------------------------------------------------ */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: radial-gradient(circle at top, #1e88e5 0%, #0b2c5f 45%, #020817 100%);
    color: #f5f7ff;
}

/* Texto padrão */
p {
    margin: 0 0 16px;
}

/* ------------------------------------------------------------
   HERO
------------------------------------------------------------ */
.hero {
    padding: 32px 0 40px;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-box {
    background: linear-gradient(135deg, rgba(3, 12, 40, 0.9), rgba(15, 76, 129, 0.95));
    border-radius: 22px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
}

.hero-left {
    flex: 1;
}

.hero h1 {
    font-size: 2.4rem;
    margin: 0 0 12px;
}

.subtitle {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 560px;
}

.tag-aviso {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.8);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-note {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 14px;
}

.hero-right img {
    width: 260px;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
}

/* ------------------------------------------------------------
   BOTÕES
------------------------------------------------------------ */
.btn-group {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-primary,
.btn-paypal {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

/* Botão principal – AZUL VB */
.btn-primary {
    background: linear-gradient(135deg, #1e88e5, #42a5f5);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.45);
}

/* Botão PayPal – VERMELHO */
.btn-paypal {
    background: #d11;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(209, 17, 17, 0.45);
}

.btn-primary:hover,
.btn-paypal:hover {
    transform: translateY(-1px);
    opacity: 0.92;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.btn-large {
    margin-top: 12px;
    padding: 14px 26px;
    font-size: 1.05rem;
}

/* ------------------------------------------------------------
   SEÇÕES GERAIS
------------------------------------------------------------ */
.section {
    padding: 32px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin: 0 0 18px;
}

.section-lead {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 24px;
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.95;
}

.section-note {
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ------------------------------------------------------------
   CARDS
------------------------------------------------------------ */
.cards {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.card {
    flex: 1;
    min-width: 240px;
    background: radial-gradient(circle at top left, rgba(66, 165, 245, 0.35), rgba(5, 15, 40, 0.95));
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* ------------------------------------------------------------
   GRIDS / LISTAS
------------------------------------------------------------ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.7;
    font-size: 0.98rem;
}

.list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1rem;
    color: #64b5f6;
}

/* Listas em colunas (para muitas entradas) */
.list-columns {
    columns: 2;
    column-gap: 30px;
}

.list-columns li {
    break-inside: avoid;
}

/* ------------------------------------------------------------
   SEÇÃO LEGAL
------------------------------------------------------------ */
.section-legal .legal {
    background: linear-gradient(135deg, rgba(5, 15, 40, 0.95), rgba(13, 71, 161, 0.9));
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
    font-size: 0.96rem;
    line-height: 1.7;
}

.alert-title {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 1.15rem;
    color: #ffeb3b;
}

.alert-text {
    background: rgba(255, 193, 7, 0.08);
    border-radius: 10px;
    padding: 10px 12px;
}

.alert-legacy {
    margin-top: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffcc80;
}

/* ------------------------------------------------------------
   CTA FINAL
------------------------------------------------------------ */
.cta-final {
    text-align: center;
    padding: 32px 20px 40px;
}

/* ------------------------------------------------------------
   RODAPÉ
------------------------------------------------------------ */
.footer {
    text-align: center;
    padding: 22px 16px 28px;
    font-size: 0.9rem;
    opacity: 0.75;
}

/* ------------------------------------------------------------
   RESPONSIVO
------------------------------------------------------------ */
@media (max-width: 900px) {
    .hero-box {
        flex-direction: column;
        text-align: left;
        padding: 28px 22px;
    }

    .hero-right img {
        width: 220px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .list-columns {
        columns: 1;
    }

    .hero-box {
        text-align: center;
    }

    .subtitle {
        margin: 0 auto;
    }

    .hero-note {
        text-align: center;
    }

    .btn-group {
        justify-content: center;
    }
}
