*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: #0f1117;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
:root {
    --green: #16a34a;
    --green-mid: #22c55e;
    --green-light: #dcfce7;
    --green-dark: #166534;
    --neon: #4ade80;
    --amber: #d97706;
    --amber-light: #fef3c7;
    --amber-dark: #92400e;
    --dark: #0c0e14;
    --dark-2: #181b26;
    --dark-3: #22263a;
    --gray: #6b7280;
    --gray-light: #f5f5f3;
    --border: #e5e7eb;
    --r-sm: 8px;
    --r: 12px;
    --r-lg: 20px;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(28px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

/* ── URGENCY BAR ── */
#urgency-bar {
    background: #b45309;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    position: relative;
}
.ub-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 11px 48px 11px 24px;
    flex-wrap: wrap;
}
.ub-text {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.ub-text span {
    opacity: 0.8;
    font-weight: 500;
}
.ub-countdown {
    display: flex;
    gap: 5px;
    align-items: center;
}
.ub-seg {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    padding: 3px 8px;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    min-width: 36px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}
.ub-sep {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}
.ub-cta {
    background: #fff;
    color: #92400e;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.1s;
}
.ub-cta:hover {
    transform: scale(1.03);
}
.ub-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.65);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

/* ── SHARED ── */
.section {
    padding: 96px 24px;
}
.section-inner {
    max-width: 1160px;
    margin: 0 auto;
}
.section-header {
    margin-bottom: 56px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}
.section-title {
    font-size: clamp(30px, 3.8vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #0c0e14;
}
.section-sub {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 540px;
}

/* ── HERO ── */
#hero {
    background: var(--dark);
    padding: 0 24px;
    position: relative;
    overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
#hero::after {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.14) 0%, transparent 65%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 120px 0 100px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.22);
    color: var(--neon);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    animation: fadeUp 0.5s ease both;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon);
    animation: blink 2s infinite;
}
.hero-headline {
    font-size: clamp(38px, 4.8vw, 62px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 22px;
    animation: fadeUp 0.5s 0.1s ease both;
}
.hero-headline em {
    font-style: normal;
    color: var(--neon);
}
.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 38px;
    animation: fadeUp 0.5s 0.2s ease both;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 38px;
    animation: fadeUp 0.5s 0.3s ease both;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--green);
    color: #fff;
    padding: 15px 28px;
    border-radius: var(--r-sm);
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.15s,
        transform 0.1s;
}
.btn-primary:hover {
    background: #15803d;
    transform: translateY(-1px);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    padding: 15px 24px;
    border-radius: var(--r-sm);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    animation: fadeUp 0.5s 0.4s ease both;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}
.hero-trust-item svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}
.hero-visual {
    animation: fadeRight 0.6s 0.2s ease both;
}
.mockup {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.mockup-bar {
    background: var(--dark-3);
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mkb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-mid);
    flex-shrink: 0;
}
.mkb-info {
    flex: 1;
}
.mkb-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.mkb-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}
.mkb-badge {
    font-size: 10px;
    font-weight: 700;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.22);
    color: var(--neon);
    padding: 3px 10px;
    border-radius: 100px;
}
.mockup-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.msg {
    max-width: 86%;
}
.msg-in {
    align-self: flex-start;
}
.msg-out {
    align-self: flex-end;
}
.msg-bubble {
    padding: 11px 14px;
    font-size: 13px;
    line-height: 1.55;
}
.msg-in .msg-bubble {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 4px 14px 14px 14px;
}
.msg-out .msg-bubble {
    background: #166534;
    color: #fff;
    border-radius: 14px 4px 14px 14px;
}
.msg-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.22);
    padding: 3px 2px 0;
}
.msg-in .msg-time {
    text-align: left;
}
.msg-out .msg-time {
    text-align: right;
}
.reasoning {
    background: rgba(22, 163, 74, 0.07);
    border: 1px solid rgba(22, 163, 74, 0.18);
    border-radius: 10px;
    padding: 10px 13px;
    animation: fadeUp 0.35s 1s ease both;
    opacity: 0;
}
.reasoning-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--neon);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 4px;
}
.reasoning-txt {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
}
.notif {
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.22);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.4s 1.9s ease both;
    opacity: 0;
}
.notif-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
    color: var(--neon);
}
.notif-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--neon);
}
.notif-val {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.m1 {
    animation: fadeUp 0.3s 0.6s ease both;
    opacity: 0;
}
.m2 {
    animation: fadeUp 0.3s 1.35s ease both;
    opacity: 0;
}

/* ── TRUST BAR ── */
#trust-bar {
    background: #fafafa;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 24px;
}
.trust-bar-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.tb-label {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    white-space: nowrap;
}
.tb-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.tb-logo {
    height: 22px;
    border-radius: 4px;
    background: var(--border);
    opacity: 0.55;
}

/* ── PROBLEMA ── */
#problema {
    background: #fff;
}
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pain-card {
    background: var(--gray-light);
    border-radius: var(--r);
    padding: 32px 26px;
    border-top: 3px solid transparent;
    transition: border-color 0.2s;
}
.pain-card:hover {
    border-color: var(--green);
}
.pain-num {
    font-size: 52px;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}
.pain-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 10px;
}
.pain-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ── SOLUÇÃO ── */
#solucao {
    background: var(--dark);
    padding: 96px 24px;
}
#solucao .section-title {
    color: #fff;
}
#solucao .section-sub {
    color: rgba(255, 255, 255, 0.45);
}
#solucao .eyebrow {
    color: var(--neon);
}
#solucao .eyebrow::before {
    background: var(--neon);
}
.agent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--r);
    overflow: hidden;
}
.agent-card {
    background: var(--dark-2);
    padding: 30px 26px;
    transition: background 0.2s;
}
.agent-card:hover {
    background: var(--dark-3);
}
.agent-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--neon);
}
.agent-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 9px;
    line-height: 1.35;
}
.agent-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

/* ── CASOS ── */
#casos {
    background: var(--gray-light);
}
.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.case-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 26px 22px;
    transition:
        border-color 0.15s,
        transform 0.15s;
}
.case-card:hover {
    border-color: #86efac;
    transform: translateY(-3px);
}
.case-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.case-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.case-text {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.65;
}

/* ── SCREENSHOTS ── */
#screenshots {
    background: #fff;
    padding: 96px 24px;
}
.screens-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.stab {
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}
.stab.active {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}
.stab:hover:not(.active) {
    border-color: #9ca3af;
    color: var(--dark);
}
.screen-frame {
    background: var(--gray-light);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    display: none;
}
.screen-frame.active {
    display: block;
}
.sf-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sf-dots {
    display: flex;
    gap: 5px;
}
.sf-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.sf-title {
    font-size: 12px;
    color: var(--gray);
    margin-left: 6px;
}

.screen-inbox {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 380px;
}
.si-sidebar {
    border-right: 1px solid var(--border);
    background: #fff;
}
.si-search {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
}
.si-search input {
    width: 100%;
    background: var(--gray-light);
    border: none;
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 12px;
    color: var(--gray);
    font-family: inherit;
    outline: none;
}
.si-conv {
    padding: 11px 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.1s;
}
.si-conv:hover {
    background: var(--gray-light);
}
.si-conv.active-conv {
    background: #f0fdf4;
}
.si-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.si-info {
    flex: 1;
    min-width: 0;
}
.si-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.si-preview {
    font-size: 11px;
    color: var(--gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.si-meta {
    font-size: 10px;
    color: #9ca3af;
    flex-shrink: 0;
}
.si-chat {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
}
.sc-msg {
    max-width: 72%;
}
.sc-msg.sc-in {
    align-self: flex-start;
}
.sc-msg.sc-out {
    align-self: flex-end;
}
.sc-bubble {
    padding: 10px 13px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.5;
}
.sc-in .sc-bubble {
    background: var(--gray-light);
    color: var(--dark);
}
.sc-out .sc-bubble {
    background: #16a34a;
    color: #fff;
}
.sc-time {
    font-size: 10px;
    color: #9ca3af;
    padding: 3px 2px;
}

.screen-crm {
    padding: 24px;
    background: #fff;
}
.crm-pipeline {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    min-height: 340px;
}
.crm-col {
    min-width: 165px;
}
.crm-col-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.crm-count {
    background: var(--border);
    color: var(--gray);
    border-radius: 100px;
    padding: 1px 8px;
    font-size: 10px;
}
.crm-card {
    background: var(--gray-light);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 12px;
    margin-bottom: 8px;
}
.crm-card-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.crm-card-val {
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
}
.crm-card-co {
    font-size: 11px;
    color: var(--gray);
    margin-top: 2px;
}
.crm-ai {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: #059669;
    background: #d1fae5;
    border-radius: 100px;
    padding: 2px 8px;
    margin-top: 6px;
}

.screen-autopilot {
    padding: 24px;
    background: #fff;
}
.ap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.ap-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}
.ap-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    background: var(--green-light);
    padding: 5px 12px;
    border-radius: 100px;
}
.ap-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: blink 1.5s infinite;
}
.ap-log {
    background: var(--gray-light);
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border);
}
.ap-row {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.ap-row:last-child {
    border-bottom: none;
}
.ap-row-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.ap-row-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}
.ap-row-reason {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.5;
}
.ap-row-time {
    font-size: 10px;
    color: #9ca3af;
    margin-top: 3px;
}

/* ── COMO ── */
#como {
    background: var(--gray-light);
}
.how-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.steps-list {
    display: flex;
    flex-direction: column;
}
.step {
    display: flex;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}
.step:last-child {
    border-bottom: none;
}
.step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    transition: all 0.2s;
    margin-top: 2px;
}
.step:hover .step-num {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-light);
}
.step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.step-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
}
.stats-panel {
    background: var(--dark);
    border-radius: var(--r-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.stats-heading {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 4px;
}
.stat-row {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r-sm);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stat-lbl {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}
.stat-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--neon);
    letter-spacing: -0.02em;
}

/* ── PREÇOS ── */
#precos {
    background: #fff;
    padding: 96px 24px;
}
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 32px 0 48px;
}
.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
}
.toggle-label.active {
    color: var(--dark);
}
.toggle-pill {
    width: 48px;
    height: 26px;
    border-radius: 100px;
    background: var(--green);
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
}
.toggle-pill::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s;
}
.toggle-pill.annual::after {
    transform: translateX(22px);
}
.toggle-save {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: var(--amber);
    padding: 3px 9px;
    border-radius: 100px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.plan-card {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    position: relative;
    transition: transform 0.15s;
}
.plan-card:hover {
    transform: translateY(-4px);
}
.plan-card.featured {
    border: 2px solid var(--green);
    background: #f0fdf4;
}
.plan-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}
.plan-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}
.plan-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}
.plan-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.04em;
    line-height: 1;
}
.plan-period {
    font-size: 14px;
    color: var(--gray);
}
.plan-annual-note {
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 16px;
    min-height: 18px;
}
.plan-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.pf {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--dark);
    line-height: 1.4;
}
.pf-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.pf-icon svg {
    width: 10px;
    height: 10px;
}
.pf.off {
    color: #9ca3af;
}
.pf.off .pf-icon {
    background: #f3f4f6;
}
.plan-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: var(--r-sm);
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: none;
    transition: all 0.15s;
}
.btn-plan-green {
    background: var(--green);
    color: #fff;
}
.btn-plan-green:hover {
    background: #15803d;
}
.btn-plan-sec {
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--border);
}
.btn-plan-sec:hover {
    border-color: var(--green);
    color: var(--green);
}
.btn-plan-out {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--border);
}
.btn-plan-out:hover {
    border-color: #9ca3af;
}
.pricing-note {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--gray);
}
.pricing-note a {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
}

/* ── DEPOIMENTOS ── */
#depoimentos {
    background: var(--gray-light);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
}
.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: #f59e0b;
    font-size: 16px;
}
.testi-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--gray-light);
    border: 2px dashed var(--border);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 12px;
    text-align: center;
    padding: 16px;
}
.testi-img-placeholder svg {
    width: 28px;
    height: 28px;
    opacity: 0.4;
}
.testi-text {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}
.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}
.testi-role {
    font-size: 12px;
    color: var(--gray);
}
.testi-result {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: var(--green-dark);
    background: var(--green-light);
    padding: 3px 10px;
    border-radius: 100px;
    margin-top: 6px;
}

/* ── FAQ ── */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.15s;
    gap: 16px;
}
.faq-question:hover {
    color: var(--green);
}
.faq-icon {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: var(--gray);
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--green);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}
.faq-answer p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.75;
}

/* ── FINAL CTA ── */
#final-cta {
    background: var(--green);
    padding: 80px 24px;
}
.final-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.final-inner h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 16px;
}
.final-inner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin-bottom: 36px;
}
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--green-dark);
    padding: 16px 32px;
    border-radius: var(--r-sm);
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.1s;
}
.btn-white:hover {
    transform: scale(1.02);
}
.final-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 22px;
}
.final-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}
.final-trust-item svg {
    width: 13px;
    height: 13px;
}

/* ── TOAST ── */
#sp-toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    max-width: 310px;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.35s,
        transform 0.35s;
    transform: translateY(10px);
}
#sp-toast.visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}
.spt-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}
.spt-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}
.spt-action {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.4;
    margin-top: 1px;
}
.spt-time {
    font-size: 11px;
    color: var(--green);
    font-weight: 600;
    margin-top: 3px;
}
.spt-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #9ca3af;
    cursor: pointer;
    flex-shrink: 0;
    line-height: 1;
    padding: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 52px;
        padding: 80px 0 64px;
    }
    .hero-visual {
        order: -1;
    }
    .pain-grid {
        grid-template-columns: 1fr;
    }
    .agent-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cases-grid {
        grid-template-columns: 1fr 1fr;
    }
    .how-layout {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .testi-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .screen-inbox {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .hero-ctas {
        flex-direction: column;
    }
    .agent-grid {
        grid-template-columns: 1fr;
    }
    .cases-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 64px 20px;
    }
}

/* ── FOOTER ── */
#footer {
    background: var(--dark);
    padding: 64px 24px 32px;
}
.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .f-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.footer-brand .f-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-brand .f-logo-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}
.footer-brand .f-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}
.footer-brand .f-logo-img {
    height: 78px;
    object-fit: contain;
}
.footer-brand .f-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.footer-social a:hover {
    background: rgba(255, 255, 255, 0.12);
}
.footer-social a svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.5);
}
.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.15s;
}
.footer-col ul li a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.15s;
}
.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ── CHAT LAUNCHER ── */
#interazap-chat-launcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(22, 163, 74, 0.35);
    transition:
        background 0.15s,
        transform 0.1s;
    font-family: inherit;
}
#interazap-chat-launcher:hover {
    background: #15803d;
    transform: translateY(-1px);
}
#interazap-chat-launcher svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
#interazap-chat-launcher .cl-ping {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
}
#interazap-chat-launcher .cl-ping::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    animation: blink 1.5s infinite;
}
#interazap-chat-launcher .cl-ping::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #fff;
}
@media (max-width: 600px) {
    #interazap-chat-launcher span.cl-label {
        display: none;
    }
    #interazap-chat-launcher {
        padding: 16px;
        border-radius: 50%;
    }
}

/* ── EXIT-INTENT MODAL ── */
#exit-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}
#exit-modal.flex {
    display: flex;
}
.em-panel {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 32px;
    width: 100%;
    max-width: 440px;
    position: relative;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}
.em-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.em-close:hover {
    background: var(--border);
}
.em-close svg {
    width: 16px;
    height: 16px;
    color: var(--gray);
}
.em-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.em-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}
.em-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.em-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.em-field input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 14px;
    color: var(--dark);
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
}
.em-field input:focus {
    border-color: var(--green);
}
.em-field input::placeholder {
    color: #9ca3af;
}
.em-lgpd {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
}
.em-lgpd input {
    margin-top: 2px;
    accent-color: var(--green);
}
.em-lgpd a {
    color: var(--green);
    text-decoration: underline;
}
.em-error {
    font-size: 12px;
    color: #dc2626;
    background: #fef2f2;
    padding: 8px 12px;
    border-radius: var(--r-sm);
    display: none;
}
.em-error.show {
    display: block;
}
.em-actions {
    display: flex;
    gap: 10px;
}
.em-dismiss {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.15s;
}
.em-dismiss:hover {
    border-color: #9ca3af;
}
.em-submit {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--green);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}
.em-submit:hover {
    background: #15803d;
}
.em-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.em-success {
    text-align: center;
    padding: 24px 0;
    display: none;
}
.em-success.show {
    display: block;
}
.em-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.em-success-icon svg {
    width: 28px;
    height: 28px;
    color: var(--green);
}
.em-success h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}
.em-success p {
    font-size: 14px;
    color: var(--gray);
}

/* ── COOKIE BANNER ── */
#iz-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 70;
    background: var(--dark-2);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#iz-cookie-banner.visible {
    transform: translateY(0);
}
.cb-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.cb-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    flex: 1;
    min-width: 200px;
}
.cb-text a {
    color: var(--neon);
    text-decoration: underline;
}
.cb-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cb-essential {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--r-sm);
    cursor: pointer;
    font-family: inherit;
    transition:
        color 0.15s,
        border-color 0.15s;
}
.cb-essential:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}
.cb-all {
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--r-sm);
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}
.cb-all:hover {
    background: #15803d;
}

/* ── NAVBAR ── */
#navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    transition:
        background 0.3s,
        box-shadow 0.3s;
    background: var(--dark);
}
#navbar.scrolled {
    background: rgba(12, 14, 20, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.nav-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-logo-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}
.nav-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}
.nav-logo-img {
    height: 78px;
    object-fit: contain;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.15s;
}
.nav-links a:hover {
    color: #fff;
}
.nav-cta {
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: background 0.15s;
}
.nav-cta:hover {
    background: #15803d;
}
.nav-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-menu-btn svg {
    width: 24px;
    height: 24px;
    color: #fff;
}
.nav-mobile {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(12, 14, 20, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
}
.nav-mobile.open {
    display: block;
}
.nav-mobile a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.15s;
}
.nav-mobile a:last-child {
    border-bottom: none;
}
.nav-mobile a:hover {
    color: #fff;
}
.nav-mobile .nav-mobile-cta {
    display: block;
    text-align: center;
    margin-top: 12px;
    background: var(--green);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px;
    border-radius: var(--r-sm);
    text-decoration: none;
}
@media (max-width: 760px) {
    .nav-links {
        display: none;
    }
    .nav-menu-btn {
        display: block;
    }
}
