﻿:root {
    --blue: #003b82;
    --blue2: #002b61;
    --blue3: #0064b5;
    --gold: #d6a11d;
    --gold2: #f4c34d;
    --green: #19b997;
    --text: #0b1f3f;
    --muted: #667085;
    --bg: #f5f8fc;
    --card: #ffffff;
    --line: #dce6f2;
    --shadow: 0 18px 45px rgba(0,35,92,.14);
    --radius: 22px;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter,Arial,sans-serif;
    background: var(--bg);
    color: var(--text)
}

a {
    text-decoration: none;
    color: inherit
}

.topbar {
    background: linear-gradient(90deg,var(--blue2),var(--blue));
    color: white;
    padding: 11px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px
}

    .topbar .social {
        display: flex;
        gap: 14px;
        align-items: center;
        opacity: .95
    }
    .topbar .social a{
        color: white;
    }

.shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px
}

.hero {
    background: linear-gradient(135deg,#063d85 0%,#002d67 58%,#001d43 100%);
    color: white;
    position: relative;
    overflow: hidden
}

    .hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 68% 22%,rgba(255,255,255,.22),transparent 24%),linear-gradient(90deg,rgba(0,0,0,.04),rgba(0,0,0,.28));
    }

.hero-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr 250px;
    gap: 28px;
    align-items: stretch;
    min-height: 285px
}

.logo-panel {
    background: white;
    color: var(--blue);
    padding: 5px 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 35px rgba(0,0,0,.08)
}

.logo {
    /*font-weight: 800;
    font-size: 56px;
    letter-spacing: -2px;
    border-top: 7px solid var(--blue);
    border-bottom: 7px solid var(--blue);*/
    line-height: 1rem;
    /*margin-bottom: 12px*/
}

.logo-sub {
    font-weight: 800;
    font-size: 15px;
    line-height: 1.25;
    color: #334
}

.hero-content {
    padding: 42px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 9rem;
}

.hero h1 {
    font-size: 52px;
    line-height: .98;
    margin: 0 0 18px;
    font-weight: 800;
    letter-spacing: -1.5px
}

    .hero h1 span {
        color: var(--gold2)
    }

.hero p {
    font-size: 20px;
    line-height: 1.45;
    margin: 0;
    max-width: 560px;
    color: #f0f6ff
}

.hero-art {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.handshake {
    width: 230px;
    height: 150px;
    border-radius: 22px;
    background: linear-gradient(135deg,rgba(255,255,255,.96),rgba(255,255,255,.65));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    filter: drop-shadow(0 18px 30px rgba(0,0,0,.18))
}

.contact-box {
    background: rgba(0,28,66,.62);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    padding: 18px;
    margin: auto 0;
    color: white;
    font-size: 14px;
    line-height: 1.9
}
.contact-box a{
    color: white;
}

.secure-badge {
    margin-top: 18px;
    border: 1px solid rgba(244,195,77,.6);
    border-radius: 14px;
    padding: 18px;
    color: #fff;
    background: rgba(0,20,48,.35)
}

    .secure-badge strong {
        display: block;
        color: var(--gold2);
        margin-bottom: 8px
    }

.flow-card {
    background: white;
    margin-top: -44px;
    position: relative;
    z-index: 2;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 30px 36px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative
}

    .step:not(:last-child):after {
        content: "";
        position: absolute;
        right: -10px;
        top: 28px;
        width: 45%;
        border-top: 2px dashed #d0d9e6
    }

    /* Linha das etapas concluídas */
    .step.completed:not(:last-child)::after {
        border-top: 2px solid var(--gold);
    }

.circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 2px solid #d2dbe8;
    color: var(--muted);
    font-size: 25px;
    background: white
}

/* Etapa concluída */
.step.completed .circle {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.step.active .circle {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 0 8px rgba(214,161,29,.08)
}

.step h3 {
    margin: 0 0 5px;
    font-size: 17px;
    color: var(--blue)
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: 13px
}

.main-card {
    margin: 34px 0;
    background: linear-gradient(135deg,#fff,#eef5ff);
    border-radius: var(--radius);
    padding: 34px;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 32px;
    box-shadow: 0 1px 0 var(--line)
}

    .main-card h2 {
        font-size: 28px;
        margin: 0 0 18px;
        color: var(--blue)
    }

.input-row {
    max-width: 620px
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 9px
}

input {
    width: 100%;
    height: 58px;
    border: 1px solid #cbd7e8;
    border-radius: 9px;
    padding: 0 16px;
    font-size: 17px;
    background: white;
    outline: none
}

    input:focus {
        border-color: var(--blue3);
        box-shadow: 0 0 0 4px rgba(0,100,181,.12)
    }

.btns {
    display: flex;
    gap: 14px;
    margin-top: 18px
}

.btn {
    height: 52px;
    border: 0;
    border-radius: 9px;
    padding: 0 22px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer
}

.primary {
    background: linear-gradient(135deg,var(--gold),#c68b00);
    color: white
}

.secondary {
    background: white;
    color: #222;
    border: 1px solid #d6deea
}

.cpf-visual {
    display: flex;
    align-items: center;
    justify-content: center
}

.cpf-card {
    background: white;
    border-radius: 18px;
    padding: 28px;
    min-width: 240px;
    box-shadow: 0 16px 32px rgba(30,70,120,.14);
    border: 1px solid #edf1f7
}

.shield {
    font-size: 48px;
    color: var(--blue);
    text-align: right
}

.cpf-card b {
    color: #6b7d99
}

.cpf-card p {
    letter-spacing: 2px;
    color: #8290a4
}

.benefit-line {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 34px;
    align-items: start;
    margin: 22px 10px 30px
}

    .benefit-line h2 {
        font-size: 25px;
        line-height: 1.38;
        color: var(--blue);
        margin: 0
    }

.checks {
    list-style: none;
    padding: 0;
    margin: 0
}

    .checks li {
        margin: 0 0 13px;
        padding-left: 28px;
        position: relative
    }

        .checks li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: -1px;
            color: var(--gold);
            font-weight: 800
        }

.table-card, .pay-card, .help-card, .footer-security {
    background: white;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 8px 28px rgba(0,35,92,.05)
}

.table-card {
    padding: 22px;
    margin-bottom: 22px
}

.table-title {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px
}

    .table-title strong {
        font-size: 18px;
        color: var(--blue)
    }

    .table-title span {
        font-size: 13px;
        color: var(--muted)
    }

table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 9px
}

th {
    background: var(--blue);
    color: white;
    text-align: left;
    padding: 14px
}

td {
    padding: 15px;
    border-bottom: 1px solid var(--line)
}

    td:last-child {
        text-align: center;
        font-weight: 700
    }

.notice {
    background: #eaf3ff;
    border-radius: 12px;
    color: var(--blue);
    padding: 16px 20px;
    font-weight: 600;
    margin-bottom: 26px
}

.section-title {
    font-size: 24px;
    color: var(--blue);
    margin: 0 0 18px
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-bottom: 28px
}

.pay-card {
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 17px
}

.pay-icon {
    font-size: 38px;
    color: var(--blue)
}

.pay-card h3 {
    margin: 0 0 5px;
    color: var(--blue);
    font-size: 17px
}

.pay-card p {
    margin: 0;
    color: #4d5d74;
    font-size: 14px;
    line-height: 1.35
}

.support {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    margin-bottom: 28px
}

.help-card {
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px
}

    .help-card .button {
        margin-left: auto;
        background: var(--blue);
        color: white;
        border-radius: 9px;
        padding: 14px 22px;
        font-weight: 700
    }

.small-links {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    text-align: center;
    color: var(--blue);
    font-size: 13px
}

    .small-links div {
        padding: 18px;
        border-left: 1px solid var(--line)
    }

    .small-links b {
        display: block;
        margin-top: 6px
    }

.footer-security {
    background: linear-gradient(90deg,var(--blue2),var(--blue));
    color: white;
    padding: 24px;
    display: grid;
    grid-template-columns: 1.5fr repeat(4,1fr);
    gap: 18px;
    align-items: center;
    margin-bottom: 28px
}

    .footer-security h3 {
        margin: 0 0 6px;
        color: var(--gold2)
    }

    .footer-security p {
        margin: 0;
        color: #dcecff;
        font-size: 13px
    }

.seal {
    text-align: center;
    border-left: 1px solid rgba(255,255,255,.16);
    font-weight: 700
}

    .seal span {
        display: block;
        font-size: 28px;
        margin-bottom: 5px
    }

footer {
    background: linear-gradient(90deg,var(--blue2),#003c86);
    color: white;
    margin-top: 20px;
    padding: 42px 0 16px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.6fr;
    gap: 28px
}

.footer-logo {
    /*font-size: 44px;
    font-weight: 800;
    border-top: 5px solid white;
    border-bottom: 5px solid white;*/
    display: inline-block;
    line-height: 1rem
}

.footer-grid h4 {
    margin: 0 0 12px;
    color: #eaf3ff
}

.footer-grid p, .footer-grid a {
    display: block;
    color: #d8e7fb;
    font-size: 14px;
    line-height: 1.8
}

.copy {
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 28px;
    padding-top: 16px;
    font-size: 13px;
    color: #d8e7fb;
    display: flex;
    justify-content: space-between
}
.copy a{
    color: white;
}

@media(max-width:900px) {
    .hero-wrap {
        grid-template-columns: 1fr
    }

    .logo-panel {
        min-height: 150px
    }

    .contact-box {
        margin: 0 0 28px
    }

    .hero-content {
        padding: 30px 0
    }

    .hero h1 {
        font-size: 40px
    }

    .flow-card, .main-card, .benefit-line, .payment-grid, .support, .footer-security, .footer-grid {
        grid-template-columns: 1fr
    }

    .step:after {
        display: none
    }

    .main-card {
        padding: 24px
    }

    .cpf-visual {
        display: none
    }

    .topbar {
        padding: 10px 20px
    }

    .copy {
        display: block
    }

    .small-links {
        grid-template-columns: 1fr
    }
}
