/* ===== Tokens ===== */
:root {
  --navy: #16335f;
  --navy-deep: #102744;
  --blue: #1e6fb0;
  --blue-bright: #2ba0db;
  --blue-soft: #eaf4fb;
  --cyan: #29b6e8;
  --ink: #1c2a3a;
  --muted: #5b6b7e;
  --line: #e3e9f0;
  --bg: #ffffff;
  --bg-alt: #f4f8fc;
  --white: #ffffff;
  --wa: #25d366;
  --wa-dark: #1da851;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(16, 39, 68, 0.08);
  --shadow-lg: 0 24px 60px rgba(16, 39, 68, 0.16);
  --maxw: 1140px;
  --grad: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Plus Jakarta Sans", "Manrope", sans-serif; line-height: 1.18; color: var(--navy); font-weight: 800; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: .98rem; border-radius: 999px;
  padding: 13px 26px; cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(30,111,176,.28); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-outline.btn-light { color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline.btn-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-whatsapp { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.3); }
.btn-whatsapp:hover { background: var(--wa-dark); }

/* ===== Faixa de segmentação ===== */
.seg-bar { background: var(--navy-deep); color: rgba(255,255,255,.9); font-size: .9rem; }
.seg-bar .container { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; padding: 10px 24px; }
.seg-bar strong { color: #fff; }
.seg-bar a { color: var(--cyan); font-weight: 700; white-space: nowrap; transition: opacity .15s; }
.seg-bar a:hover { opacity: .8; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 600; font-size: .95rem; color: var(--ink); transition: color .15s; }
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); position: relative; }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--blue); border-radius: 2px; }
.nav-seg { color: var(--blue) !important; font-weight: 700; }
.nav-seg:hover { color: var(--blue-bright) !important; }
.nav-cta { color: #fff !important; }

/* Dropdown de navegação */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-drop-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-weight: 600; font-size: .95rem; color: var(--ink);
  background: none; border: 0; cursor: pointer; padding: 0;
}
.nav-drop-toggle .chev { width: 14px; height: 14px; transition: transform .2s; }
.nav-item.open .nav-drop-toggle .chev { transform: rotate(180deg); }
.nav-drop-toggle:hover, .nav-item.open .nav-drop-toggle, .nav-drop-toggle.active { color: var(--blue); }
.nav-drop-toggle.active { position: relative; }
.nav-drop-toggle.active::after { content: ""; position: absolute; left: 0; right: 18px; bottom: -8px; height: 2px; background: var(--blue); border-radius: 2px; }
/* ponte invisível para o hover não “cair” no caminho até o menu */
.nav-item::before { content: ""; position: absolute; left: -10px; right: -10px; top: 100%; height: 18px; }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 256px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s; z-index: 110;
}
.nav-item:hover .nav-dropdown, .nav-item.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a { padding: 10px 14px; border-radius: 8px; font-size: .92rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.nav-dropdown a small { display: block; font-weight: 500; font-size: .78rem; color: var(--muted); margin-top: 2px; }
.nav-dropdown a:hover { background: var(--blue-soft); color: var(--blue); }
.nav-dropdown a.active { color: var(--blue); background: var(--blue-soft); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.eyebrow {
  display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow-light { color: #fff; background: rgba(255,255,255,.16); }
.badge-new {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: .82rem; letter-spacing: .01em;
  color: var(--blue); background: var(--blue-soft);
  border: 1px solid rgba(43,160,219,.28);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.badge-new-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue-bright);
  box-shadow: 0 0 0 0 rgba(43,160,219,.5); animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(43,160,219,.45); }
  70% { box-shadow: 0 0 0 8px rgba(43,160,219,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,160,219,0); }
}
@media (prefers-reduced-motion: reduce) { .badge-new-dot { animation: none; } }
.hero {
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(43,160,219,.16), transparent 60%),
    linear-gradient(180deg, #f7fbfe 0%, #ffffff 100%);
  padding: 72px 0 80px; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.3rem); margin-bottom: 20px; }
.hero h1 .accent { color: var(--blue); }
.hero .lead { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-badges li { font-weight: 600; font-size: .92rem; color: var(--navy); }

/* Gráfico do hero (marca) */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 400px; }
.hero-diamond { width: 320px; max-width: 80%; height: auto; filter: drop-shadow(0 26px 55px rgba(30,111,176,.32)); animation: float 6s ease-in-out infinite; }
.chip {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .92rem; color: var(--navy); white-space: nowrap;
}
.chip-ico { width: 30px; height: 30px; border-radius: 9px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.chip-ico svg { width: 18px; height: 18px; }
.chip strong { color: var(--blue); font-family: "Plus Jakarta Sans"; font-size: 1.05rem; }
.chip-1 { top: 26px; left: 0; animation: float 6s ease-in-out infinite; }
.chip-2 { bottom: 70px; right: -6px; animation: float 6s ease-in-out infinite .8s; }
.chip-3 { bottom: 10px; left: 24px; animation: float 6s ease-in-out infinite 1.6s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .hero-diamond, .chip { animation: none; } }

/* ===== Trust strip ===== */
.trust-strip { background: var(--navy); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 28px 24px; }
.trust-grid div { text-align: center; }
.trust-grid strong { display: block; font-family: "Plus Jakarta Sans"; font-weight: 700; color: #fff; font-size: 1.1rem; }
.trust-grid span { font-size: .85rem; color: rgba(255,255,255,.7); }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ===== Cards 3 / 4 ===== */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfe0ee; }
.card-icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px;
}
.card-icon .ico { width: 28px; height: 28px; color: var(--blue); }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }

/* ===== Regimes ===== */
.regimes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.regime {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; position: relative; overflow: hidden;
  transition: transform .18s, box-shadow .18s;
}
.regime::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--grad); }
.regime:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.regime h3 { font-size: 1.3rem; color: var(--blue); margin-bottom: 10px; }
.regime p { color: var(--muted); font-size: .94rem; }

/* ===== BPO ===== */
.bpo { background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, #1a4178 100%); color: #fff; }
.bpo .section-head h2, .bpo .about-text h2 { color: #fff; }
.bpo .section-head p { color: rgba(255,255,255,.82); }
.bpo .section-head p strong { color: #fff; }
.bpo-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 56px; }
.bpo-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 30px 26px;
}
.bpo-num { font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 1.4rem; color: var(--cyan); }
.bpo-item h3 { color: #fff; font-size: 1.2rem; margin: 12px 0 8px; }
.bpo-item p { color: rgba(255,255,255,.78); font-size: .96rem; }

.bpo-audience { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 40px; }
.bpo-audience > h3 { color: #fff; text-align: center; font-size: 1.5rem; margin-bottom: 30px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 36px; }
.audience {
  position: relative; overflow: hidden; text-align: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 34px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s, background .2s;
}
.audience::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.audience:hover {
  transform: translateY(-6px); background: rgba(255,255,255,.08);
  border-color: rgba(43,160,219,.45); box-shadow: 0 22px 48px rgba(0,0,0,.3);
}
.audience:hover::before { transform: scaleX(1); }
.audience-icon {
  width: 62px; height: 62px; border-radius: 16px; margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(41,182,232,.24), rgba(30,111,176,.1));
  border: 1px solid rgba(43,160,219,.4); color: var(--cyan);
  box-shadow: 0 10px 26px rgba(41,182,232,.2);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.audience:hover .audience-icon { transform: scale(1.08); }
.audience-icon svg { width: 30px; height: 30px; }
.audience h4 { color: #fff; font-size: 1.12rem; margin-bottom: 10px; }
.audience p { color: rgba(255,255,255,.78); font-size: .92rem; }
.bpo-focus {
  text-align: center; max-width: 780px; margin: 0 auto; color: #fff; font-size: 1.08rem;
  background: linear-gradient(135deg, rgba(41,182,232,.15), rgba(30,111,176,.07));
  border: 1px solid rgba(43,160,219,.32); border-radius: var(--radius);
  padding: 26px 34px;
}
.bpo-focus strong { color: var(--cyan); }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; text-align: center; position: relative; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--grad); color: #fff;
  font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  box-shadow: 0 8px 18px rgba(30,111,176,.3);
}
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .96rem; }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 860px; margin: 0 auto; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 32px; position: relative; display: flex; flex-direction: column;
}
.price-card.featured { border: 2px solid var(--blue); box-shadow: var(--shadow); }
.price-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: .78rem; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; letter-spacing: .03em;
}
.price-card h3 { font-size: 1.5rem; margin-bottom: 6px; white-space: nowrap; }
.price-from { font-size: 1.05rem; color: var(--blue); margin-bottom: 6px; }
.price-from strong { font-size: 1.3rem; }
.price-desc { color: var(--muted); font-size: .95rem; margin-bottom: 20px; min-height: 3rem; }
.price-list { list-style: none; margin-bottom: 26px; display: grid; gap: 12px; flex: 1; }
.price-list li { padding-left: 30px; position: relative; color: var(--ink); font-size: .96rem; }
.price-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--wa-dark); font-weight: 800; background: #e8f8ee; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; }
.price-list li.no { color: var(--muted); text-decoration: line-through; text-decoration-color: #e0a8a8; }
.price-list li.no::before { content: "✕"; color: #d64545; background: #fdecec; }
.pricing-note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 26px; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }
.about-list { list-style: none; display: grid; gap: 12px; margin-top: 22px; }
.about-list li { padding-left: 28px; position: relative; }
.about-list li::before { content: "→"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.about-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow); }
.about-card h3 { font-size: 1.3rem; margin-bottom: 20px; }
.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li { padding-left: 32px; position: relative; color: var(--ink); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: #fff; background: var(--grad); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 800; }

/* ===== FAQ ===== */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 22px; transition: border-color .15s; }
.faq details[open] { border-color: var(--blue); box-shadow: var(--shadow); }
.faq summary { font-family: "Plus Jakarta Sans"; font-weight: 700; color: var(--navy); cursor: pointer; padding: 18px 0; list-style: none; position: relative; padding-right: 34px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--blue); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { color: var(--muted); padding: 0 0 20px; }

/* ===== CTA final ===== */
.cta-final { background: var(--grad); padding: 72px 0; }
.cta-box { text-align: center; }
.cta-box h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.cta-box p { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.72); padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .92rem; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: .92rem; color: rgba(255,255,255,.72); margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; color: rgba(255,255,255,.5); }

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: transform .2s;
  animation: wa-pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ===== Pain cards ===== */
.card.pain { border-top: 4px solid var(--blue); }
.card.pain .card-icon { background: #fff3ec; }

.dores-cta { text-align: center; margin-top: 48px; }
.dores-cta p { font-size: 1.15rem; color: var(--muted); margin-bottom: 18px; }
.dores-cta strong { color: var(--navy); }

/* ===== Seção jurídico (fundo escuro) ===== */
.juridico { background: linear-gradient(160deg, #14305a 0%, var(--navy) 100%); color: #fff; }
.juridico .about-text h2 { color: #fff; }
.juridico .about-text p { color: rgba(255,255,255,.82); }
.about-list.light li { color: rgba(255,255,255,.9); }
.about-list.light li::before { color: var(--cyan); }
.about-card.glass { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); box-shadow: none; }
.about-card.glass h3 { color: #fff; }
.check-list.light li { color: rgba(255,255,255,.9); }

/* ===== Landing MEI ===== */
.lp-nav a { font-size: .92rem; }
.lp-hero { text-align: center; padding: 64px 0 56px; }
.lp-hero-content { max-width: 720px; margin: 0 auto; }
.lp-hero .lead { margin-left: auto; margin-right: auto; }
.lp-price-tag { display: inline-flex; flex-direction: column; align-items: center; background: var(--blue-soft); border-radius: var(--radius); padding: 14px 30px; margin: 0 0 26px; }
.lp-price-tag span { font-size: .85rem; color: var(--blue); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.lp-price-tag strong { font-family: "Plus Jakarta Sans"; font-size: 2.6rem; color: var(--navy); line-height: 1; }
.lp-price-tag strong small { font-size: 1rem; font-weight: 600; color: var(--muted); }
.hero-badges.center { justify-content: center; }
.lp-pricing { grid-template-columns: repeat(3, 1fr); max-width: none; }

/* ===== Página 404 ===== */
.error-page {
  background:
    radial-gradient(800px 400px at 80% -10%, rgba(43,160,219,.14), transparent 60%),
    linear-gradient(180deg, #f7fbfe 0%, #ffffff 100%);
  padding: 90px 0 100px;
}
.error-wrap { max-width: 640px; margin: 0 auto; text-align: center; }
.error-code {
  font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: clamp(5rem, 16vw, 9rem);
  line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 8px;
}
.error-wrap h1 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 14px; }
.error-wrap > p { color: var(--muted); font-size: 1.1rem; margin-bottom: 30px; }
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.error-links { font-size: .95rem; color: var(--muted); }
.error-links span { margin-right: 6px; }
.error-links a { color: var(--blue); font-weight: 700; margin: 0 8px; }
.error-links a:hover { text-decoration: underline; }
@media (max-width: 540px) { .error-actions .btn { width: 100%; } }

/* ===== Página Contabilidade ===== */
.hero-contab {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #1a4178 100%);
  color: #fff; padding: 84px 0 76px; overflow: hidden;
}
.hero-center { max-width: 820px; margin: 0 auto; text-align: center; }
.hero-contab h1 { color: #fff; font-size: clamp(2.1rem, 4.5vw, 3.2rem); margin-bottom: 22px; }
.hero-contab h1 .accent-light { color: var(--cyan); }
.hero-contab .lead { color: rgba(255,255,255,.85); font-size: 1.18rem; max-width: 680px; margin: 0 auto 30px; }
.hero-actions.center { justify-content: center; }
.hero-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.14);
}
.hero-pillars div { text-align: center; }
.hero-pillars strong { display: block; font-family: "Plus Jakarta Sans"; font-weight: 700; color: #fff; font-size: 1.08rem; margin-bottom: 4px; }
.hero-pillars span { font-size: .9rem; color: rgba(255,255,255,.7); }
@media (max-width: 720px) { .hero-pillars { grid-template-columns: 1fr; gap: 22px; } }

.section.narrow { padding-top: 56px; padding-bottom: 56px; }
.lead-band { max-width: 760px; margin: 0 auto; text-align: center; }
.lead-band p { font-size: 1.3rem; line-height: 1.6; color: var(--ink); }
.lead-band strong { color: var(--navy); }

/* cards suaves (dores, tom sereno) */
.card.soft { background: var(--bg-alt); border-color: transparent; }
.card-icon.muted { background: #eef2f7; }
.card-icon.muted .ico { color: var(--muted); }

.note-soft { text-align: center; max-width: 720px; margin: 40px auto 0; font-size: 1.08rem; color: var(--muted); }
.note-soft strong { color: var(--navy); }

/* cards de situações (casos) */
.case-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .18s, box-shadow .18s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.case-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); background: #eef2f7; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.case-tag.solve { color: var(--blue); background: var(--blue-soft); margin-top: 18px; }
.case-sit { font-style: italic; color: var(--ink); font-size: 1.02rem; }
.case-sol { color: var(--muted); font-size: .98rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .cards-3, .cards-4, .regimes-grid, .bpo-services, .audience-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 4px;
    transform: translateY(-130%); transition: transform .3s ease; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links a.active::after { display: none; }
  /* Dropdown em acordeão no mobile */
  .nav-item { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-item::before { display: none; }
  .nav-drop-toggle { width: 100%; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-drop-toggle.active::after { display: none; }
  .nav-dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; border-radius: 0; padding: 4px 0 8px 14px; min-width: 0; display: none;
  }
  .nav-item.open .nav-dropdown { display: flex; transform: none; }
  .nav-dropdown a { padding: 10px 0; border-bottom: 0; }
  .nav-cta { margin-top: 10px; }
  .section { padding: 60px 0; }
  .pricing-grid, .lp-pricing { grid-template-columns: 1fr; }
  .bpo-audience { padding: 28px 20px; }
  .hero-visual { min-height: 320px; }
  .hero-diamond { width: 230px; }
  .chip { font-size: .82rem; padding: 9px 13px; }
  .chip-2 { right: 0; }
}
@media (max-width: 540px) {
  .cards-3, .cards-4, .regimes-grid, .bpo-services, .audience-grid, .steps, .footer-grid, .trust-grid { grid-template-columns: 1fr; }
  .hero-stat-card { grid-template-columns: 1fr 1fr; }
  .btn-lg { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ===== BPO page ===== */
.about-grid.reverse { grid-template-columns: .9fr 1.1fr; }

/* Dados de pesquisa (sobre faixa escura .bpo) */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.stat { text-align: center; padding: 8px; }
.stat .num { display: block; font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: clamp(2.4rem, 5.5vw, 3.4rem); color: var(--cyan); line-height: 1; }
.stat .lbl { display: block; color: rgba(255,255,255,.85); margin: 14px auto 0; max-width: 240px; font-size: .98rem; }
.stat .src { display: block; color: rgba(255,255,255,.5); font-size: .74rem; margin-top: 10px; text-transform: uppercase; letter-spacing: .06em; }
.stat-note {
  text-align: center; max-width: 720px; margin: 44px auto 0; color: #fff; font-size: 1.12rem; line-height: 1.6;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 24px 30px;
}
.stat-note strong { color: var(--cyan); }

/* Conceito: fluxo de caixa x caixa livre */
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.concept {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.concept:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfe0ee; }
.concept .tag {
  display: inline-block; font-weight: 700; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--blue); background: var(--blue-soft); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.concept h3 { font-size: 1.2rem; margin-bottom: 10px; }
.concept p { color: var(--muted); font-size: .98rem; }

/* Comparativo CLT x BPO */
.compare {
  max-width: 820px; margin: 0 auto; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.compare-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; align-items: center; }
.compare-row + .compare-row { border-top: 1px solid var(--line); }
.compare-row > div { padding: 15px 18px; font-size: .95rem; }
.compare-head { background: var(--bg-alt); font-family: "Plus Jakarta Sans"; font-weight: 700; }
.compare-head .col-clt { color: var(--muted); }
.compare-head .col-bpo { color: var(--blue); }
.compare .feat { font-weight: 600; color: var(--ink); }
.compare .col-clt { color: var(--muted); }
.compare .col-bpo { background: var(--blue-soft); color: var(--navy); font-weight: 600; height: 100%; display: flex; align-items: center; }
.compare .yes { color: var(--wa-dark); font-weight: 800; margin-right: 6px; }
.compare .no { color: #d64545; font-weight: 800; margin-right: 6px; }
.compare-foot { text-align: center; max-width: 760px; margin: 18px auto 0; font-size: .92rem; color: var(--muted); }

/* Planos em 3 / 4 colunas */
.pricing-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1040px; margin: 0 auto; align-items: stretch; }
.pricing-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1180px; margin: 0 auto; align-items: stretch; }
.pricing-4 .price-card { padding: 32px 24px; }

/* Selo de vagas (faixa reservada para alinhar todos os cards) */
.price-flag { min-height: 52px; display: flex; flex-direction: column; align-items: flex-start; gap: 5px; margin-bottom: 14px; }
.flag-pill {
  display: inline-block; font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em;
  color: #fff; background: var(--navy); padding: 5px 12px; border-radius: 999px;
}
.flag-note { font-size: .82rem; font-weight: 600; color: var(--blue); }

/* Valor: rótulo "A partir de" + valor em destaque, alinhados entre os cards */
.pricing-aligned .price-from { margin-bottom: 16px; }
.pricing-aligned .from-label { display: block; font-size: .82rem; font-weight: 600; color: var(--muted); margin-bottom: 2px; }
.pricing-aligned .price-value { display: block; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.32rem; color: var(--navy); line-height: 1.2; white-space: nowrap; }
.pricing-aligned .price-value small { font-size: .92rem; font-weight: 600; color: var(--muted); }

@media (max-width: 960px) {
  .about-grid.reverse { grid-template-columns: 1fr; }
  .pricing-3 { grid-template-columns: 1fr; max-width: 460px; }
  .pricing-4 { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
}
@media (max-width: 720px) {
  .stat-grid { grid-template-columns: 1fr; gap: 32px; }
  .concept-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.3fr 1fr 1fr; }
  .compare-row > div { padding: 13px 12px; font-size: .86rem; }
}

/* Vantagem Valorize — pull-quote + cards */
.juntos-head { text-align: center; max-width: 880px; margin: 0 auto 46px; }
.pull-quote {
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; border: 0;
  font-size: clamp(1.7rem, 4vw, 2.9rem); line-height: 1.25; color: #fff;
  margin: 8px auto 24px; max-width: 880px;
}
.pull-quote .accent-light { color: var(--cyan); }
.pull-sub { color: rgba(255,255,255,.92); font-size: 1.14rem; line-height: 1.65; max-width: 720px; margin: 0 auto; }
.pull-sub strong { color: #fff; }

.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.advantage {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.advantage:hover { transform: translateY(-5px); background: rgba(255,255,255,.09); border-color: rgba(43,160,219,.45); box-shadow: 0 20px 44px rgba(0,0,0,.3); }
.advantage.highlight { background: linear-gradient(135deg, rgba(41,182,232,.16), rgba(30,111,176,.06)); border-color: rgba(43,160,219,.4); }
.advantage-ico {
  width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--cyan);
  background: linear-gradient(135deg, rgba(41,182,232,.24), rgba(30,111,176,.1)); border: 1px solid rgba(43,160,219,.4);
}
.advantage-ico svg { width: 24px; height: 24px; }
.advantage h3 { color: #fff; font-size: 1.06rem; margin-bottom: 8px; }
.advantage p { color: rgba(255,255,255,.78); font-size: .92rem; }
.advantage .hl { color: var(--cyan); }

@media (max-width: 960px) { .advantage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) {
  .advantage-grid { grid-template-columns: 1fr; }
  .pricing-4 { grid-template-columns: 1fr; max-width: 460px; }
}
