:root {
    --fp-blue: #006ab1;
    --fp-blue-dark: #004d82;
    --fp-blue-light: #e8f4fc;
    --fp-gold: #ca8412;
    --fp-gold-light: #f5e6c8;
    --fp-gold-dark: #9a6409;
    --fp-white: #ffffff;
    --fp-gray-50: #f8fafc;
    --fp-gray-100: #f1f5f9;
    --fp-gray-200: #e2e8f0;
    --fp-gray-400: #94a3b8;
    --fp-gray-600: #475569;
    --fp-gray-800: #1e293b;
    --fp-gray-900: #0f172a;
    --fp-radius: 16px;
    --fp-radius-sm: 10px;
    --fp-shadow: 0 4px 24px rgba(0, 106, 177, 0.08);
    --fp-shadow-lg: 0 20px 60px rgba(0, 106, 177, 0.12);
    --fp-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fp-font);
    color: var(--fp-gray-800);
    background: var(--fp-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

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

@media (min-width: 375px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Header */
.fp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--fp-gray-200);
    transition: box-shadow 0.3s ease;
}

.fp-header.scrolled {
    box-shadow: var(--fp-shadow);
}

.fp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
}

.fp-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

.fp-logo img {
    height: 40px;
    width: auto;
}

.fp-logo__icon {
    height: 36px;
    width: 36px;
    border-radius: 8px;
}

.fp-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.fp-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--fp-gray-600);
    transition: color 0.2s;
}

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

.fp-header__actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.fp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-family: var(--fp-font);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.fp-btn--ghost {
    background: transparent;
    color: var(--fp-blue);
    border: 1.5px solid var(--fp-gray-200);
}

.fp-btn--ghost:hover {
    border-color: var(--fp-blue);
    background: var(--fp-blue-light);
}

.fp-btn--ghost-light {
    background: transparent;
    color: var(--fp-white);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.fp-btn--ghost-light:hover {
    border-color: var(--fp-white);
    background: rgba(255, 255, 255, 0.1);
}

.fp-btn--primary {
    background: var(--fp-blue);
    color: var(--fp-white);
    box-shadow: 0 4px 14px rgba(0, 106, 177, 0.3);
}

.fp-btn--primary:hover {
    background: var(--fp-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 106, 177, 0.35);
}

.fp-btn--gold {
    background: var(--fp-gold);
    color: var(--fp-white);
    box-shadow: 0 4px 14px rgba(202, 132, 18, 0.35);
}

.fp-btn--gold:hover {
    background: var(--fp-gold-dark);
    transform: translateY(-1px);
}

.fp-btn--lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.fp-menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    margin: -6px -6px -6px 0;
    border-radius: 8px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.fp-menu-toggle:active {
    background: var(--fp-gray-100);
}

.fp-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fp-gray-800);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.fp-menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.fp-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.fp-menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.fp-menu-open {
    overflow: hidden;
}

.fp-mobile-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 1.25rem;
    border-top: 1px solid var(--fp-gray-200);
    gap: 0;
}

.fp-mobile-nav.open {
    display: flex;
}

.fp-mobile-nav a {
    font-weight: 500;
    color: var(--fp-gray-600);
    padding: 0.875rem 0;
    text-align: center;
    border-bottom: 1px solid var(--fp-gray-100);
    transition: color 0.2s;
}

.fp-mobile-nav a:hover {
    color: var(--fp-blue);
}

.fp-mobile-nav__cta {
    margin-top: 0.75rem;
    width: 100%;
    border-bottom: none !important;
}

/* Alternating blue / white section folds */
.fp-section {
    background: var(--fp-white);
}

.fp-section--white,
.fp-cta-section {
    background: var(--fp-white);
}

.fp-section--blue {
    background: linear-gradient(160deg, var(--fp-blue) 0%, var(--fp-blue-dark) 100%);
    color: var(--fp-white);
}

.fp-section--blue + .fp-section:not(.fp-section--blue),
.fp-section--blue + .fp-cta-section {
    box-shadow: inset 0 1px 0 var(--fp-gray-200);
}

.fp-section:not(.fp-section--blue) + .fp-section--blue,
.fp-hero--blue + .fp-section--blue {
    border-top: 4px solid var(--fp-gold);
}

.fp-hero--blue + .fp-section:not(.fp-section--blue) {
    border-top: 4px solid var(--fp-gold);
}

.fp-section--blue .fp-section__title {
    color: var(--fp-white);
}

.fp-section--blue .fp-section__desc {
    color: rgba(255, 255, 255, 0.88);
}

.fp-section__header--light .fp-section__tag--light {
    color: var(--fp-gold-light);
}

.fp-section__tag--light {
    color: var(--fp-gold-light);
}

.fp-section__desc--lead {
    margin-bottom: 0.75rem;
}

.fp-section__desc--lead strong {
    color: var(--fp-gray-900);
    font-size: 1.125rem;
}

.fp-section--blue .fp-feature-item h4 {
    color: var(--fp-white);
}

.fp-section--blue .fp-feature-item p {
    color: rgba(255, 255, 255, 0.85);
}

.fp-section--blue .fp-feature-item__num {
    background: var(--fp-gold);
}

/* Hero */
.fp-hero {
    padding: 8rem 0 5rem;
    overflow: hidden;
    position: relative;
}

.fp-hero--blue {
    background: linear-gradient(155deg, var(--fp-blue-dark) 0%, var(--fp-blue) 55%, #0078c8 100%);
    color: var(--fp-white);
}

.fp-hero--blue::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(202, 132, 18, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.fp-hero--blue::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.fp-hero:not(.fp-hero--blue) {
    background: linear-gradient(160deg, var(--fp-blue-light) 0%, var(--fp-white) 45%, var(--fp-gold-light) 100%);
}

.fp-hero:not(.fp-hero--blue)::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(0, 106, 177, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.fp-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.fp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: var(--fp-white);
    border: 1px solid var(--fp-gray-200);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fp-gold);
    margin-bottom: 1.25rem;
}

.fp-badge--light {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--fp-gold-light);
}

.fp-badge__dot {
    width: 8px;
    height: 8px;
    background: var(--fp-gold);
    border-radius: 50%;
}

.fp-hero h1 {
    font-size: clamp(1.625rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--fp-gray-900);
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.fp-hero--blue h1 {
    color: var(--fp-white);
}

.fp-hero h1 span {
    color: var(--fp-blue);
    display: block;
    margin-top: 0.25rem;
}

.fp-hero--blue h1 span {
    color: var(--fp-gold-light);
}

.fp-hero h1 em {
    font-style: normal;
    color: var(--fp-gold);
}

.fp-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.1875rem);
    color: var(--fp-gray-600);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.fp-hero--blue .fp-hero__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.fp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.fp-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.fp-stat {
    display: flex;
    flex-direction: column;
}

.fp-stat__value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--fp-blue);
}

.fp-hero--blue .fp-stat__value {
    color: var(--fp-gold-light);
}

.fp-stat__label {
    font-size: 0.8125rem;
    color: var(--fp-gray-400);
    font-weight: 500;
}

.fp-hero--blue .fp-stat__label {
    color: rgba(255, 255, 255, 0.75);
}

.fp-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero visual — banner image */
.fp-hero-banner {
    margin: 0;
    width: 100%;
    max-width: min(100%, 520px);
    position: relative;
    z-index: 1;
}

.fp-hero-banner__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: contain;
    object-position: center;
}

/* Sections */
.fp-section {
    padding: 5rem 0;
}

.fp-section--gray {
    background: var(--fp-gray-50);
}

.fp-features__visual--gold::after {
    background: rgba(255, 255, 255, 0.12);
}

.fp-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

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

.fp-section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--fp-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.fp-section__desc {
    font-size: 1.0625rem;
    color: var(--fp-gray-600);
    line-height: 1.7;
}

.fp-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.fp-card {
    background: var(--fp-white);
    border-radius: var(--fp-radius);
    padding: 2rem;
    border: 1px solid var(--fp-gray-200);
    transition: all 0.3s ease;
}

.fp-card:hover {
    border-color: var(--fp-blue);
    box-shadow: var(--fp-shadow);
    transform: translateY(-4px);
}

.fp-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fp-blue-light);
    border-radius: 14px;
    margin-bottom: 1.25rem;
    color: var(--fp-blue);
}

.fp-card__icon--gold {
    background: var(--fp-gold-light);
    color: var(--fp-gold);
}

.fp-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--fp-gray-900);
    margin-bottom: 0.625rem;
}

.fp-card p {
    font-size: 0.9375rem;
    color: var(--fp-gray-600);
    line-height: 1.65;
}

/* Features split */
.fp-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.fp-features__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fp-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.fp-feature-item__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fp-blue);
    color: var(--fp-white);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
}

.fp-feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fp-gray-900);
    margin-bottom: 0.25rem;
}

.fp-feature-item p {
    font-size: 0.9375rem;
    color: var(--fp-gray-600);
    line-height: 1.6;
}

.fp-features__visual {
    background: linear-gradient(135deg, var(--fp-blue) 0%, var(--fp-blue-dark) 100%);
    border-radius: var(--fp-radius);
    padding: 2.5rem;
    color: var(--fp-white);
    position: relative;
    overflow: hidden;
}

.fp-features__visual::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(202, 132, 18, 0.2);
    border-radius: 50%;
}

.fp-features__visual h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.fp-features__visual p {
    font-size: 0.9375rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
}

.fp-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

.fp-check-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
}

.fp-check-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--fp-gold);
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Steps */
.fp-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    counter-reset: step;
    max-width: 1080px;
    margin: 0 auto;
}

.fp-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.fp-step__num {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fp-blue);
    color: var(--fp-white);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
}

.fp-step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--fp-gray-900);
    margin-bottom: 0.5rem;
}

.fp-step p {
    font-size: 0.9375rem;
    color: var(--fp-gray-600);
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.6;
}

.fp-testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.fp-testimonial {
    background: var(--fp-white);
    border-radius: var(--fp-radius);
    padding: 1.75rem;
    border: 1px solid var(--fp-gray-200);
}

.fp-testimonial__quote {
    font-size: 0.9375rem;
    color: var(--fp-gray-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.fp-testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fp-testimonial__avatar {
    width: 40px;
    height: 40px;
    background: var(--fp-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--fp-blue);
    font-size: 0.875rem;
}

.fp-testimonial__name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--fp-gray-900);
}

.fp-testimonial__role {
    font-size: 0.8125rem;
    color: var(--fp-gray-400);
}

/* Taxas */
@keyframes fp-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fp-taxas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.fp-taxa-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--fp-radius);
    padding: 2rem 1.75rem;
    text-align: center;
    opacity: 0;
    transform: translateY(28px);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.fp-taxa-card.is-visible {
    animation: fp-fade-in-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fp-taxa-card:nth-child(1).is-visible { animation-delay: 0.05s; }
.fp-taxa-card:nth-child(2).is-visible { animation-delay: 0.18s; }
.fp-taxa-card:nth-child(3).is-visible { animation-delay: 0.31s; }

.fp-taxa-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--fp-gold), rgba(255, 255, 255, 0.4));
    opacity: 0.85;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.fp-taxa-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.fp-taxa-card.is-visible:hover {
    transform: translateY(-6px);
}

.fp-taxa-card:hover::before {
    transform: scaleX(1);
}

.fp-taxa-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.125rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--fp-white);
    transition: transform 0.35s ease, background 0.35s ease;
}

.fp-taxa-card__icon--gold {
    background: rgba(202, 132, 18, 0.22);
    color: var(--fp-gold-light);
}

.fp-taxa-card:hover .fp-taxa-card__icon {
    transform: scale(1.08) rotate(-3deg);
}

.fp-taxa-card__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fp-gold-light);
    background: rgba(202, 132, 18, 0.18);
    border: 1px solid rgba(202, 132, 18, 0.35);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.875rem;
}

.fp-taxa-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--fp-white);
    margin-bottom: 0.75rem;
}

.fp-taxa-card__rate {
    font-size: clamp(1.375rem, 4vw, 1.625rem);
    font-weight: 800;
    color: var(--fp-white);
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 0.875rem;
    white-space: nowrap;
}

.fp-taxa-card__desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.fp-taxa-card--cartao:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(202, 132, 18, 0.25);
}

.fp-taxas-cta {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.fp-taxas-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* CTA section */
.fp-cta-section {
    padding: 5rem 0 6.5rem;
    background: var(--fp-white);
}

.fp-cta-section + .fp-footer {
    margin-top: 0;
}

.fp-cta-section__inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.fp-cta-section .fp-section__tag {
    color: var(--fp-gold);
}

.fp-cta-section .fp-section__title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    letter-spacing: 0.02em;
}

.fp-cta-section__btn {
    margin-top: 0.5rem;
}

/* Footer */
.fp-footer {
    background: var(--fp-gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 3.5rem;
}

.fp-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.fp-footer__brand img {
    height: 36px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.fp-footer__brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 1.25rem;
}

.fp-footer__register-btn {
    display: inline-flex;
    width: auto;
}

.fp-footer__links h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--fp-white);
    margin-bottom: 1rem;
}

.fp-footer__links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fp-footer__links a {
    font-size: 0.875rem;
    transition: color 0.2s;
}

.fp-footer__links a:hover {
    color: var(--fp-gold);
}

.fp-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
    font-size: 0.8125rem;
}

/* Responsive — mobile polish */
@media (max-width: 767px) {
    .fp-header__inner {
        height: 64px;
    }

    .fp-logo img {
        height: 34px;
    }

    .fp-hero {
        padding: 6.5rem 0 3rem;
    }

    .fp-hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .fp-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .fp-hero__actions {
        justify-content: center;
        width: 100%;
    }

    .fp-hero__stats {
        justify-content: center;
        gap: 1.25rem 1.75rem;
    }

    .fp-stat {
        align-items: center;
        min-width: 88px;
    }

    .fp-section {
        padding: 3.5rem 0;
    }

    .fp-section__header {
        margin-bottom: 2.5rem;
    }

    .fp-card {
        text-align: center;
    }

    .fp-card__icon {
        margin-left: auto;
        margin-right: auto;
    }

    .fp-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .fp-section--blue .fp-feature-item {
        align-items: center;
    }

    .fp-features__visual {
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .fp-check-list {
        align-items: center;
    }

    .fp-check-list li {
        justify-content: center;
    }

    .fp-testimonial__quote {
        text-align: center;
    }

    .fp-testimonial__author {
        justify-content: center;
    }

    .fp-cta-section {
        padding: 3.5rem 0 5rem;
    }

    .fp-cta-section__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fp-cta-section__btn {
        width: 100%;
        max-width: 320px;
    }

    .fp-taxas-cta .fp-btn {
        width: 100%;
        max-width: 320px;
    }

    .fp-footer__register-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .fp-footer {
        padding: 2.5rem 0 2.75rem;
    }

    .fp-footer__grid {
        text-align: center;
    }

    .fp-footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fp-footer__brand p {
        max-width: 320px;
    }

    .fp-footer__links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fp-footer__links ul {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .fp-hero h1 {
        font-size: 1.5rem;
    }

    .fp-hero--blue h1 span {
        font-size: 1.35rem;
    }

    .fp-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fp-hero__actions .fp-btn {
        width: 100%;
        white-space: normal;
    }

    .fp-hero-banner__img {
        max-height: 380px;
    }

    .fp-hero__stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .fp-steps {
        gap: 1.5rem;
    }

    .fp-step {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 374px) {
    .fp-logo img {
        height: 30px;
    }

    .fp-section__title {
        font-size: 1.5rem;
    }

    .fp-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.625rem;
    }
}

/* Responsive — tablet & desktop */
@media (min-width: 640px) {
    .fp-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .fp-taxas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fp-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .fp-cta-section {
        padding-bottom: 7rem;
    }

    .fp-footer {
        padding-bottom: 4rem;
    }

    .fp-header__actions {
        display: flex;
    }

    .fp-nav {
        display: flex;
    }

    .fp-menu-toggle {
        display: none;
    }

    .fp-mobile-nav {
        display: none !important;
    }

    .fp-hero__grid {
        grid-template-columns: 1fr 1fr;
    }

    .fp-hero__visual {
        justify-content: flex-end;
    }

    .fp-hero-banner {
        max-width: 100%;
    }

    .fp-hero-banner__img {
        max-height: 680px;
    }

    .fp-features {
        grid-template-columns: 1fr 1fr;
    }

    .fp-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .fp-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .fp-hero-banner__img {
        max-height: 720px;
    }
}
