:root {
    --bg: rgb(6, 27, 42);
    --bg2: #ffffff;
    --ink: rgb(6, 27, 42, 0.86);
    --muted: #475569;
    --brand: #b10a3f;
    --brand-ink: #ffffff;
    --border: #e2e8f0;
    --card: #ffffff;
    --shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 1px 1px rgba(0, 0, 0, .04);
}

.hero,
.section.alt,
.footer {
    background-color: var(--bg) !important;
    color: #ffffffc2 !important;
    background-image: url(fundo.jpg);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
.hero *,
.section.alt * {
    color: #ffffffc2 !important;
}
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero .btn,
.section.alt h1,
.section.alt h2,
.section.alt h3,
.section.alt h4,
.section.alt h5,
.section.alt .btn {
    color: #ffffff !important;
}
.hero .card,
.hero .details,
.section.alt .card,
.section.alt .details {
    background: unset !important;
}
.hero .btn-ghost:hover,
.section.alt .btn-ghost:hover {
    background: #f1f5f926 !important;    
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    color: var(--ink);
    background: linear-gradient(to bottom, var(--bg), var(--bg2));
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: saturate(1.2) blur(6px);
    background: rgba(255, 255, 255);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.brand-badge {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: var(--brand);
}

.brand-title p {
    margin: 0;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #64748b;
}

.brand-title h1 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
}

.nav {
    display: none;
    gap: 1rem;
    font-size: .9rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav a {
    color: inherit;
    text-decoration: none;
}

.nav a:hover {
    color: var(--brand);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .625rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    border: 1px solid var(--brand);
    background: var(--brand);
    color: var(--brand-ink);
    box-shadow: var(--shadow);
}

.btn:hover {
    background: #c12053;
    text-decoration: none;
}

.btn-ghost {
    background: transparent;
    color: inherit;
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: #f1f5f9;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 4rem;
}

.hero h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    margin: 0;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #fff;
}

.hero p {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 60ch;
    color: #fff;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width:640px) {
    .pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width:1024px) {
    .pillars {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.section {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg2);
}

.section.alt {
    background: #f1f5f9;
}

.section h2 {
    font-size: 1.5rem;
    margin: 0 0 .5rem 0;
    font-weight: 800;
}

.section p.lead {
    color: var(--muted);
    max-width: 70ch;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .grid-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.list {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.footer {
    border-top: 1px solid var(--border);
    padding: 5rem 0 6rem 0;
    color: #475569;
    font-size: .95rem;
}

.footer a {
    color: #fff;
    text-decoration: none;
    background-color: #b10a3f;
    padding: 6px 10px;
    border-radius: 5px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #b10a3f;
    color: #fff;
    font-weight: 700;
}

#quem-analisa .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0px;
    height: 40px;
    border-radius: 5px;
    background: #b10a3f;
    color: #fff;
    font-weight: 700;
    padding: 78px 4px;
}

.kicker {
    margin-top: .25rem;
    font-size: .9rem;
    color: var(--muted);
}

.small {
    font-size: .9rem;
    color: var(--muted);
}

.details {
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--bg2);
    padding: 1rem 1rem;
    box-shadow: var(--shadow);
}

details summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

details summary::-webkit-details-marker {
    display: none;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem;
}