:root {
    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --primary: #0F52BA;
    --primary-dark: #0a3d8a;
    --text: #1E293B;
    --text-muted: rgba(30, 41, 59, 0.68);
    --green: #10B981;
    --red: #EF4444;
    --border: rgba(30, 41, 59, 0.08);
    --shadow: 0 4px 24px rgba(15, 82, 186, 0.08);
    --shadow-card: 0 8px 32px rgba(30, 41, 59, 0.06);
    --radius: 12px;
    --radius-lg: 20px;
    --header-h: 4rem;
}

::selection {
    background: rgba(15, 82, 186, 0.18);
    color: var(--text);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    padding-top: 6.5rem;
    font-feature-settings: "kern" 1, "liga" 1;
}

@media (min-width: 900px) {
    body {
        padding-top: var(--header-h);
    }
}

img {
    max-width: 100%;
    height: auto;
}

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

a:hover,
a:focus-visible {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 4vw, 1.5rem);
    padding-right: clamp(1rem, 4vw, 1.5rem);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.65rem 1rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0.75rem clamp(1rem, 4vw, 1.5rem) 0.85rem;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    grid-column: 1;
    grid-row: 1;
}

.header__logo-img {
    height: 1.85rem;
    width: auto;
    max-width: 9.25rem;
    display: block;
}

@media (min-width: 900px) {
    .header__logo-img {
        height: 2rem;
        max-width: 10rem;
    }
}

.header__logo:hover {
    opacity: 0.92;
}

.header__logo:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 6px;
    opacity: 1;
}

.header__actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    max-width: 100%;
}

.header__nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.35rem;
    padding: 0.65rem 0 0.15rem;
    border-top: 1px solid var(--border);
}

.header__nav a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
}

.header__nav a:hover,
.header__nav a:focus-visible {
    color: var(--primary);
    text-decoration: none;
}

.header__nav a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (min-width: 900px) {
    .header__inner {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        min-height: var(--header-h);
        padding-top: 0;
        padding-bottom: 0;
    }

    .header__logo {
        flex: 0 0 auto;
    }

    .header__nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        padding: 0;
        border: none;
        gap: 2rem;
    }

    .header__nav a {
        font-size: 0.875rem;
    }

    .header__actions {
        flex: 0 0 auto;
        margin-left: auto;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.65rem 1.35rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
    text-decoration: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn--solid {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn--solid:hover,
.btn--solid:focus-visible {
    background: var(--primary-dark);
    text-decoration: none;
    color: #fff;
}

.btn--solid-lg {
    min-height: 3.25rem;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    width: 100%;
}

@media (min-width: 480px) {
    .btn--solid-lg {
        width: auto;
    }
}

.btn--light {
    background: #fff;
    color: var(--primary);
}

.btn--light:hover,
.btn--light:focus-visible {
    background: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    color: var(--primary);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--outline:hover,
.btn--outline:focus-visible {
    background: rgba(15, 82, 186, 0.06);
    text-decoration: none;
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    font-weight: 500;
    min-height: 2.5rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.875rem;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    color: var(--primary);
    background: rgba(15, 82, 186, 0.06);
    text-decoration: none;
}

.btn--wide {
    width: 100%;
    max-width: 16rem;
}

@media (min-width: 480px) {
    .btn--wide {
        width: auto;
    }
}

.header__actions .btn--solid {
    font-size: 0.875rem;
    min-height: 2.5rem;
    padding: 0.45rem 1rem;
}

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

.hero--mesh {
    background:
        radial-gradient(ellipse 90% 60% at 15% 20%, rgba(15, 82, 186, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
        var(--bg);
}

.hero__bullets {
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}

.hero__bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.hero__bullets li:last-child {
    margin-bottom: 0;
}

.hero__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1rem;
    height: 1rem;
    background: no-repeat center / contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='8' fill='%2310B981'/%3E%3Cpath d='M4.5 8.2l2.2 2.2 5-5' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hero__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 960px) {
    .hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3rem;
        padding: 2.5rem 0 1.5rem;
        align-items: center;
    }

    .hero__copy {
        max-width: 36rem;
    }
}

.hero__tagline {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.hero__title {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
    color: var(--text);
}

.hero__subtitle {
    margin: 0 0 1.75rem;
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 34rem;
}

.hero__micro {
    margin: 1rem 0 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.hero__visual {
    display: flex;
    justify-content: center;
}

.hero__figure {
    margin: 0;
    width: 100%;
    max-width: min(26rem, 100%);
}

.hero__illustration {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 48px rgba(30, 41, 59, 0.1);
}

.hero__illustration--map {
    object-fit: contain;
    max-height: min(22rem, 58vh);
    margin-left: auto;
    margin-right: auto;
}

@media (prefers-reduced-motion: no-preference) {
    .hero__illustration--float {
        animation: hero-illustration-float 5s ease-in-out infinite;
    }
}

@keyframes hero-illustration-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__illustration--float {
        animation: none;
    }
}

.section {
    padding: 3rem 0;
}

.section--alt {
    background: var(--bg-alt);
}

.section__header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.section__header--tight {
    margin-bottom: 1.75rem;
}

.section__eyebrow {
    margin: 0 auto 0.5rem;
    max-width: 36rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(15, 82, 186, 0.78);
}

.section__title {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.65rem;
    color: var(--text);
}

.section__lead {
    margin: 0 auto;
    max-width: 36rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.o-app {
    border-top: 1px solid var(--border);
}

.o-app__body {
    max-width: 48rem;
    margin: 0 auto;
}

.o-app__pitch {
    margin: 0 0 2rem;
    padding: 0 0.25rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text);
    text-align: center;
}

.o-app__flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

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

.o-app__step {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin: 0;
    padding: 1.2rem 1.1rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.o-app__step-num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(15, 82, 186, 0.1);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.o-app__step-copy {
    min-width: 0;
}

.o-app__step-title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1.25;
}

.o-app__step-text {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.o-app__note {
    margin: 1.75rem 0 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.feature-block {
    display: grid;
    gap: 1.75rem;
    align-items: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.feature-block:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .feature-block {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.feature-block__step {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 0.65rem;
}

.feature-block__step--inline {
    margin-bottom: 0.5rem;
}

.feature-block__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--text);
}

.feature-block__text {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.feature-block__aside {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
}

.feature-block__aside .feature-block__step {
    align-self: flex-start;
    margin-bottom: 0;
}

.feature-block__visual {
    position: relative;
    flex: 1;
    min-height: 11rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(15, 82, 186, 0.08) 0%, rgba(15, 82, 186, 0.02) 100%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.feature-block__figure {
    margin: 0;
    width: 100%;
    max-width: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-block__figure svg {
    width: 100%;
    height: auto;
    display: block;
    max-height: 11rem;
}

.planos {
    padding: 3rem 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
}

.planos__card {
    max-width: 26rem;
    margin: 0 auto;
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.planos__nome {
    margin: 0 0 0.35rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}

.planos__price {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.planos__amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.planos__desc {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.cta-final {
    position: relative;
    background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary) 48%, #1e5fd4 100%);
    color: #fff;
    padding: 3.25rem 1rem;
    text-align: center;
    overflow: hidden;
}

.cta-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.cta-final__inner {
    position: relative;
    max-width: 32rem;
    margin: 0 auto;
}

.cta-final__bridge {
    margin: 0 0 0.65rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.45;
    opacity: 0.94;
}

.cta-final__title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.cta-final__sub {
    margin: 0 0 1.75rem;
    font-size: 1rem;
    opacity: 0.92;
    line-height: 1.45;
}

.cta-final .btn--light {
    min-height: 3.25rem;
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.footer {
    padding: 2rem 1rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__inner {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
    }
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}

.footer__logo-img {
    height: 1.5rem;
    width: auto;
    max-width: 8.5rem;
    display: block;
}

.footer__logo:hover {
    opacity: 0.9;
}

.footer__logo:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 6px;
    opacity: 1;
}

.footer__copy {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer__links {
    display: flex;
    gap: 1.25rem;
    font-size: 0.875rem;
}

.footer__links a {
    color: var(--text-muted);
}

.footer__links a:hover,
.footer__links a:focus-visible {
    color: var(--primary);
}

.skip {
    position: absolute;
    left: -9999px;
    top: 0.5rem;
    z-index: 200;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius);
}

.skip:focus {
    left: 0.5rem;
}

.legal-doc {
    padding-top: 3.75rem;
}

.legal-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.legal-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.5rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0.65rem clamp(1rem, 4vw, 1.5rem);
}

.legal-bar__logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}

.legal-bar__logo-img {
    height: 1.85rem;
    width: auto;
    max-width: 9.5rem;
    display: block;
}

.legal-bar__logo:hover {
    opacity: 0.92;
}

.legal-bar__logo:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 6px;
    opacity: 1;
}

.legal-bar__aside {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem 1rem;
    font-size: 0.875rem;
}

.legal-bar__aside a {
    font-weight: 500;
    color: var(--text-muted);
}

.legal-bar__aside a:hover,
.legal-bar__aside a:focus-visible {
    color: var(--primary);
    text-decoration: none;
}

.legal-main {
    max-width: 46rem;
    margin: 0 auto;
    padding: 2rem clamp(1rem, 4vw, 1.5rem) 3.5rem;
}

.legal-content h1 {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    color: var(--text);
    line-height: 1.2;
}

.legal-meta {
    margin: 0 0 2rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.legal-content h2 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 2rem 0 0.65rem;
    color: var(--text);
    line-height: 1.3;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.legal-content ul {
    margin: 0 0 1.25rem;
    padding-left: 1.35rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.legal-content li {
    margin-bottom: 0.4rem;
}

.legal-content strong {
    color: var(--text);
    font-weight: 600;
}

.legal-foot {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.legal-foot a {
    font-weight: 500;
}

.virada {
    padding: 3.25rem 0 3.5rem;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 45%);
}

.virada__header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

.virada__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(15, 82, 186, 0.75);
}

.virada__title {
    margin: 0 0 0.6rem;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.28;
    color: var(--text);
}

.virada__intro {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.virada__split {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(30, 41, 59, 0.06);
}

@media (min-width: 800px) {
    .virada__split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    }
}

.virada-pane {
    padding: 1.5rem 1.35rem 1.65rem;
}

.virada-pane--antes {
    background: linear-gradient(165deg, #fff9f5 0%, #ffffff 55%);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 800px) {
    .virada-pane--antes {
        border-bottom: none;
        border-right: 1px solid var(--border);
    }
}

.virada-pane--depois {
    background: linear-gradient(165deg, #f0f6ff 0%, #ffffff 50%);
}

.virada-pane__titulo {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    letter-spacing: -0.01em;
}

.virada-pane--antes .virada-pane__titulo {
    color: #9a3412;
}

.virada-pane--depois .virada-pane__titulo {
    color: var(--primary);
}

.virada-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.virada-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.8rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.virada-list li:last-child {
    margin-bottom: 0;
}

.virada-list--antes li {
    border-left: 3px solid rgba(234, 88, 12, 0.45);
    padding-left: 0.85rem;
    margin-left: 0;
}

.virada-list--antes li::before {
    display: none;
}

.virada-list--depois li {
    border-left: 3px solid rgba(15, 82, 186, 0.45);
    padding-left: 0.85rem;
}

.virada__rodape {
    margin: 2rem 0 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text);
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}
