[v-cloak] { display: none !important; }

/* ===== Reset & base ===== */
:root {
  --brand-primary: #0057a3;
  --brand-primary-dark: #003f7a;
  --brand-primary-soft: rgba(0, 87, 163, 0.08);
  --text-main: #1a1d26;
  --text-muted: #4b5563;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background: #ffffff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Skip link (acessibilidade) ===== */
.skip-link {
  position: fixed;
  top: -100%;
  left: 24px;
  z-index: 9999;
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease var(--delay, 0ms), transform 0.55s ease var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }
.btn--primary {
  background: var(--brand-primary);
  color: #fff;
  border-color: transparent;
}
.btn--primary:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn--outline:hover { background: var(--brand-primary-soft); }
.btn--ghost {
  background: transparent;
  color: #1a1d26;
  border-color: transparent;
}
.btn--ghost:hover { background: rgba(0, 0, 0, 0.05); }
.btn--ghost-white {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost-white:hover { background: rgba(255,255,255,0.25); }
.btn--sm { padding: 8px 16px; font-size: 0.875rem; }
.btn--lg { padding: 14px 28px; font-size: 1rem; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.25s, box-shadow 0.25s;
}
.header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: inline-block; }
.logo__img {
  display: block;
  max-height: 45px;
  width: auto;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--brand-primary); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #374151;
  border-radius: 1px;
  transition: background 0.2s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  border-top: 1px solid #f1f5f9;
}
.mobile-menu--open { display: flex; }
.mobile-menu__link {
  font-weight: 500;
  color: #1a1d26;
  padding: 12px 8px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu__link:hover {
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
}
@media (max-width: 900px) {
  .nav { gap: 20px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 87, 163, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(0, 63, 122, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(0, 87, 163, 0.06) 0%, transparent 45%);
  pointer-events: none;
  animation: heroBgDrift 20s ease-in-out infinite alternate;
}
@keyframes heroBgDrift {
  0%   { transform: scale(1) translate(0%, 0%); }
  100% { transform: scale(1.06) translate(1.5%, 0.8%); }
}
.hero__split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__text {
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin: 0 0 20px;
}
.hero__title-accent {
  display: block;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin: 0 0 32px;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}
.hero__trust-item svg {
  color: #16a34a;
  flex-shrink: 0;
}
.hero__mockup {
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero__mockup-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.14),
    0 4px 16px rgba(0, 0, 0, 0.06);
}
.hero__mockup-frame img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .hero__split {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__cta { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__mockup { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .hero { padding: 100px 0 60px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}

/* ===== Contadores ===== */
.counters {
  background: var(--brand-primary);
  padding: 48px 0;
}
.counters__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.counter-item {
  text-align: center;
}
.counter-item__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}
.counter-item__number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.counter-item__prefix,
.counter-item__suffix {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}
.counter-item__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  .counters__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
}
@media (max-width: 400px) {
  .counters__grid { grid-template-columns: 1fr 1fr; }
}

/* ===== Parceiros ===== */
.partners {
  padding: 40px 0 48px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}
.partners__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 28px;
}
.partners__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}
.partner-logo {
  display: flex;
  align-items: center;
  cursor: default;
}
.partner-logo svg {
  height: 32px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.partner-logo:hover svg {
  filter: grayscale(0%);
  opacity: 1;
}
@media (max-width: 600px) {
  .partners__grid { gap: 24px 32px; }
  .partner-logo svg { height: 26px; }
}

/* ===== Bancos Integrados ===== */
.banks {
  padding: 28px 0 36px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.banks__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 24px;
}
.banks__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 44px;
}
.bank-logo {
  display: flex;
  align-items: center;
  cursor: default;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.bank-logo img,
.bank-logo svg {
  height: 28px;
  width: auto;
  display: block;
}
.bank-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.banks__more {
  text-align: center;
  font-size: 0.8125rem;
  color: #9ca3af;
  margin: 20px 0 0;
}
@media (max-width: 600px) {
  .banks__grid { gap: 20px 28px; }
  .bank-logo img,
  .bank-logo svg { height: 22px; }
}

/* ===== Features ===== */
.features {
  padding: 96px 0 80px;
}
.features__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  color: var(--text-main);
  margin: 0 0 12px;
}
.features__lead {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto 48px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 87, 163, 0.2);
  transform: translateY(-2px);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
}
.feature-card__icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__icon-svg svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.feature-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px;
}
.feature-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  transition: gap 0.2s, opacity 0.2s;
}
.feature-card__link:hover {
  gap: 8px;
  opacity: 0.85;
}

/* ===== Vantagens ===== */
.vantagens {
  padding: 80px 0;
  background: #fff;
}
.vantagens__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  color: var(--text-main);
  margin: 0 0 16px;
}
.vantagens__lead {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.vantagens__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.vantagem-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.vantagem-item:hover {
  border-color: rgba(0, 87, 163, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.vantagem-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}
.vantagem-item__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 700px) {
  .vantagens__list { grid-template-columns: 1fr; }
}

/* ===== Planos ===== */
.plans {
  padding: 80px 0;
  background: #f8fafc;
}
.plans__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  color: var(--text-main);
  margin: 0 0 12px;
}
.plans__lead {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto 40px;
}
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  align-items: start;
}
.plan-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 2px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.plan-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 87, 163, 0.25);
}
.plan-card--popular {
  border-color: #f59e0b;
}
.plan-card--popular:hover {
  border-color: #d97706;
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.15);
}
.plan-card--featured {
  border-color: var(--brand-primary);
  box-shadow: 0 8px 30px rgba(0, 87, 163, 0.12);
}
.plan-card--featured:hover {
  box-shadow: 0 12px 40px rgba(0, 87, 163, 0.2);
}
.plan-card__badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.plan-card__badge--basic {
  background: #f1f5f9;
  color: #475569;
}
.plan-card__badge--popular {
  background: #fef3c7;
  color: #92400e;
}
.plan-card__badge--featured {
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
}
.plan-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.5;
  min-height: 42px;
}
.plan-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px;
}
.plan-card__price {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.plan-card__period {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
}
.plan-card__users {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}
.plan-card__users svg { flex-shrink: 0; color: var(--brand-primary); }
.plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.plan-feature {
  font-size: 0.9rem;
  padding: 5px 0;
  padding-left: 26px;
  position: relative;
  line-height: 1.4;
}
.plan-feature::before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}
.plan-feature--yes {
  color: var(--text-muted);
}
.plan-feature--yes::before {
  content: '✓';
  color: #16a34a;
}
.plan-feature--no {
  color: #c4c9d4;
  text-decoration: line-through;
}
.plan-feature--no::before {
  content: '✗';
  color: #d1d5db;
}
.plan-card__cta {
  width: 100%;
  margin-top: auto;
}
.plans__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}
.plans__note-link {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.plans__note-link:hover { color: var(--brand-primary-dark); }
@media (max-width: 960px) {
  .plans__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .plan-card__desc { min-height: unset; }
}

/* ===== Depoimentos ===== */
.depoimentos {
  padding: 80px 0;
  background: #fff;
}
.depoimentos__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  color: var(--text-main);
  margin: 0 0 12px;
}
.depoimentos__lead {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 48px;
}
.depoimentos__carrossel {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 32px;
}
.depoimentos__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: var(--brand-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  transition: border-color 0.2s, background 0.2s;
}
.depoimentos__arrow:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary-soft);
}
.depoimentos__arrow:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 87, 163, 0.25);
}
.depoimentos__track {
  flex: 1;
  position: relative;
  min-height: 220px;
}
.depoimento {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 32px 28px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.depoimento--ativo {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.depoimento__text {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.7;
  margin: 0 0 24px;
  flex: 1;
}
.depoimento__text::before {
  content: '"';
  color: var(--brand-primary);
  font-size: 1.75rem;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.depoimento__autor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.depoimento__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.depoimento__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.depoimento__nome {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
}
.depoimento__cargo {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: block;
}
.depoimentos__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.depoimentos__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.depoimentos__dot:hover { background: #9ca3af; }
.depoimentos__dot--ativo {
  background: var(--brand-primary);
  transform: scale(1.2);
}
.depoimentos__dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 87, 163, 0.3);
}
@media (max-width: 768px) {
  .depoimentos__carrossel { gap: 8px; padding: 0 8px; }
  .depoimentos__arrow { width: 40px; height: 40px; }
  .depoimentos__arrow svg { width: 20px; height: 20px; }
  .depoimento { padding: 24px 20px; }
  .depoimento__text { font-size: 0.9375rem; }
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  background: #f8fafc;
}
.faq__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  color: var(--text-main);
  margin: 0 0 12px;
}
.faq__lead {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto 48px;
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
  border-color: rgba(0, 87, 163, 0.2);
}
.faq-item--open {
  border-color: rgba(0, 87, 163, 0.3);
  box-shadow: 0 2px 12px rgba(0, 87, 163, 0.06);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color 0.2s;
}
.faq-item__question:hover { color: var(--brand-primary); }
.faq-item__question:focus { outline: none; }
.faq-item__question:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: -2px;
  border-radius: 12px;
}
.faq-item__icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.faq-item--open .faq-item__icon {
  transform: rotate(180deg);
  color: var(--brand-primary);
}
.faq-item__body {
  overflow: hidden;
}
.faq-slide-enter-active,
.faq-slide-leave-active {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}
.faq-slide-enter-from,
.faq-slide-leave-to {
  max-height: 0;
  opacity: 0;
}
.faq-slide-enter-to,
.faq-slide-leave-from {
  max-height: 400px;
  opacity: 1;
}
.faq-item__answer {
  padding: 0 24px 20px;
}
.faq-item__answer p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===== Contato ===== */
.contato {
  padding: 80px 0;
  background: #fff;
}
.contato__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  color: var(--text-main);
  margin: 0 0 12px;
}
.contato__lead {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin: 0 auto 40px;
  max-width: 480px;
}
.contato__container { box-sizing: border-box; }
.contato__form {
  display: block;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
.contato__form .form-group__input,
.contato__form .form-group__textarea {
  display: block;
  box-sizing: border-box;
}
.contato__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.contato__hp input {
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: 0;
}
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}
.form-group__input {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: var(--text-main);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group__input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(0, 87, 163, 0.12);
}
.form-group__input::placeholder { color: #9ca3af; }
.form-group__textarea {
  resize: vertical;
  min-height: 120px;
}
.contato__feedback {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9375rem;
}
.contato__feedback--erro {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
.contato__feedback--ok {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.contato__submit { margin-top: 8px; }
.contato__submit:disabled { opacity: 0.7; cursor: not-allowed; }
@media (max-width: 600px) {
  .contato__grid { grid-template-columns: 1fr; }
}

/* ===== CTA ===== */
.cta {
  padding: 80px 0 100px;
}
.cta__inner {
  text-align: center;
  padding: 64px 32px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  border-radius: 24px;
  color: #fff;
}
.cta__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 12px;
}
.cta__text {
  font-size: 1.0625rem;
  opacity: 0.9;
  margin: 0 0 32px;
}
.cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta__buttons .btn--primary {
  background: #fff;
  color: var(--brand-primary-dark);
  border-color: #fff;
}
.cta__buttons .btn--primary:hover {
  background: #f0f4ff;
}
@media (max-width: 480px) {
  .cta__inner { padding: 48px 24px; }
  .cta__buttons { flex-direction: column; }
  .cta__buttons .btn { width: 100%; }
}

/* ===== Footer ===== */
.footer {
  background: #1a1d26;
  color: #fff;
  padding-top: 64px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__col--brand .logo__img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 0.9rem;
  color: #9ca3af;
  margin: 0;
  line-height: 1.6;
  max-width: 240px;
}
.footer__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #9ca3af;
  margin: 0 0 16px;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__link {
  font-size: 0.9375rem;
  color: #d1d5db;
  transition: color 0.2s;
}
.footer__link:hover { color: #fff; }
.footer__link--icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__link--icon svg { flex-shrink: 0; color: var(--text-muted); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__copy {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}
@media (max-width: 960px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .footer__col--brand {
    grid-column: 1 / -1;
  }
  .footer__tagline { max-width: none; }
}
@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__col--brand { grid-column: auto; }
}

/* ===== Footer social ===== */
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer__social-link {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  line-height: 0;
}
.footer__social-link:hover { color: #fff; }

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab:hover {
  background: #1da851;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.2);
}
.whatsapp-fab:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 3px;
}
/* ===== Modal de captura de lead ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  padding: 16px;
  backdrop-filter: blur(2px);
}
.modal-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: modalSlideIn 0.22s ease;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.modal-card__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.modal-card__close:hover { background: var(--brand-primary-soft); color: var(--brand-primary); }
.modal-card__close:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }
.modal-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px;
}
.modal-card__subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.55;
}
.modal-card__plano {
  display: block;
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--brand-primary);
}
.modal-card__hp { position: absolute; left: -9999px; top: -9999px; }
.modal-card__form .form-group { margin-bottom: 16px; }
.modal-card__submit { width: 100%; margin-top: 8px; }
.modal-card__success {
  text-align: center;
  padding: 8px 0 4px;
}
.modal-card__success-icon {
  color: #22c55e;
  margin: 0 auto 16px;
  display: block;
}
.modal-card__success .modal-card__title { margin-bottom: 10px; }
.modal-card__success .modal-card__subtitle { margin-bottom: 24px; }
.modal-card__success .btn { display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 480px) {
  .modal-card { padding: 32px 20px 28px; }
  .modal-card__title { font-size: 1.2rem; }
}

@media (max-width: 640px) {
  .whatsapp-fab { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}
