/* ==========================================================================
   NexService â€” Landing page do SaaS
   Design system dark modern (estilo Linear/Vercel)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg-0: #0a0d14;
  --bg-1: #0f131c;
  --bg-2: #141926;
  --bg-3: #1c2333;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text-1: #f4f6fb;
  --text-2: #b6bdcc;
  --text-3: #7f879b;
  --text-muted: #5b6479;

  --brand-1: #6366f1;
  --brand-2: #22d3ee;
  --brand-grad: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%);
  --brand-glow: rgba(99, 102, 241, 0.35);

  --success: #10b981;
  --warning: #f59e0b;
  --danger:  #ef4444;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow:    0 8px 24px rgba(0,0,0,.35);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.5);

  --container: 1180px;

  --header-h: 72px;

  --ease: cubic-bezier(.4,.0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-1);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
p { margin: 0; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; }

/* ---------- Background atmosfÃ©rico ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(800px 600px at 15% -10%, rgba(99,102,241,.18), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(34,211,238,.10), transparent 60%);
}
.site-header, main, .site-footer { position: relative; z-index: 1; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

.section {
  padding: 88px 0;
}
.section--hero {
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 88px;
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section--hero { padding-top: calc(var(--header-h) + 32px); padding-bottom: 48px; }
}

.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: 18px;
  color: var(--text-2);
}

.text-grad {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- BotÃµes ---------- */

/* PrzeÅ‚Ä…cznik (Toggle) */
.toggle-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 600;
}

.badge-discount {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  margin-left: 5px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
}

.switch input:checked + .slider {
  background-color: #a855f7;
}

.switch input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand-grad);
  color: #0a0d14;
  box-shadow: 0 8px 24px -8px var(--brand-glow);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px var(--brand-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--text-1);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--bg-2); border-color: var(--text-3); }
.btn--secondary {
  background: var(--bg-2);
  color: var(--text-1);
  border-color: var(--border);
}
.btn--secondary:hover { background: var(--bg-3); border-color: var(--border-strong); }
.btn--lg { height: 52px; padding: 0 28px; font-size: 16px; border-radius: 14px; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-busy="true"] { opacity: .6; cursor: not-allowed; pointer-events: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(10, 13, 20, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--border); }
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-1);
}
.brand__mark { display: inline-flex; }
.brand--footer .brand__name { font-size: 16px; }

.site-nav {
  display: flex;
  gap: 32px;
}
.site-nav a {
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
}
.site-nav a:hover { color: var(--text-1); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}
.site-header__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-1);
  margin: 0 auto;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.site-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-header__mobile {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
}
/* Author `display:flex` beats UA `[hidden]` in some engines â€” force fechado */
.site-header__mobile[hidden] {
  display: none !important;
}
@media (min-width: 881px) {
  .site-header__mobile {
    display: none !important;
  }
}
.site-header__mobile a {
  display: block;
  padding: 12px 4px;
  color: var(--text-2);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.site-header__mobile a:last-child { border: 0; margin-top: 12px; }

@media (max-width: 880px) {
  .site-nav, .site-header__actions { display: none; }
  .site-header__burger { display: inline-flex; }
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 80px;
  padding: 64px 0 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-1);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer__brand { max-width: 320px; }
.site-footer__tagline {
  margin-top: 16px;
  color: var(--text-3);
  font-size: 14px;
}
.site-footer__col { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.site-footer__col a {
  color: var(--text-2);
  font-size: 14px;
}
.site-footer__col a:hover { color: var(--text-1); }
.site-footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}
@media (max-width: 880px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer__brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 520px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HOME
   ========================================================================== */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 48px;
  text-align: left;
}
.hero__content { min-width: 0; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}
.hero__title {
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__subtitle {
  max-width: 540px;
  margin: 0 0 36px;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-2);
}
.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero__figure {
  position: relative;
  margin: 0;
}
.hero__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
.hero__mockup {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(99,102,241,.06), transparent);
  padding: 8px;
  box-shadow: var(--shadow-lg);
}
.hero__mockup-screen {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background:
    radial-gradient(600px 400px at 50% 0%, rgba(99,102,241,.18), transparent 70%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 14px;
}

/* Hero â€” mock desktop (janela + kanban estilizado) + celular sobreposto */
.hero__mock { position: relative; width: 100%; }
.hero__mock-window {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(99,102,241,.10), transparent 42%), var(--bg-1);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__mock-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.hero__mock-bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--bg-3); }
.hero__mock-bar span:nth-child(1) { background: rgba(239,68,68,.7); }
.hero__mock-bar span:nth-child(2) { background: rgba(245,158,11,.7); }
.hero__mock-bar span:nth-child(3) { background: rgba(16,185,129,.7); }
.hero__mock-body {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 16px;
  min-height: 300px;
}
.hero__mock-side {
  border-radius: 10px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
}
.hero__mock-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero__mock-col { display: flex; flex-direction: column; gap: 10px; }
.hero__mock-col i {
  display: block;
  height: 54px;
  border-radius: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-1);
}
.hero__mock-col:nth-child(2) i { border-left-color: var(--brand-2); }
.hero__mock-col:nth-child(3) i { border-left-color: var(--success); }

.hero__mock-phone {
  position: absolute;
  right: -10px;
  bottom: -28px;
  width: 118px;
  padding: 8px;
  border-radius: 24px;
  background: var(--bg-3);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.hero__mock-phone-cam { width: 34px; height: 4px; border-radius: 4px; background: var(--bg-1); margin: 2px auto 6px; }
.hero__mock-phone-screen {
  border-radius: 16px;
  background: radial-gradient(120px 80px at 50% 0%, rgba(34,211,238,.20), transparent 70%), linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  padding: 10px;
  aspect-ratio: 9 / 18;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__mock-phone-screen b { height: 26px; border-radius: 7px; background: var(--brand-grad); opacity: .85; }
.hero__mock-phone-screen i { height: 15px; border-radius: 5px; background: var(--bg-3); border: 1px solid var(--border); }

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__figure { max-width: 640px; margin: 0 auto; width: 100%; }
  .hero__mock-phone { right: 0; bottom: -20px; width: 100px; }
}
@media (max-width: 560px) {
  .hero__mock-phone { display: none; }
  .hero__mock-body { min-height: 220px; padding: 12px; }
}

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

.feature {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.feature:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99,102,241,.18), rgba(34,211,238,.10));
  border: 1px solid rgba(99,102,241,.30);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brand-2);
  font-size: 22px;
  line-height: 1;
}
.feature__icon i { line-height: 1; }
.feature__title { font-size: 18px; margin-bottom: 8px; }
.feature__desc  { color: var(--text-2); font-size: 15px; }

/* Planos grid */
.planos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 960px) { .planos { grid-template-columns: 1fr; max-width: 480px; } }

.plano {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.plano:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.plano--destaque {
  border-color: rgba(99,102,241,.45);
  background:
    radial-gradient(400px 200px at 50% -10%, rgba(99,102,241,.18), transparent 70%),
    var(--bg-1);
  box-shadow: 0 12px 32px -16px var(--brand-glow);
}
.plano__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-grad);
  color: #0a0d14;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.plano__nome {
  font-size: 20px;
  margin-bottom: 12px;
}
.plano__preco {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  color: var(--text-1);
}
.plano__moeda { font-size: 16px; color: var(--text-3); font-weight: 500; }
.plano__preco strong {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 5.5ch;
  display: inline-block;
}
.plano__per { color: var(--text-3); font-size: 14px; margin-left: 2px; }
.plano__preco-foot {
  font-size: 13px;
  color: var(--text-3);
  margin: -8px 0 20px;
  line-height: 1.35;
  min-height: 2.7em;
}
.plano__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plano__features li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--text-2);
}
.plano__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background: rgba(34,211,238,.15);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2322d3ee' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='13 4 6 11 3 8'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* CTA final */
.cta-card {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(99,102,241,.22), transparent 70%),
    var(--bg-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 64px 32px;
  text-align: center;
}
.cta-card h2 { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 16px; }
.cta-card p { color: var(--text-2); max-width: 540px; margin: 0 auto 32px; }

/* FAQ placeholder */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 48px 20px 24px;
  font-weight: 600;
  position: relative;
  overflow-wrap: anywhere;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  color: var(--text-3);
  font-size: 22px;
  transition: transform .2s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item__body { padding: 0 24px 20px; color: var(--text-2); }

/* ==========================================================================
   CADASTRO
   ========================================================================== */
.cadastro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 960px) {
  .cadastro { grid-template-columns: 1fr; gap: 40px; }
}

.cadastro__copy h1 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 16px;
}
.cadastro__copy p { color: var(--text-2); font-size: 17px; margin-bottom: 32px; }
.cadastro__benefits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.cadastro__benefits li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text-2);
}
.cadastro__benefits svg { flex-shrink: 0; color: var(--brand-2); margin-top: 2px; }
.cadastro__benefits strong { color: var(--text-1); display: block; font-weight: 600; }

.form-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
}
@media (max-width: 480px) { .form-card { padding: 24px 20px; border-radius: var(--radius-lg); } }

.form-card__legend {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin: 0 0 20px;
}
.form-card__legend:not(:first-child) { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field--row { grid-template-columns: 1fr; } }
.field label { font-size: 14px; font-weight: 500; color: var(--text-2); }
.field label .req { color: var(--danger); margin-left: 2px; }
.field small { font-size: 12px; color: var(--text-3); }

.input,
.select,
.textarea {
  width: 100%;
  font: inherit;
  color: var(--text-1);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
}
.input::placeholder { color: var(--text-muted); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--border-strong); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--brand-1);
  background: var(--bg-3);
  box-shadow: 0 0 0 4px rgba(99,102,241,.18);
}
.input.is-invalid, .select.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(239,68,68,.15);
}

.input-prefix {
  position: relative;
  display: flex;
  align-items: stretch;
}
.input-prefix__addon {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--text-3);
  font-size: 14px;
  white-space: nowrap;
}
.input-prefix .input { border-radius: 0 var(--radius) var(--radius) 0; }

.field-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-2);
  cursor: pointer;
}
.field-checkbox input { margin-top: 3px; accent-color: var(--brand-1); }
.field-checkbox a { color: var(--brand-2); }
.field-checkbox a:hover { text-decoration: underline; }

.field-error {
  color: var(--danger);
  font-size: 13px;
  min-height: 18px;
}

.form-feedback {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}
.form-feedback.is-error {
  display: block;
  background: rgba(239,68,68,.10);
  border: 1px solid rgba(239,68,68,.35);
  color: #fca5a5;
}
.form-feedback.is-success {
  display: block;
  background: rgba(16,185,129,.10);
  border: 1px solid rgba(16,185,129,.35);
  color: #6ee7b7;
}

.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ==========================================================================
   ERROS
   ========================================================================== */
.error-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}
.error-page__code {
  font-size: clamp(80px, 14vw, 140px);
  font-weight: 800;
  line-height: 1;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.error-page h1 { font-size: 28px; margin-bottom: 12px; }
.error-page p { color: var(--text-2); margin-bottom: 32px; }

.section__head--legal {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
.section__head--legal .section__subtitle {
  max-width: none;
}

.legal-doc {
  max-width: 100%;
  margin: 0 auto;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.legal-doc h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.01em;
}
.legal-doc p { margin: 0 0 1rem; }
.legal-doc ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-2);
}
.legal-doc li { margin-bottom: 0.5rem; }
.legal-doc a {
  color: var(--brand-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-doc a:hover { color: var(--text-1); }
.legal-doc__contact {
  margin-top: 2rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-2);
}

.faq-list--page {
  max-width: 720px;
  margin: 0 auto;
}

.section__faq-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--brand-2);
  text-decoration: none;
}
.section__faq-link:hover {
  color: var(--text-1);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-card--inline {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.cta-card--inline p:last-child { margin-bottom: 0; }

/* ==========================================================================
   UtilitÃ¡rios
   ========================================================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Footer â€” redes sociais
   ========================================================================== */
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--text-2);
  background: var(--bg-2);
  border: 1px solid var(--border);
  text-decoration: none;
  flex-shrink: 0;
  transition: transform .2s var(--ease), color .2s var(--ease),
              background .2s var(--ease), border-color .2s var(--ease),
              box-shadow .2s var(--ease);
}
.site-footer__social a .bi {
  font-size: 17px;
  line-height: 1;
  display: block;
}
.site-footer__social a:hover {
  color: #fff;
  background: var(--brand-grad);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--brand-glow);
}
.site-footer__social a:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 2px;
}

/* ==========================================================================
   AvaliaÃ§Ãµes / depoimentos
   ========================================================================== */
.reviews-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1;
}
.reviews-stars span.is-on { color: var(--warning); }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 8px auto 40px;
  padding: 14px 22px;
  width: fit-content;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.reviews-summary__score { display: flex; align-items: center; gap: 12px; }
.reviews-summary__score strong { font-size: 32px; color: var(--text-1); line-height: 1; }
.reviews-summary__score .reviews-stars { font-size: 20px; }
.reviews-summary__count { color: var(--text-3); font-size: 14px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}
.review-card__text {
  margin: 0;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}
.review-card__author { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.review-card__avatar--initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: var(--brand-grad);
}
.review-card__meta { display: flex; flex-direction: column; line-height: 1.3; }
.review-card__meta strong { color: var(--text-1); font-size: 15px; }
.review-card__meta small { color: var(--text-3); font-size: 13px; }

.reviews-empty {
  text-align: center;
  max-width: 460px;
  margin: 24px auto 0;
  padding: 48px 24px;
  background: var(--bg-1);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
}
.reviews-empty i { font-size: 40px; color: var(--warning); display: block; margin-bottom: 12px; }
.reviews-empty h2 { color: var(--text-1); font-size: 20px; margin: 0 0 8px; }
.reviews-empty p { color: var(--text-3); font-size: 15px; margin: 0 0 22px; }

/* ── Footer: endereço e horário ── */
.site-footer__address,
.site-footer__hours {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
  max-width: 280px;
}
