:root {
    --roxo: #6D28D9;
    --roxo-2: #7C3AED;
    --roxo-escuro: #3B0764;
    --lilas: #F3E8FF;
    --lilas-2: #EDE9FE;
    --preto: #111827;
    --cinza: #6B7280;
    --cinza-2: #E5E7EB;
    --branco: #FFFFFF;
    --whats: #25D366;
    --radius: 28px;
    --shadow: 0 26px 80px rgba(67, 24, 128, .16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--branco);
    color: var(--preto);
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(109,40,217,.1);
}
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-size: 24px; font-weight: 900; letter-spacing: -1px; }
.brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--roxo), var(--roxo-escuro));
    color: white;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(109, 40, 217, .25);
}
.brand-text span { color: var(--preto); }
.brand-text strong { color: var(--roxo); }

.logo-img {
    display: block;
    width: 190px;
    max-width: 100%;
    height: auto;
}
.brand-logo {
    gap: 0;
}
.footer-logo-img {
    width: 170px;
}
.menu { display: flex; align-items: center; gap: 26px; font-weight: 700; font-size: 14px; color: #374151; }
.menu a:not(.btn):hover { color: var(--roxo); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 3px; margin: 5px auto; background: var(--preto); border-radius: 99px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 15px;
    transition: .22s ease;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--roxo), var(--roxo-escuro)); color: white; box-shadow: 0 18px 40px rgba(109, 40, 217, .25); }
.btn-outline { border: 1px solid rgba(109,40,217,.18); color: var(--roxo); background: white; }
.btn-small { padding: 11px 18px; background: var(--lilas); color: var(--roxo); }
.btn-white { background: white; color: var(--roxo); box-shadow: 0 18px 40px rgba(17, 24, 39, .12); }

.hero { position: relative; padding: 92px 0 72px; overflow: hidden; }
.hero::before {
    content: "";
    position: absolute;
    width: 780px;
    height: 780px;
    top: -420px;
    right: -240px;
    background: radial-gradient(circle, rgba(109,40,217,.20), rgba(255,255,255,0) 65%);
    pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; position: relative; }
.badge, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--roxo);
    background: var(--lilas);
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
}
h1 { font-size: clamp(38px, 5vw, 58px); line-height: 1.02; letter-spacing: -3px; margin: 22px 0 22px; max-width: 650px; }
.hero-subtitle { font-size: 20px; color: var(--cinza); max-width: 680px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 22px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px; color: #4B5563; font-weight: 700; font-size: 14px; }
.hero-proof span { background: #F9FAFB; border: 1px solid #EEF2FF; padding: 8px 12px; border-radius: 999px; }

.hero-card {
    background: linear-gradient(180deg, white, #FBFAFF);
    border: 1px solid rgba(109,40,217,.12);
    border-radius: 34px;
    padding: 22px;
    box-shadow: var(--shadow);
    transform: rotate(1deg);
}
.mockup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; color: var(--cinza); font-size: 13px; font-weight: 800; }
.mockup-header div { display: flex; gap: 7px; }
.mockup-header span { width: 10px; height: 10px; border-radius: 50%; background: var(--lilas-2); display: block; }
.quote-card { background: white; border: 1px solid rgba(109,40,217,.10); border-radius: 24px; padding: 20px; }
.quote-title { display: flex; justify-content: space-between; margin-bottom: 14px; align-items: center; }
.quote-title strong { font-size: 18px; }
.quote-title span { color: var(--roxo); font-weight: 900; background: var(--lilas); padding: 5px 10px; border-radius: 999px; font-size: 12px; }
.quote-row { display: flex; justify-content: space-between; padding: 13px 0; border-top: 1px solid #F1F5F9; color: #374151; }
.quote-row strong { color: var(--preto); }
.supplier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.supplier-card { background: white; border: 1px solid #EEF2FF; border-radius: 22px; padding: 17px; }
.supplier-card small { color: var(--cinza); font-weight: 800; }
.supplier-card strong { display: block; font-size: 24px; margin: 5px 0; letter-spacing: -1px; }
.supplier-card span { color: var(--cinza); font-size: 13px; font-weight: 800; }
.supplier-card.winner { background: linear-gradient(135deg, var(--roxo), var(--roxo-escuro)); color: white; }
.supplier-card.winner small, .supplier-card.winner span { color: rgba(255,255,255,.78); }
.supplier-card.highlight { background: linear-gradient(135deg, #F5F3FF, #FFFFFF); border-color: rgba(109, 40, 217, .25); }
.supplier-card.highlight small { color: var(--roxo); }
.whatsapp-line { margin-top: 14px; border-radius: 999px; padding: 12px 14px; background: rgba(37,211,102,.12); color: #047857; font-size: 13px; font-weight: 900; text-align: center; }

.section { padding: 86px 0; }
.section-title { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section-title h2, .pain-box h2, .benefit-copy h2, .final-box h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -2.4px; margin: 16px 0; }
.section-title p, .pain-box p, .benefit-copy p, .final-box p { color: var(--cinza); font-size: 18px; }
.pain { padding-top: 28px; }
.pain-box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: center; background: #111827; color: white; border-radius: 34px; padding: 42px; box-shadow: 0 24px 70px rgba(17,24,39,.18); }
.pain-box p { color: rgba(255,255,255,.74); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card { border: 1px solid rgba(109,40,217,.12); border-radius: 28px; padding: 26px; background: white; box-shadow: 0 18px 55px rgba(17,24,39,.05); }
.step-number { width: 44px; height: 44px; border-radius: 16px; background: var(--lilas); color: var(--roxo); display: grid; place-items: center; font-weight: 900; margin-bottom: 18px; }
.step-card h3 { font-size: 21px; margin-bottom: 8px; letter-spacing: -.6px; }
.step-card p { color: var(--cinza); font-size: 15px; }

.bg-soft { background: linear-gradient(180deg, #FBFAFF, white); }
.benefit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.benefit-copy p { margin-bottom: 28px; }
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.benefit-card { background: white; border: 1px solid rgba(109,40,217,.12); border-radius: 28px; padding: 24px; box-shadow: 0 18px 55px rgba(17,24,39,.05); }
.benefit-card strong { display: block; font-size: 20px; margin-bottom: 8px; }
.benefit-card span { color: var(--cinza); }

.audience-list { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.audience-list span { padding: 14px 18px; background: #F9FAFB; border: 1px solid #EEF2FF; border-radius: 999px; font-weight: 900; color: #374151; }

.final-cta { padding-top: 40px; }
.final-box { display: flex; justify-content: space-between; align-items: center; gap: 28px; background: linear-gradient(135deg, var(--roxo), var(--roxo-escuro)); color: white; border-radius: 38px; padding: 48px; box-shadow: 0 32px 90px rgba(109,40,217,.30); }
.final-box .section-kicker { background: rgba(255,255,255,.15); color: white; }
.final-box p { color: rgba(255,255,255,.76); max-width: 720px; }
.footer { padding: 34px 0; border-top: 1px solid #EEF2FF; }
.footer-content { display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--cinza); font-weight: 700; }
.footer-brand { font-size: 20px; }
.float-whats { position: fixed; right: 22px; bottom: 22px; z-index: 80; background: var(--whats); color: white; border-radius: 999px; padding: 14px 18px; font-weight: 900; box-shadow: 0 18px 46px rgba(37,211,102,.35); }

.reveal { opacity: 0; transform: translateY(18px); transition: .7s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 980px) {
    .menu-toggle { display: block; }
    .menu {
        position: fixed;
        top: 78px;
        left: 18px;
        right: 18px;
        padding: 18px;
        border-radius: 22px;
        background: white;
        box-shadow: var(--shadow);
        border: 1px solid #EEF2FF;
        display: none;
        flex-direction: column;
        align-items: stretch;
    }
    .menu.open { display: flex; }
    .menu a { padding: 10px; }
    .hero-grid, .pain-box, .benefit-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 60px; }
    h1 { letter-spacing: -2.6px; }
    .steps { grid-template-columns: 1fr 1fr; }
    .final-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 28px, 1180px); }
    .nav { height: 70px; }
    .brand { font-size: 21px; }
    .brand-icon { width: 42px; height: 42px; border-radius: 15px; }
    .menu { top: 70px; }
    .hero { padding: 48px 0 44px; }
    h1 { font-size: 38px; }
    .logo-img { width: 156px; }
    .footer-logo-img { width: 150px; }
    .hero-subtitle { font-size: 17px; }
    .hero-actions .btn { width: 100%; }
    .hero-card { transform: none; padding: 16px; border-radius: 26px; }
    .supplier-grid, .steps, .benefits { grid-template-columns: 1fr; }
    .section { padding: 58px 0; }
    .pain-box, .final-box { padding: 28px; border-radius: 28px; }
    .footer-content { flex-direction: column; align-items: flex-start; }
    .float-whats { left: 18px; right: 18px; text-align: center; }
}
