/* =========================================================
   ARVION — Soluções Digitais
   Stylesheet
   ========================================================= */

:root {
  /* Brand palette */
  --blue: #2563EB;
  --purple: #7C3AED;
  --cyan: #38BDF8;
  --bg: #0B0F19;
  --surface: #1E232E;
  --white: #FFFFFF;

  /* Derived tones */
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --gradient-brand: linear-gradient(115deg, var(--blue) 0%, var(--purple) 55%, var(--cyan) 100%);
  --gradient-soft: linear-gradient(180deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.05));

  /* Type */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Rhythm */
  --section-pad: 128px;
  --container-w: 1180px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 780px) {
  :root { --section-pad: 76px; }
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; font-weight: 600; }
p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

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

@media (max-width: 640px) {
  .container { padding: 0 22px; }
}

section { padding: var(--section-pad) 0; position: relative; }

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.section-head {
  max-width: 620px;
  margin-bottom: 64px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.01em;
}
.section-head p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 520px;
}
.section-head.center p { margin-left: auto; margin-right: auto; }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-brand);
  background-size: 180% 180%;
  background-position: 0% 50%;
  color: var(--white);
  box-shadow: 0 12px 30px -12px rgba(124, 58, 237, 0.55);
}
.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(56, 189, 248, 0.45);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  background: rgba(56, 189, 248, 0.08);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 14px; }

/* -------------------- Header -------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(11, 15, 25, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 34px; width: auto; }

.main-nav ul { display: flex; align-items: center; gap: 38px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
  position: relative;
}
.main-nav a:hover { color: var(--white); }
.main-nav a[aria-current="page"] { color: var(--white); }
.main-nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-brand);
}
@media (max-width: 900px) {
  .main-nav a[aria-current="page"]::after { display: none; }
}

.header-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(18px);
    padding: 110px 32px 40px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
    pointer-events: none;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 26px; }
  .main-nav a { font-size: 20px; }
  .header-actions .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* -------------------- Hero -------------------- */
.hero {
  padding-top: calc(var(--section-pad) + 78px);
  padding-bottom: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -220px;
  right: -180px;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.32), rgba(37, 99, 235, 0.12) 45%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: 60px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { order: 2; }
  .hero-mark { display: none; }
}
.hero-copy h1 {
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.02em;
}
.hero-copy p.lead {
  margin-top: 22px;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-meta div { border-left: 2px solid; border-image: var(--gradient-brand) 1; padding-left: 14px; }
.hero-meta strong { display: block; font-family: var(--font-display); font-size: 22px; }
.hero-meta span { font-size: 13.5px; color: var(--text-dim); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-frame {
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, #12172380, #0B0F19);
  padding: 18px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.65);
  animation: float 7s ease-in-out infinite;
}
.hero-frame .frame-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.hero-frame .frame-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); }
.hero-frame .frame-body {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-frame .frame-body img { width: 100%; }
.hero-mark {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 110px;
  opacity: 0.9;
  animation: float 6s ease-in-out infinite reverse;
}

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

/* -------------------- Logos / trust strip -------------------- */
.trust-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-strip p { font-size: 13.5px; color: var(--text-dim); letter-spacing: 0.06em; }
.trust-strip .track { display: flex; gap: 34px; flex-wrap: wrap; }
.trust-strip .track span { font-family: var(--font-display); font-weight: 600; color: var(--text-muted); font-size: 14.5px; }

/* -------------------- Benefits -------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.benefit-card {
  background: var(--bg);
  padding: 40px 34px;
  transition: background 0.3s var(--ease);
}
.benefit-card:hover { background: var(--surface); }
.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
  margin-bottom: 22px;
}
.benefit-icon svg { width: 22px; height: 22px; stroke: var(--cyan); }
.benefit-card h3 { font-size: 18.5px; margin-bottom: 10px; }
.benefit-card p { color: var(--text-muted); font-size: 15px; }

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* -------------------- Grade genérica de 4 colunas -------------------- */
/* Usada em: Para quem é, Diferenciais, Posicionamento (páginas Início e Sobre) */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* -------------------- Pricing -------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 42px 38px;
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.price-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.price-card.is-featured {
  border-color: rgba(124, 58, 237, 0.5);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08), var(--surface) 40%);
}
.price-card.is-featured::before {
  content: 'Mais escolhido';
  position: absolute;
  top: 0;
  right: 38px;
  transform: translateY(-50%);
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
}
.price-card .plan-name { font-size: 20px; margin-bottom: 8px; }
.price-card .plan-desc { color: var(--text-muted); font-size: 15px; margin-bottom: 26px; }
.price-value { display: flex; align-items: baseline; gap: 8px; margin-bottom: 30px; }
.price-value .amount { font-family: var(--font-display); font-size: 42px; font-weight: 600; }
.price-value .amount small { font-size: 20px; font-weight: 500; }
.price-value .cycle { color: var(--text-dim); font-size: 14px; }
.plan-features { display: flex; flex-direction: column; gap: 15px; margin-bottom: 34px; }
.plan-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: #E2E8F0; }
.plan-features svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; stroke: var(--cyan); }

@media (max-width: 780px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.is-featured::before { right: 24px; }
}

/* -------------------- Process -------------------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-list::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--border-strong);
}
.process-step { position: relative; padding-right: 24px; }
.process-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  position: relative;
  margin-bottom: 24px;
}
.process-step:nth-child(odd) .process-num { color: var(--cyan); }
.process-step:nth-child(even) .process-num { color: var(--purple); }
.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 14.5px; }

@media (max-width: 900px) {
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-list::before { display: none; }
}
@media (max-width: 560px) {
  .process-list { grid-template-columns: 1fr; }
}

/* -------------------- Portfolio -------------------- */
.portfolio-note {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: -34px;
  margin-bottom: 50px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.mock-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.mock-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.mock-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.mock-browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); }
.mock-preview {
  aspect-ratio: 4/3;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.mock-preview .bar { height: 10px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.mock-preview .bar.w-60 { width: 60%; }
.mock-preview .bar.w-40 { width: 40%; }
.mock-preview .bar.w-80 { width: 80%; }
.mock-preview .block {
  margin-top: 10px;
  height: 64px;
  border-radius: 8px;
}
.mock-info { padding: 20px 22px 24px; }
.mock-info .tag { font-size: 12px; color: var(--cyan); letter-spacing: 0.06em; margin-bottom: 6px; display:block; }
.mock-info h3 { font-size: 16.5px; }

/* mock preview theme variants */
.mock-preview.theme-a { background: radial-gradient(circle at 20% 20%, rgba(37,99,235,0.18), transparent 60%); }
.mock-preview.theme-a .block { background: linear-gradient(135deg, var(--blue), var(--purple)); }
.mock-preview.theme-b { background: radial-gradient(circle at 80% 20%, rgba(124,58,237,0.2), transparent 60%); }
.mock-preview.theme-b .block { background: linear-gradient(135deg, var(--purple), var(--cyan)); }
.mock-preview.theme-c { background: radial-gradient(circle at 50% 80%, rgba(56,189,248,0.18), transparent 60%); }
.mock-preview.theme-c .block { background: linear-gradient(135deg, var(--cyan), var(--blue)); }

@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* -------------------- FAQ -------------------- */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-size: 16.5px;
  text-align: left;
}
.faq-question .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-question .icon::before,
.faq-question .icon::after {
  content: '';
  position: absolute;
  background: var(--cyan);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.faq-question .icon::before { width: 100%; height: 2px; top: 9px; left: 0; }
.faq-question .icon::after { width: 2px; height: 100%; top: 0; left: 9px; }
.faq-item.is-open .faq-question .icon::after { transform: rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer p { padding: 0 4px 24px; color: var(--text-muted); font-size: 15px; max-width: 640px; }

/* -------------------- Final CTA -------------------- */
.final-cta {
  border-radius: 24px;
  background: var(--gradient-brand);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 55%);
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta p {
  position: relative;
  margin-top: 16px;
  color: rgba(255,255,255,0.88);
  font-size: 16.5px;
}
.final-cta .hero-actions { justify-content: center; position: relative; margin-top: 34px; }
.final-cta .btn-primary { background: var(--white); color: var(--bg); box-shadow: none; }
.final-cta .btn-primary:hover { background: var(--white); transform: translateY(-2px); }
.final-cta .btn-ghost { border-color: rgba(255,255,255,0.5); }
.final-cta .btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: var(--white); }

@media (max-width: 640px) {
  .final-cta { padding: 52px 26px; }
}

/* -------------------- Footer -------------------- */
.site-footer { padding: 72px 0 32px; border-top: 1px solid var(--border); }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-brand p { color: var(--text-muted); font-size: 14.5px; max-width: 280px; }
.footer-col h4 { font-size: 14px; letter-spacing: 0.04em; color: var(--text-dim); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: var(--text-muted); transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13.5px;
  color: var(--text-dim);
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.footer-social a:hover { border-color: var(--cyan); color: var(--cyan); }
.footer-social svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* -------------------- WhatsApp floating button -------------------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: pulse-wa 2.8s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 18px 34px -6px rgba(37, 211, 102, 0.65); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.55); }
  50% { box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}

@media (max-width: 560px) {
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* -------------------- Reveal-on-scroll -------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* -------------------- Divider -------------------- */
.gradient-rule {
  height: 1px;
  background: var(--gradient-brand);
  opacity: 0.25;
  border: none;
  margin: 0;
}

/* -------------------- Page hero (Sobre / Serviços / Contato) -------------------- */
.page-hero {
  padding-top: calc(var(--section-pad) + 78px);
  padding-bottom: calc(var(--section-pad) * 0.55);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 720px;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.28), rgba(37, 99, 235, 0.1) 45%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.page-hero .page-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 {
  font-size: clamp(32px, 4.4vw, 46px);
  letter-spacing: -0.02em;
}
.page-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: var(--text-muted);
}
.page-hero .hero-actions { justify-content: center; margin-top: 32px; }

/* -------------------- Mini planos (resumo na Início) -------------------- */
.mini-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.mini-price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px 36px;
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.mini-price-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.mini-price-card.is-featured {
  border-color: rgba(124, 58, 237, 0.5);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08), var(--surface) 40%);
}
.mini-price-card.is-featured::before {
  content: 'Mais escolhido';
  position: absolute;
  top: 0;
  right: 36px;
  transform: translateY(-50%);
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
}
.mini-price-card .plan-name { font-size: 19px; margin-bottom: 8px; }
.mini-price-card .plan-desc { color: var(--text-muted); font-size: 14.5px; margin-bottom: 20px; }
.mini-price-card .price-value { margin-bottom: 0; }
.services-cta { text-align: center; margin-top: 40px; }

@media (max-width: 780px) {
  .mini-pricing-grid { grid-template-columns: 1fr; }
  .mini-price-card.is-featured::before { right: 22px; }
}

/* -------------------- Tabela comparativa -------------------- */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-top: 8px;
}
.compare-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  text-align: left;
  white-space: nowrap;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table th {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--surface);
}
.compare-table td.center, .compare-table th.center { text-align: center; }
.compare-table tbody th { font-weight: 500; color: #E2E8F0; white-space: normal; }
.compare-table .compare-check { color: var(--cyan); font-weight: 600; }
.compare-table .compare-dash { color: var(--text-dim); }

/* -------------------- Contato -------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}
.contact-card, .contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 38px;
}
.contact-card h3 { font-size: 19px; margin-bottom: 10px; }
.contact-card > p { color: var(--text-muted); font-size: 15px; }
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .icon svg { width: 18px; height: 18px; stroke: var(--cyan); }
.contact-info-item strong { display: block; font-size: 14.5px; }
.contact-info-item span { font-size: 13.5px; color: var(--text-dim); }

.contact-form h3 { font-size: 19px; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color 0.25s var(--ease);
}
.form-group select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-dim) 50%), linear-gradient(135deg, var(--text-dim) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--cyan); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--text-dim); margin-top: 14px; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
}
