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

:root {
    --blue: #00b4fe;
    --blue-dark: #0077cc;
    --blue-deeper: #005fa3;
    --blue-soft: #e6f7ff;
    --blue-mid: #b3e8ff;
    --white: #ffffff;
    --gray-50: #f7fafc;
    --gray-100: #edf2f7;
    --gray-300: #cbd5e0;
    --gray-500: #718096;
    --gray-700: #4a5568;
    --gray-900: #1a202c;
    --radius: 14px;
    --shadow-sm: 0 2px 8px rgba(0, 180, 254, .1);
    --shadow-md: 0 8px 32px rgba(0, 180, 254, .15);
    --shadow-lg: 0 20px 60px rgba(0, 180, 254, .2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--white);
    color: var(--gray-900);
    overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--gray-50);
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 99px;
}

/* ============================================================
       NAVEGAÇÃO
    ============================================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 68px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 180, 254, .12);
    padding: 0 5%;
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 180, 254, .12);
}

.nav-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gray-900);
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 180, 254, .4);
}

.logo-mark svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: -.3px;
    color: var(--gray-900);
}

.logo-text span {
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
}

/* Desktop links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color .2s;
}

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

.btn-nav {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white !important;
    padding: .5rem 1.3rem;
    border-radius: 99px;
    font-weight: 600 !important;
    font-size: .85rem !important;
    box-shadow: 0 4px 14px rgba(0, 180, 254, .35);
    transition: transform .2s, box-shadow .2s;
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 180, 254, .45) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 8px;
}

.hamburger:hover {
    background: var(--blue-soft);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all .3s;
}

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

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 199;
    background: white;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
    padding: 1rem 5%;
    display: none;
    flex-direction: column;
    gap: .25rem;
}

.mobile-menu.open {
    display: flex;
    animation: slideDown .25s ease;
}

.mobile-menu a {
    display: block;
    padding: .85rem 1rem;
    font-size: .95rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 10px;
    transition: background .2s, color .2s;
}

.mobile-menu a:hover {
    background: var(--blue-soft);
    color: var(--blue);
}

.mobile-menu .m-cta {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white !important;
    text-align: center;
    font-weight: 700 !important;
    margin-top: .5rem;
    box-shadow: var(--shadow-sm);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
       HERO / BANNER
    ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 68px;
}

/* Background decorativo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 90% 50%, rgba(0, 180, 254, .1) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0, 180, 254, .06) 0%, transparent 60%),
        linear-gradient(180deg, var(--blue-soft) 0%, var(--white) 60%);
}

/* Círculos decorativos */
.hero-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hc1 {
    width: 600px;
    height: 600px;
    border: 1px solid rgba(0, 180, 254, .08);
    top: -100px;
    right: -150px;
    animation: rotate 30s linear infinite;
}

.hc2 {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(0, 180, 254, .1);
    top: -50px;
    right: -50px;
    animation: rotate 20s linear infinite reverse;
}

.hc3 {
    width: 200px;
    height: 200px;
    background: rgba(0, 180, 254, .06);
    bottom: 10%;
    left: -60px;
    animation: float 6s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

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

/* Pontos decorativos */
.hero-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(var(--blue-mid) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: .35;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Texto hero */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--white);
    border: 1px solid var(--blue-mid);
    color: var(--blue-dark);
    padding: .35rem 1rem;
    border-radius: 99px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.2rem;
    width: fit-content;
}

.hero-badge::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 2px rgba(0, 180, 254, .3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 2px rgba(0, 180, 254, .3);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(0, 180, 254, .1);
    }
}

.hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.5px;
    color: var(--gray-900);
    margin-bottom: 1.2rem;
}

.hero-title em {
    font-style: italic;
    color: var(--blue);
}

.hero-desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 2rem;
    max-width: 440px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    padding: .9rem 2rem;
    border-radius: 99px;
    font-size: .92rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(0, 180, 254, .35);
    transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 180, 254, .5);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: white;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: white;
    color: var(--blue-dark);
    padding: .9rem 2rem;
    border-radius: 99px;
    font-size: .92rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--blue-mid);
    transition: all .2s;
}

.btn-outline:hover {
    background: var(--blue-soft);
    border-color: var(--blue);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {}

.stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}

.stat-text {
    font-size: .75rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-top: .3rem;
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    background: var(--gray-100);
}

/* Hero card (visual direita) */
.hero-visual {
    position: relative;
}

.hero-card-main {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 24px 80px rgba(0, 180, 254, .18), 0 4px 16px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 180, 254, .1);
    position: relative;
    z-index: 2;
    animation: floatCard 7s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-8px) rotate(.3deg);
    }

    66% {
        transform: translateY(-4px) rotate(-.2deg);
    }
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.card-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.card-status {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: #e8faf0;
    color: #16a34a;
    font-size: .72rem;
    font-weight: 700;
    padding: .25rem .7rem;
    border-radius: 99px;
}

.card-status::before {
    content: '●';
    font-size: .55rem;
}

.card-amount {
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: .3rem;
}

.card-amount small {
    font-size: 1.1rem;
    color: var(--gray-500);
    font-weight: 400;
}

.card-sub {
    font-size: .8rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.progress-wrap {
    margin-bottom: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: .74rem;
    color: var(--gray-500);
    margin-bottom: .5rem;
}

.progress-track {
    height: 8px;
    background: var(--gray-100);
    border-radius: 99px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
    width: 68%;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--blue);
    box-shadow: 0 2px 6px rgba(0, 180, 254, .4);
}

.card-info-row {
    display: flex;
    gap: .75rem;
}

.info-pill {
    flex: 1;
    background: var(--gray-50);
    border-radius: 10px;
    padding: .75rem;
    text-align: center;
}

.info-pill-val {
    font-size: .88rem;
    font-weight: 700;
    color: var(--gray-900);
}

.info-pill-lab {
    font-size: .68rem;
    color: var(--gray-500);
    margin-top: .15rem;
}

/* Floating mini cards */
.float-card {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: .85rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
    border: 1px solid var(--gray-100);
    font-size: .82rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    z-index: 3;
}

.fc-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.fc-label {
    font-size: .68rem;
    color: var(--gray-500);
}

.fc-value {
    font-weight: 700;
    color: var(--gray-900);
    font-size: .82rem;
}

.float-card-1 {
    top: -20px;
    left: -30px;
    animation: floatCard 5s ease-in-out infinite;
}

.float-card-2 {
    bottom: 20px;
    right: -30px;
    animation: floatCard 6s ease-in-out infinite reverse;
}

/* ============================================================
       SECÇÃO: COMO FUNCIONA
    ============================================================ */
.how-section {
    padding: 7rem 5%;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-mid), transparent);
}

.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.section-eyebrow {
    text-align: center;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: .7rem;
}

.section-title {
    text-align: center;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: .8rem;
}

.section-desc {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 3.5rem;
    color: var(--gray-500);
    font-size: .95rem;
    line-height: 1.7;
    font-weight: 300;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

/* Linha conectora */
.how-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
    z-index: 0;
    opacity: .25;
}

.how-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--gray-100);
    position: relative;
    z-index: 1;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.how-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-mid);
}

.how-num {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 180, 254, .35);
}

.how-card h4 {
    font-size: .98rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--gray-900);
}

.how-card p {
    font-size: .82rem;
    color: var(--gray-500);
    line-height: 1.6;
    font-weight: 300;
}

/* ============================================================
       SECÇÃO: VANTAGENS / FEATURES
    ============================================================ */
.features-section {
    padding: 7rem 5%;
}

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

.feature-card {
    border-radius: 20px;
    padding: 2rem;
    border: 1.5px solid var(--gray-100);
    transition: all .3s;
    cursor: default;
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--blue-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    transition: background .3s;
}

.feature-card:hover .feature-icon {
    background: rgba(0, 180, 254, .2);
}

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

.feature-card p {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.65;
    font-weight: 300;
}

/* ============================================================
       SECÇÃO: CTA BANNER
    ============================================================ */
.cta-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 60%, #004d99 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 28px 28px;
}

.cta-section .section-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-text .section-eyebrow {
    color: rgba(255, 255, 255, .7);
    text-align: left;
}

.cta-text .section-title {
    color: white;
    text-align: left;
}

.cta-text p {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 420px;
    margin-top: .7rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: white;
    color: var(--blue-dark);
    padding: 1rem 2.2rem;
    border-radius: 99px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
}

/* ============================================================
       SECÇÃO: TESTEMUNHOS / TRUST
    ============================================================ */
.trust-section {
    padding: 5rem 5%;
    background: var(--gray-50);
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: .75rem 1.3rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

.trust-icon {
    font-size: 1.2rem;
}

/* ============================================================
       RODAPÉ
    ============================================================ */
footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, .6);
    padding: 3rem 5% 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
}

.footer-logo .dot {
    color: var(--blue);
}

footer p {
    font-size: .8rem;
    text-align: center;
}

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

/* ============================================================
       RESPONSIVO
    ============================================================ */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 2.5rem;
    }

    .float-card-1,
    .float-card-2 {
        display: none;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-desc {
        max-width: 100%;
    }

    .how-grid {
        grid-template-columns: 1fr 1fr;
    }

    .how-grid::before {
        display: none;
    }

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

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 600px) {
    .how-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-stats {
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .cta-section .section-wrap {
        flex-direction: column;
        text-align: center;
    }

    .cta-text .section-eyebrow,
    .cta-text .section-title {
        text-align: center;
    }

    .cta-text p {
        margin: .7rem auto 0;
    }
}