/* ============================================
   OpenTime — Site institucional
   Paleta:
     --navy:   #1E3A5F  (cor principal)
     --teal:   #0E7C66  (acento)
     --graphite: #0F172A (texto)
     --white:  #FFFFFF
     --divider: #E2E8F0
   ============================================ */

/* ====== Reset / base ====== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--graphite, #0F172A);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
address { font-style: normal; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; letter-spacing: -0.01em; }
p { margin: 0; }

:root {
  --navy: #1E3A5F;
  --navy-700: #15294A;
  --navy-900: #0D1D33;
  --teal: #0E7C66;
  --teal-600: #0A6452;
  --teal-50: #E6F2EF;
  --graphite: #0F172A;
  --ink: #1E293B;
  --slate: #475569;
  --muted: #64748B;
  --divider: #E2E8F0;
  --bg-soft: #F8FAFC;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --maxw: 1200px;
  --gutter: 24px;
}

/* ====== Container ====== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 768px) { :root { --gutter: 32px; } }

/* ====== Botões ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 6px 18px rgba(14, 124, 102, 0.3);
}
.btn--primary:hover { background: var(--teal-600); box-shadow: 0 8px 22px rgba(14, 124, 102, 0.4); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: #fff; }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}
.btn--whatsapp:hover { background: #1FBA59; }

.btn--block { width: 100%; }
.btn--large { padding: 18px 24px; font-size: 16px; }

/* ====== WhatsApp CTA (substitui formulário) ====== */
.cta-whatsapp {
  background: linear-gradient(160deg, #fff 0%, var(--teal-50) 100%);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-whatsapp__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 12px;
}
.cta-whatsapp__lead {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 24px;
  line-height: 1.6;
}
.cta-whatsapp__note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

/* ====== Header ====== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--divider);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo-img { height: 38px; width: auto; display: block; }

.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  padding: 0;
}
.header__toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (min-width: 980px) {
  .header__toggle { display: none; }
}

.nav { display: none; }
.nav.is-open {
  display: block;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--divider);
  box-shadow: var(--shadow-md);
  padding: 16px var(--gutter) 24px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.nav__list { display: flex; flex-direction: column; gap: 4px; }
.nav__link {
  display: block;
  padding: 12px 8px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav__link:hover { color: var(--teal); background: var(--bg-soft); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 16px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s ease;
}
.nav__cta:hover { background: var(--navy-700); }

@media (min-width: 980px) {
  .nav { display: block; }
  .nav__list { flex-direction: row; align-items: center; gap: 8px; }
  .nav__link { padding: 8px 12px; }
  .nav__cta { margin-top: 0; }
}

/* ====== Hero ====== */
.hero {
  position: relative;
  padding: 80px 0 96px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(14, 124, 102, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(14, 124, 102, 0.25) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy) 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.6;
}
.hero__glow--1 {
  width: 360px; height: 360px;
  background: rgba(14, 124, 102, 0.4);
  top: -100px; right: -80px;
}
.hero__glow--2 {
  width: 280px; height: 280px;
  background: rgba(111, 215, 182, 0.3);
  bottom: -100px; left: 10%;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero { padding: 120px 0 140px; }
  .hero__inner { grid-template-columns: 1.3fr 1fr; gap: 80px; }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6FD7B6;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(111, 215, 182, 0.3);
  border-radius: 999px;
  background: rgba(111, 215, 182, 0.08);
}
.hero__title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero__highlight {
  background: linear-gradient(120deg, #6FD7B6 0%, #25D3A1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__lead {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.hero__trust svg { color: #6FD7B6; flex-shrink: 0; }

/* ====== Hero visual ====== */
.hero__visual {
  display: none;
  position: relative;
  min-height: 460px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 980px) {
  .hero__visual { display: flex; }
}

.hero__image-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(111, 215, 182, 0.25),
    0 0 0 6px rgba(14, 124, 102, 0.15);
  animation: heroFloat 6s ease-in-out infinite;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Cards flutuantes ao redor da imagem */
.hero__card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  color: var(--graphite);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
  font-size: 13px;
  animation: heroFloatSlow 7s ease-in-out infinite;
}
.hero__card--status {
  top: 4%;
  left: -10%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation-delay: -1s;
}
.hero__card-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  color: var(--graphite);
}
.hero__card-status {
  font-size: 11px;
  color: var(--muted);
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.05); }
}

.hero__card--tickets,
.hero__card--monitor {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.hero__card--tickets {
  bottom: 8%;
  right: -8%;
  animation-delay: -3s;
}
.hero__card--monitor {
  top: 48%;
  right: -14%;
  animation-delay: -5s;
}
.hero__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--teal-50);
  color: var(--teal);
  flex-shrink: 0;
}
.hero__card-icon--alt { background: #FEF3C7; color: #B45309; }
.hero__card strong { display: block; font-size: 13px; color: var(--graphite); }
.hero__card span { display: block; font-size: 11px; color: var(--muted); }

@keyframes heroFloatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 1200px) {
  .hero__card--tickets { right: 0; }
  .hero__card--monitor { right: 0; }
  .hero__card--status { left: 0; }
}
@media (max-width: 980px) {
  .hero__visual { display: flex; min-height: 360px; }
  .hero__image-wrap { max-width: 420px; }
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  display: none;
}
.hero__scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  margin: 8px auto;
  animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}
@media (min-width: 768px) { .hero__scroll { display: block; } }

/* ====== Stats ====== */
.stats {
  background: var(--teal);
  color: #fff;
  padding: 32px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat__num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (min-width: 768px) { .stat__num { font-size: 44px; } }
.stat__label {
  display: block;
  font-size: 13px;
  margin-top: 6px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ====== Section base ====== */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 112px 0; } }
.section--alt { background: var(--bg-soft); }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section__lead {
  font-size: 17px;
  color: var(--slate);
}
.mt-32 { margin-top: 32px; }

/* ====== Page hero (sub-pages) ====== */
.page-hero {
  position: relative;
  padding: 64px 0 80px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(14, 124, 102, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy) 100%);
}
.page-hero__inner { position: relative; max-width: 820px; }
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.breadcrumbs a { color: rgba(255,255,255,0.7); transition: color 0.15s ease; }
.breadcrumbs a:hover { color: #6FD7B6; }
.breadcrumbs span { color: rgba(255,255,255,0.4); }
.breadcrumbs span[aria-current] { color: #6FD7B6; font-weight: 600; }
.page-hero__title {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-hero__lead {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  line-height: 1.6;
}

/* ====== Plans ====== */
.plans__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 768px) { .plans__grid { grid-template-columns: 1fr 1fr; } }

.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.plan-card--featured {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.25);
}
.plan-card--featured:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(30, 58, 95, 0.35); }

.plan-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #FFD24D;
  color: var(--graphite);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.plan-card__head { margin-bottom: 24px; }
.plan-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.plan-card--featured .plan-card__tag { color: #6FD7B6; }
.plan-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 6px;
}
.plan-card--featured .plan-card__title { color: #fff; }
.plan-card__sub {
  font-size: 14px;
  color: var(--slate);
}
.plan-card--featured .plan-card__sub { color: rgba(255,255,255,0.75); }

.plan-card__price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}
.plan-card__currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--graphite);
  margin-top: 8px;
}
.plan-card--featured .plan-card__currency { color: #fff; }
.plan-card__amount {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--graphite);
  letter-spacing: -0.03em;
}
.plan-card__amount small {
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-left: -2px;
}
.plan-card--featured .plan-card__amount { color: #fff; }
.plan-card__period {
  font-size: 16px;
  color: var(--muted);
  margin-top: 28px;
}
.plan-card--featured .plan-card__period { color: rgba(255,255,255,0.7); }
.plan-card__from {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--divider);
}
.plan-card--featured .plan-card__from { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.15); }

.plan-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.plan-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}
.plan-card--featured .plan-card__list li { color: rgba(255,255,255,0.9); }
.plan-card__list svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}
.plan-card--featured .plan-card__list svg { color: #6FD7B6; }

.plans__note {
  max-width: 820px;
  margin: 32px auto 0;
  padding: 18px 22px;
  background: var(--teal-50);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  text-align: left;
  line-height: 1.6;
}

/* Modalidade block (Carbonio) */
.plan-card__feature-block {
  background: rgba(14, 124, 102, 0.06);
  border: 1px solid rgba(14, 124, 102, 0.18);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin: 8px 0 24px;
}
.plan-card--featured .plan-card__feature-block {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.plan-card__feature-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.plan-card--featured .plan-card__feature-title { color: #6FD7B6; }
.plan-card__feature-block p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
  margin: 0;
}
.plan-card--featured .plan-card__feature-block p { color: rgba(255,255,255,0.85); }

/* ====== Form wide (orçamento) ====== */
.form--wide { max-width: 820px; margin: 0 auto; }
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form--wide .form__group { margin-bottom: 18px; }

/* ====== Steps (Como contratar) ====== */
.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  counter-reset: step;
}
@media (min-width: 640px) { .steps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .steps__grid { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 8px;
}
.step p { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ====== Features grid (Recursos inclusos) ====== */
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 640px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .features__grid { grid-template-columns: repeat(3, 1fr); } }
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.feature-item:hover { border-color: var(--teal); background: var(--teal-50); }
.feature-item svg { color: var(--teal); flex-shrink: 0; }

/* ====== Diff com ícone (PBX "quando preciso") ====== */
.diff__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: #fff;
  margin-bottom: 16px;
}

/* ====== FAQ ====== */
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 0;
  transition: border-color 0.15s ease;
}
.faq[open] { border-color: var(--teal); }
.faq summary {
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--graphite);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--teal); }
.faq p {
  padding: 0 22px 20px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ====== Nav active (sub-page indicator) ====== */
.nav__link--active { color: var(--teal); font-weight: 600; }

/* ====== Sobre ====== */
.sobre {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 980px) {
  .sobre { grid-template-columns: 1.4fr 1fr; gap: 80px; }
}
.sobre__lead {
  font-size: 18px;
  color: var(--ink);
  margin-top: 16px;
  margin-bottom: 16px;
}
.sobre__body { color: var(--slate); }
.sobre__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.sobre__checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
}
.sobre__checks svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}

.sobre__card {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 96px;
  overflow: hidden;
}
.sobre__card > * { position: relative; z-index: 1; padding: 24px 24px; }
.sobre__card > *:first-child { padding-top: 0; }
.sobre__card > *:last-child { padding-bottom: 24px; }

/* Visual de rede (hub + clientes) */
.sobre__net {
  background: #F8FAFC;
  position: relative;
  overflow: hidden;
}
.sobre__net-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
}
.sobre__net-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--divider);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sobre__net-text {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
  padding: 20px 24px;
  background: var(--bg-soft);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.sobre__net-text strong { color: var(--graphite); }

/* Stats em grid 2x2 dentro do card */
.sobre__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--divider);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.sobre__stat {
  background: #fff;
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sobre__stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.sobre__stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Stack de tecnologias */
.sobre__stack {
  margin-bottom: 0;
  border-top: 1px solid var(--divider);
  background: rgba(248, 250, 252, 0.5);
}
.sobre__stack-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  text-align: center;
}
.sobre__stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.sobre__stack-list li {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg-soft);
  border: 1px solid var(--divider);
  padding: 6px 10px;
  border-radius: 999px;
  transition: all 0.15s ease;
}
.sobre__stack-list li:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-1px);
}

.sobre__card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.sobre__card-cta:hover { background: var(--navy-700); transform: translateY(-1px); }

/* ====== Services ====== */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card--link .service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: gap 0.2s ease;
}
.service-card--link:hover .service-card__cta { gap: 12px; }

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  color: var(--teal);
  margin-bottom: 20px;
}
.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

/* ====== Solutions ====== */
.solutions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .solutions__grid { grid-template-columns: repeat(3, 1fr); } }

.solution-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.solution-card--featured {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #fff;
  border-color: transparent;
}
.solution-card--featured .solution-card__list li { color: rgba(255,255,255,0.85); }
.solution-card--featured .solution-card__list li::before { background: #6FD7B6; }

.solution-card__head { margin-bottom: 24px; }
.solution-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.solution-card--featured .solution-card__tag { color: #6FD7B6; }
.solution-card__head h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--graphite);
}
.solution-card--featured .solution-card__head h3 { color: #fff; }

.solution-card__list { display: flex; flex-direction: column; gap: 12px; }
.solution-card__list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}
.solution-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.solution-card__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #FFD24D;
  color: var(--graphite);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ====== Diferenciais ====== */
.diffs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .diffs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .diffs__grid { grid-template-columns: repeat(3, 1fr); } }

.diff {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--divider);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.diff:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.diff__num {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 12px;
  font-feature-settings: "tnum";
}

/* Diff pilar (GLPI Profissional) — card mais rico */
.diff--pilar {
  display: flex;
  flex-direction: column;
}
.diff__sublist {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.diff__sublist li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
}
.diff__sublist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 6px;
  border-left: 1.5px solid var(--teal);
  border-bottom: 1.5px solid var(--teal);
  transform: rotate(-45deg);
}
.diff h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 8px;
}
.diff p { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ====== CTA Final ====== */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 50%, var(--teal-600) 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .cta__inner { grid-template-columns: 1.4fr 1fr; text-align: left; }
}
.cta__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta__lead { font-size: 18px; color: rgba(255,255,255,0.85); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
@media (min-width: 768px) { .cta__actions { justify-content: flex-end; } }

/* ====== Contato ====== */
.contato {
  display: block;
  text-align: center;
}
.contato .section__head { margin-bottom: 40px; }
.contato__lead { color: var(--slate); margin-top: 12px; }

.contato__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 40px;
  text-align: left;
}
@media (min-width: 640px) { .contato__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contato__grid { grid-template-columns: repeat(5, 1fr); } }
.contato__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contato__item:hover { border-color: var(--teal); background: var(--teal-50); }
.contato__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #fff;
  color: var(--teal);
  flex-shrink: 0;
}
.contato__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.contato__value {
  display: block;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.contato__value a, .contato__value address { color: var(--graphite); font-style: normal; }
.contato__value a:hover { color: var(--teal); }

.contato__cta { margin: 0 auto 32px; }
.contato__cta-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.contato__social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.contato__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--navy);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.contato__social a:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* ====== Form ====== */
.form {
  background: var(--bg-soft);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form__title { font-size: 22px; font-weight: 700; color: var(--graphite); margin-bottom: 6px; }
.form__lead { font-size: 14px; color: var(--slate); margin-bottom: 24px; }
.form__group { margin-bottom: 18px; }
.form__group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  background: #fff;
  font: inherit;
  color: var(--graphite);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(14, 124, 102, 0.12);
}
.form__group textarea { resize: vertical; min-height: 100px; }
.form__legal { font-size: 12px; color: var(--muted); text-align: center; margin-top: 16px; }

/* ====== Footer ====== */
.footer {
  background: var(--graphite);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 640px) { .footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; } }
.footer__logo { height: 32px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a, .footer__col li { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer__col a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  font-size: 13px;
}
.footer__bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }

/* ====== WhatsApp float ====== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ====== Thanks page ====== */
.thanks-page { background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy) 100%); min-height: 100vh; }
.thanks { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 40px var(--gutter); }
.thanks__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.thanks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal);
  margin: 0 auto 24px;
}
.thanks__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 12px;
}
.thanks__lead { font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.thanks__sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.thanks__actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
@media (min-width: 480px) { .thanks__actions { flex-direction: row; justify-content: center; } }
.thanks__contact { font-size: 13px; color: var(--muted); }
.thanks__contact a { color: var(--teal); }
.thanks__contact a:hover { text-decoration: underline; }

/* ====== Compact Scale (~15% smaller) ====== */
:root {
  --maxw: 1100px;
  --gutter: 20px;
}

/* Header / Nav */
.header { padding: 14px 0; }
.nav__link { padding: 8px 10px; font-size: 14px; }
.nav__list { gap: 4px; }

/* Hero */
.hero { padding: 64px 0 72px; }
@media (min-width: 980px) { .hero { padding: 96px 0 112px; } }
.hero__inner { gap: 48px; }
@media (min-width: 980px) { .hero__inner { gap: 56px; } }
.hero__title { font-size: clamp(26px, 4vw, 44px); margin-bottom: 18px; }
.hero__lead { font-size: 16px; max-width: 480px; margin-bottom: 28px; line-height: 1.55; }
.hero__eyebrow { font-size: 11px; margin-bottom: 16px; padding: 5px 12px; }
.hero__actions { margin-bottom: 28px; }
.hero__trust { gap: 16px 24px; padding-top: 24px; }
.hero__trust li { font-size: 13px; }
.hero__visual { min-height: 380px; }
.hero__image-wrap { max-width: 440px; }
.hero__glow--1 { width: 280px; height: 280px; top: -80px; right: -60px; }
.hero__glow--2 { width: 220px; height: 220px; bottom: -80px; }

/* Hero floating cards */
.hero__card { padding: 12px 16px; font-size: 12px; }
.hero__card strong { font-size: 13px; }
.hero__card-icon { width: 30px; height: 30px; }

/* Scroll indicator */
.hero__scroll { bottom: 28px; }

/* Sections */
section { padding: 64px 0; }
.section { padding: 64px 0; }
.section--sm { padding: 48px 0; }

/* Section titles */
.section__eyebrow { font-size: 11px; letter-spacing: 0.14em; margin-bottom: 12px; }
.section__title { font-size: clamp(22px, 3vw, 34px); margin-bottom: 16px; }
.section__lead { font-size: 16px; max-width: 680px; margin: 0 auto 40px; }
.section__grid { gap: 24px; }

/* Stats */
.stats { padding: 40px 0; }
.stat__num { font-size: clamp(36px, 5vw, 56px); }
.stat__label { font-size: 13px; }

/* Service cards */
.service-card { padding: 24px 20px; }
.service-card__icon { width: 48px; height: 48px; margin-bottom: 16px; }
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__title { font-size: 16px; margin-bottom: 10px; }
.service-card__desc { font-size: 14px; line-height: 1.55; }

/* Page hero */
.page-hero { padding: 56px 0 64px; }
.page-hero__title { font-size: clamp(26px, 4vw, 42px); }
.page-hero__lead { font-size: 16px; }

/* Plans */
.plan { padding: 28px 20px; }
.plan__price { font-size: 32px; }
.plan__price span { font-size: 14px; }
.plan__feature { font-size: 13px; padding: 6px 0; }

/* FAQ */
.faq__item { padding: 16px 0; }
.faq__question { font-size: 15px; padding: 12px 40px 12px 0; }
.faq__answer { font-size: 14px; padding-bottom: 16px; }

/* Features */
.features__item { padding: 24px; gap: 16px; }
.features__icon { width: 40px; height: 40px; flex-shrink: 0; }
.features__icon svg { width: 20px; height: 20px; }
.features__title { font-size: 15px; }
.features__desc { font-size: 13px; }
.features__grid { gap: 16px; }

/* Form */
.form { padding: 32px; }
.form__title { font-size: 20px; }
.form label { font-size: 13px; }
.form input, .form select, .form textarea { padding: 10px 14px; font-size: 14px; }

/* Footer */
.footer { padding: 56px 0 24px; }
.footer__brand p { font-size: 13px; }
.footer__col h4 { font-size: 12px; letter-spacing: 0.1em; margin-bottom: 12px; }
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul li a { font-size: 13px; }
.footer__bottom { padding-top: 20px; margin-top: 24px; font-size: 12px; }

/* FAQ section */
.faq__list { max-width: 780px; }

/* Plans grid */
.plans__grid { gap: 20px; max-width: 940px; }

/* CTA */
.cta { padding: 72px 0; }
.cta__title { font-size: clamp(22px, 3vw, 34px); }
.cta__lead { font-size: 16px; }

/* Feature tabs */
.tab-btn { padding: 8px 16px; font-size: 13px; }
.tab-panel { padding: 24px; }
.tab-content h3 { font-size: 18px; }
.tab-content p { font-size: 14px; }

/* Compare table */
.nchub-compare__side { padding: 20px 16px; }
.nchub-compare__feature { font-size: 13px; padding: 10px 12px; }

/* nchub page specific */
.nchub-modules__grid { gap: 16px; }
.module-card { padding: 20px 16px; }
.module-card__title { font-size: 14px; }
.module-card__desc { font-size: 13px; }
.nchub-install { padding: 28px 20px; }
.nchub-install__code { padding: 20px; font-size: 13px; }

/* WhatsApp float */
.whatsapp-float { bottom: 24px; right: 24px; }
.whatsapp-float__btn { width: 52px; height: 52px; }

/* Thanks */
.thanks__card { padding: 36px 24px; }
.thanks__icon { width: 72px; height: 72px; margin-bottom: 18px; }
.thanks__icon svg { width: 32px; height: 32px; }
.thanks__title { font-size: 26px; }
.thanks__lead { font-size: 15px; }
