/* ================================================================
   iTracker — Site Institucional
   Fonte: Exo 2 (Google Fonts)
   Paleta: Navy #1E2448 | Laranja #F26C1D | Branco #FFFFFF
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

:root {
    --navy:         #1E2448;
    --navy-mid:     #252C55;
    --navy-dark:    #11152C;
    --orange:       #F26C1D;
    --orange-dim:   rgba(242,108,29,.12);
    --orange-dark:  #d45a10;
    --white:        #fff;
    --text:         #1a1a2e;
    --muted:        #6b7280;
    --border:       #e5e7eb;
    --bg:           #F4F6FA;
    --radius:       12px;
    --radius-lg:    20px;
    --shadow:       0 4px 24px rgba(30,36,72,.10);
    --shadow-lg:    0 8px 40px rgba(30,36,72,.18);
    --transition:   .2s ease;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 15px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilitários ───────────────────────────────────────────────── */
.container   { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section     { padding: 80px 0; }
.section--bg { background: var(--bg); }

.sec-eyebrow {
    display: inline-block;
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sec-title {
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -.3px;
}
.sec-sub {
    font-size: .97rem;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 48px;
}
.text-center         { text-align: center; }
.text-center .sec-sub { margin-left: auto; margin-right: auto; }

/* white section overrides */
.section--navy            { background: var(--navy); color: var(--white); }
.section--navy .sec-title { color: var(--white); }
.section--navy .sec-sub   { color: rgba(255,255,255,.6); }

/* ── Botões ───────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(242,108,29,.35);
}
.btn-outline {
    background: transparent;
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.3);
}
.btn-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ── Header / Nav ─────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 2px 16px rgba(0,0,0,.18);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.header-logo img { height: 38px; width: auto; object-fit: contain; }
.header-logo-text { color: #fff; font-size: 17px; font-weight: 800; letter-spacing: .5px; }
.header-logo-text span { color: var(--orange); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
    color: rgba(255,255,255,.62);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 7px;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.08); }

.header-cta { margin-left: 12px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--navy-dark);
    padding: 12px 28px 20px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.mobile-nav.open   { display: flex; }
.mobile-nav .nav-link { padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.07); border-radius: 0; }
.mobile-nav .btn      { margin-top: 14px; justify-content: center; }

/* ── Hero (home) ──────────────────────────────────────────────── */
.hero { background: var(--navy); overflow: hidden; }

.hero-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 340px;
    gap: 0;
    align-items: center;
    padding: 56px 40px;
}

/* Col 1 — logo iTracker */
.hero-logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 32px;
    border-right: 1px solid rgba(255,255,255,.08);
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-dim);
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 20px;
    margin-bottom: 28px;
    align-self: flex-start;
}
.hero-eyebrow::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}
.hero-brand-img {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin-bottom: 12px;
}
.hero-brand-text { margin-bottom: 12px; }
.hbt-i { color: #fff;           font-size: 52px; font-weight: 900; letter-spacing: -2px; line-height: 1; }
.hbt-t { color: var(--orange);  font-size: 52px; font-weight: 900; letter-spacing: -2px; line-height: 1; }
.hero-brand-sub {
    color: rgba(255,255,255,.3);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .3px;
}

/* Col 2 — headline + botões */
.hero-left {
    display: flex;
    flex-direction: column;
    padding: 0 32px;
}
.hero-title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.4px;
}
.hero-title em { color: var(--orange); font-style: normal; }
.hero-desc {
    color: rgba(255,255,255,.55);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Col 3 — card app */
.app-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.app-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.app-card-title { color: #fff; font-size: 13px; font-weight: 700; }
.app-card-dots  { display: flex; gap: 6px; }
.app-card-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); }
.app-card-dots span.active { background: #22c55e; }

.app-map-wrap {
    position: relative;
    height: 180px;
    background: #2a3260;
    overflow: hidden;
}
.app-map-wrap iframe {
    width: 100%; height: 100%;
    border: none;
    pointer-events: none;
    opacity: .75;
    display: block;
}
.app-map-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(30,36,72,.6) 100%);
    pointer-events: none;
}
.app-map-pin {
    position: absolute;
    left: 50%; top: 45%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}
.pin-body {
    width: 32px; height: 32px;
    background: var(--orange);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 8px rgba(242,108,29,.22);
}
.pin-dot { width: 11px; height: 11px; background: #fff; border-radius: 50%; transform: rotate(45deg); }

.app-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }

.app-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.app-stat { background: rgba(255,255,255,.07); border-radius: 10px; padding: 10px 8px; text-align: center; }
.app-stat-val { color: #fff; font-size: 13px; font-weight: 700; }
.app-stat-lbl { color: rgba(255,255,255,.38); font-size: 9px; text-transform: uppercase; letter-spacing: .8px; margin-top: 2px; }

.app-alerts { display: flex; flex-direction: column; gap: 7px; }
.app-alert  { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.05); border-radius: 8px; padding: 9px 12px; }
.a-dot      { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.a-dot.green  { background: #22c55e; }
.a-dot.orange { background: var(--orange); }
.a-text { color: rgba(255,255,255,.75); font-size: 12px; flex: 1; }
.a-time { color: rgba(255,255,255,.28); font-size: 11px; }

/* Stats bar (abaixo do hero) */
.statsbar { background: rgba(0,0,0,.25); border-top: 1px solid rgba(255,255,255,.06); }
.statsbar-wrap { display: flex; justify-content: center; gap: 64px; padding: 24px 40px; }
.stat-item     { text-align: center; }
.stat-val { color: #fff; font-size: 24px; font-weight: 800; }
.stat-lbl { color: rgba(255,255,255,.38); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px; }

/* ── Page hero (páginas internas) ─────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 64px 0 56px;
    text-align: center;
}
.page-hero .sec-eyebrow { display: block; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; color: var(--white); }
.page-hero p  { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }

/* ── Como Funciona — home (3 cards) ───────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.step  { background: #fff; padding: 36px 28px; }
.step-num { width: 40px; height: 40px; background: var(--navy); color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; margin-bottom: 20px; }
.step h3  { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step p   { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ── Como Funciona — página completa ─────────────────────────── */
.flow-steps {}
.flow-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}
.flow-step:last-child  { border-bottom: none; }
.flow-step-num {
    width: 64px; height: 64px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    flex-shrink: 0;
}
.flow-step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.flow-step p  { color: var(--muted); line-height: 1.7; font-size: .95rem; }

/* ── Diferenciais ─────────────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color var(--transition);
}
.feat:hover { border-color: #cdd2e0; }
.feat-icon  { width: 44px; height: 44px; background: var(--orange-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.feat h3    { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feat p     { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ── Diferenciais — versão navy (sobre) ──────────────────────── */
.features-navy { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
.feat-navy {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
}
.feat-navy:hover { background: rgba(255,255,255,.1); border-color: var(--orange); }
.feat-navy .feat-icon { background: rgba(242,108,29,.15); }
.feat-navy h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feat-navy p  { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.6; }

/* ── Planos ───────────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 800px; margin: 0 auto; }
.plan {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}
.plan:hover    { border-color: var(--orange); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan.featured { border-color: var(--orange); box-shadow: 0 8px 40px rgba(242,108,29,.18); }
.plan-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: 10px; font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: .5px;
}
.plan-tier  { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.plan-name  { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 20px; letter-spacing: -.2px; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 6px; }
.plan-price .cur { font-size: 16px; font-weight: 700; color: var(--navy); }
.plan-price .amt { font-size: 44px; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -1px; }
.plan-price .per { font-size: 13px; color: var(--muted); }
.plan-desc  { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.plan-list  { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.plan-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text); }
.chk { width: 17px; height: 17px; background: var(--orange); color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.btn-plan    { display: block; text-align: center; padding: 13px; border-radius: 9px; font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; transition: var(--transition); border: none; }
.btn-plan:hover    { opacity: .85; }
.btn-plan-ol { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-plan-fi { background: var(--orange); color: #fff; }
.plans-note  { text-align: center; margin-top: 22px; color: var(--muted); font-size: 14px; }
.plans-note a { color: var(--orange); font-weight: 600; }

/* ── Depoimentos ──────────────────────────────────────────────── */
.testis { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi  {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    padding: 28px;
}
.testi-stars  { color: var(--orange); font-size: 14px; margin-bottom: 12px; }
.testi p      { color: var(--text); font-size: 14px; line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-av     { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.testi-name   { font-weight: 700; font-size: 14px; color: var(--navy); }
.testi-city   { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ── CTA Banner (laranja) ─────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}
.cta-banner h2  { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
.cta-banner p   { font-size: 1.05rem; margin-bottom: 36px; opacity: .88; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { background: var(--white); color: var(--orange); border-color: var(--white); }
.cta-banner .btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── Sobre ────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { text-align: center; }
.about-visual img { max-width: 320px; margin: 0 auto; }
.about-highlight {
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 32px;
    font-size: .95rem;
    line-height: 1.65;
}
.about-highlight strong { display: block; font-size: 1rem; margin-bottom: 6px; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-btn {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    font-size: .97rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.faq-icon { color: var(--orange); font-size: 1.2rem; flex-shrink: 0; transition: transform .2s; }
.faq-body { display: none; padding: 0 20px 18px; font-size: .92rem; color: var(--muted); line-height: 1.7; }

/* ── Contato ──────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Exo 2', sans-serif;
    font-size: .95rem;
    color: var(--navy);
    outline: none;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,108,29,.12); }
.form-group textarea { min-height: 110px; resize: vertical; }

.contact-item      { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-item-icon { width: 42px; height: 42px; background: var(--orange-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-text p:first-child { font-weight: 600; font-size: .88rem; color: var(--navy); }
.contact-item-text p:last-child  { font-size: .9rem; color: var(--muted); }

.contact-direct {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 32px;
    text-align: center;
}
.contact-direct p { font-size: .92rem; opacity: .78; margin-bottom: 16px; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.06); }
.footer-wrap { padding: 56px 40px 28px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 52px;
    margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,.42); font-size: 14px; line-height: 1.75; max-width: 280px; margin-bottom: 18px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo-wrap img  { height: 26px; object-fit: contain; opacity: .85; }
.footer-logo-div       { width: 1px; height: 22px; background: rgba(255,255,255,.12); }
.footer-aglink {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.35);
    font-size: 12px;
    border: 1px solid rgba(255,255,255,.1);
    padding: 7px 13px;
    border-radius: 6px;
    transition: var(--transition);
}
.footer-aglink:hover { color: #fff; border-color: rgba(255,255,255,.28); }
.footer-aglink strong { color: var(--orange); }

.footer-col h4 { color: #fff; font-size: 11px; font-weight: 700; margin-bottom: 16px; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { color: rgba(255,255,255,.42); font-size: 14px; transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,.25);
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom a:hover { color: #fff; }

/* ── Responsivo ───────────────────────────────────────────────── */
@media (max-width: 900px) {
    .container     { padding: 0 24px; }
    .site-nav, .header-cta { display: none; }
    .hamburger     { display: flex; }

    .hero-wrap     { grid-template-columns: 1fr; padding: 48px 24px; gap: 36px; }
    .hero-logo-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding-right: 0; padding-bottom: 28px; align-items: center; text-align: center; }
    .hero-brand-img { object-position: center; max-width: 180px; }
    .hero-brand-sub { text-align: center; }
    .hero-eyebrow  { align-self: center; }
    .hero-left     { padding: 0; }
    .hero-title    { font-size: 30px; }
    .hbt-i, .hbt-t { font-size: 36px; }

    .statsbar-wrap { gap: 28px; flex-wrap: wrap; padding: 20px 24px; }

    .section       { padding: 60px 0; }
    .steps, .features, .testis { grid-template-columns: 1fr; }
    .plans         { grid-template-columns: 1fr; max-width: 420px; }
    .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
    .footer-wrap   { padding: 56px 24px 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

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

@media (max-width: 640px) {
    .cta-banner    { padding: 64px 0; }
    .cta-banner h2 { font-size: 1.6rem; }
    .plans         { max-width: 100%; }
    .features-navy { grid-template-columns: 1fr; }
    .hero-btns     { justify-content: center; }
}

/* ================================================================
   MELHORIAS DE LAYOUT — v2
   ================================================================ */

/* ── Reveal on scroll ─────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .10s; }
.reveal[data-delay="2"] { transition-delay: .20s; }
.reveal[data-delay="3"] { transition-delay: .30s; }
.reveal[data-delay="4"] { transition-delay: .40s; }

/* ── Mapa SVG puro ────────────────────────────────────────────── */
.app-map-svg { width: 100%; height: 100%; display: block; }

.pin-pulse {
    position: absolute;
    left: 50%; top: 44%;
    transform: translate(-50%, -50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(242,108,29,.3);
    animation: pinPulse 2s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes pinPulse {
    0%   { transform: translate(-50%,-50%) scale(.7); opacity: 1; }
    100% { transform: translate(-50%,-50%) scale(2.0); opacity: 0; }
}

/* ── Ícones SVG nos diferenciais ──────────────────────────────── */
.feat-icon { color: var(--orange); }
.feat-icon svg {
    width: 22px; height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

/* ── Depoimentos — aspas tipográficas ────────────────────────── */
.testi { position: relative; overflow: hidden; padding-top: 40px; }
.testi::before {
    content: '\201C';
    position: absolute;
    top: -4px; left: 16px;
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: var(--orange);
    opacity: .15;
    font-family: Georgia, 'Times New Roman', serif;
    pointer-events: none;
    user-select: none;
}

/* ── Plan toggle mensal/anual ─────────────────────────────────── */
.plan-toggle-wrap {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 7px 22px;
    margin-bottom: 40px;
}
.plan-period-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    transition: color .2s;
    cursor: default;
}
.plan-period-label.active { color: var(--navy); }
.plan-toggle-btn {
    width: 44px; height: 24px;
    background: var(--border);
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background .25s;
    flex-shrink: 0;
}
.plan-toggle-btn.on { background: var(--orange); }
.plan-toggle-knob {
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform .25s;
    box-shadow: 0 1px 4px rgba(0,0,0,.22);
}
.plan-toggle-btn.on .plan-toggle-knob { transform: translateX(20px); }
.plan-toggle-save {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 5px;
    vertical-align: middle;
    letter-spacing: .3px;
}
.plan-soon {
    font-size: 17px;
    font-weight: 700;
    color: var(--muted);
    font-style: italic;
}
.btn-plan-disabled {
    opacity: .38 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
}

/* ── Timeline ─────────────────────────────────────────────────── */
.timeline {
    position: relative;
    padding-left: 28px;
    max-width: 680px;
    margin: 48px auto 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 6px; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange) 0%, var(--border) 100%);
}
.timeline-item {
    position: relative;
    padding-left: 36px;
    padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -19px; top: 2px;
    width: 36px; height: 36px;
    background: var(--orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(242,108,29,.2);
    z-index: 1;
}
.timeline-dot svg {
    width: 16px; height: 16px;
    stroke: #fff; fill: none;
    stroke-width: 2.5;
    stroke-linecap: round; stroke-linejoin: round;
}
.timeline-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 5px;
}
.timeline-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}
.timeline-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

@media (max-width: 640px) {
    .timeline { padding-left: 20px; }
    .timeline-item { padding-left: 28px; }
    .timeline-dot { left: -15px; width: 28px; height: 28px; }
    .timeline-dot svg { width: 12px; height: 12px; }
    .plan-toggle-wrap { padding: 7px 14px; gap: 10px; }
}
