/* ============================================================
   VEROT Landing Pages — design system
   Tokens extraídos do kit Elementor de verot.com.br:
   navy #1B1E35 · roxo #80217F · ciano #2CA6D7 · Montserrat
   ============================================================ */

:root {
  --navy: #1B1E35;
  --navy-2: #232848;
  --navy-3: #14172A;
  --purple: #80217F;
  --cyan: #2CA6D7;
  --grad: linear-gradient(120deg, #2CA6D7 0%, #4A6BD0 45%, #80217F 100%);
  --bg: #F8F8F8;
  --card: #FFFFFF;
  --border: #E0E0E0;
  --ink: #1B1E35;
  --text: #4A4F5C;
  --muted: #7A7A7A;
  --light: #D6D6DF;
  --whats: #1EBE5D;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(27, 30, 53, .08);
  --container: 1140px;
  --header-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--purple); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.center { text-align: center; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.25; margin: 0 0 .6em; }
h1 { font-size: clamp(1.85rem, 4.2vw, 2.9rem); font-weight: 900; letter-spacing: -.5px; }
h2 { font-size: clamp(1.45rem, 3vw, 2.05rem); font-weight: 800; letter-spacing: -.3px; }
h3 { font-size: 1.1rem; font-weight: 700; }
p { margin: 0 0 1em; }
.lead { font-size: 1.08rem; }

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 12px;
}
.eyebrow-light { color: var(--cyan); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 10px;
  border: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 22px rgba(128, 33, 127, .35);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.07); }
.btn-whats {
  background: rgba(30, 190, 93, .12);
  color: var(--whats);
  border: 1.5px solid rgba(30, 190, 93, .55);
}
.btn-whats:hover { background: rgba(30, 190, 93, .2); }
.on-dark .btn-whats { color: #7BE3A6; }
.btn-sm { padding: 10px 18px; font-size: .9rem; border-radius: 8px; }
.btn-block { width: 100%; }
.btn svg { flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(27, 30, 53, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
}
.brand img { display: block; width: 132px; height: auto; }
.header-nav { display: none; gap: 20px; }
.header-nav a {
  color: var(--light);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
}
.header-nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-login {
  color: var(--light);
  font-size: .82rem;
  text-decoration: none;
  display: none;
}
.header-login span { color: var(--cyan); font-weight: 700; text-decoration: underline; }
.header-login:hover span { color: #fff; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(700px 420px at 12% -10%, rgba(44, 166, 215, .28), transparent 60%),
    radial-gradient(700px 460px at 95% 8%, rgba(128, 33, 127, .38), transparent 60%),
    var(--navy);
  color: var(--light);
  padding: 64px 0 56px;
}
.hero h1 { color: #fff; }
.hero .lead { color: var(--light); max-width: 640px; }
.hero-grid {
  display: grid;
  gap: 44px;
  align-items: center;
  grid-template-columns: 1fr;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-note { font-size: .82rem; color: #9CA1B8; margin-top: 14px; }
.hero .eyebrow { color: var(--cyan); }

/* Mock visual (painel abstrato, sem screenshot falso) */
.hero-visual { position: relative; }
.hero-visual > img { border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0, 0, 0, .45); }
.mock-card {
  background: linear-gradient(160deg, #232848, #1B1E35);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.mock-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mock-title { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #9CA1B8; }
.mock-pill {
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  background: var(--grad);
  padding: 4px 12px;
  border-radius: 20px;
}
.mock-bars { display: grid; gap: 12px; }
.mock-bar { display: grid; grid-template-columns: 112px 1fr; align-items: center; gap: 12px; font-size: .78rem; color: var(--light); }
.mock-bar i {
  display: block;
  height: 12px;
  border-radius: 8px;
  background: var(--grad);
  opacity: .9;
}
.mock-bar.dim i { background: rgba(255, 255, 255, .16); }
.mock-foot { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.mock-chip {
  font-size: .72rem;
  font-weight: 600;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ---------- Trustbar ---------- */
.trustbar {
  background: var(--navy-3);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 26px 0;
}
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}
.trust-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(44, 166, 215, .1);
  border: 1px solid rgba(44, 166, 215, .3);
}
.trust-item:nth-child(2) .trust-icon {
  color: #B265B1;
  background: rgba(128, 33, 127, .16);
  border-color: rgba(178, 101, 177, .4);
}
.trust-item:nth-child(3) .trust-icon {
  color: #7BE3A6;
  background: rgba(30, 190, 93, .1);
  border-color: rgba(30, 190, 93, .3);
}
.trust-num {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.15;
}
.trust-label { font-size: .82rem; color: #9CA1B8; }

/* ---------- Seções ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--bg); }
.section-head { max-width: 760px; margin: 0 auto 42px; text-align: center; }

/* Grade de cards (produtos/pilares) */
.cards-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .2s ease;
}
.card:hover::before { opacity: 1; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; font-size: .95rem; }
.card .badge-destaque {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(128, 33, 127, .1);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(44, 166, 215, .12);
  color: var(--cyan);
  margin-bottom: 14px;
}
.card-icon svg { width: 22px; height: 22px; }

/* ---------- Seções-âncora (página performance) ---------- */
.anchor-section { padding: 64px 0; scroll-margin-top: calc(var(--header-h) + 12px); }
.anchor-section:nth-of-type(even) { background: var(--bg); }
.anchor-grid { display: grid; gap: 34px; grid-template-columns: 1fr; align-items: start; }
.anchor-body h2 { max-width: 640px; }
.checklist { list-style: none; margin: 18px 0 6px; padding: 0; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 32px; font-size: .97rem; }
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/15px no-repeat, linear-gradient(#fff, #fff);
  -webkit-mask-composite: destination-out;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/15px no-repeat;
  background: var(--grad);
}
.mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 800;
  color: var(--purple);
  text-decoration: none;
}
.mini-cta:hover { text-decoration: underline; }
.link-simples { font-size: .9rem; margin-top: 14px; }

/* Navegação por chips (âncoras) */
.chip-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 18px 0 6px;
  scrollbar-width: none;
}
.chip-nav::-webkit-scrollbar { display: none; }
.chip-nav a {
  flex: 0 0 auto;
  font-size: .82rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 8px 16px;
  border-radius: 30px;
  transition: all .15s ease;
}
.chip-nav a:hover { border-color: var(--cyan); color: #fff; }

/* ---------- Público duplo ---------- */
.duo-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.duo-card {
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}
.duo-card.dark { background: var(--navy); border-color: var(--navy); }
.duo-card.dark h3, .duo-card.dark strong { color: #fff; }
.duo-card.dark p, .duo-card.dark li { color: var(--light); }
.duo-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  background: rgba(44, 166, 215, .14);
  color: var(--cyan);
}

/* ---------- Depoimentos (carrossel de vídeos) ---------- */
.section-depoimentos { background: var(--bg); }
.depo-carousel { position: relative; margin-top: 34px; }
.depo-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.depo-track::-webkit-scrollbar { display: none; }
.depo-track:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.depo-card {
  margin: 0;
  flex: 0 0 min(352px, 84vw);
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.depo-video {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy);
}
.depo-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.depo-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 23, 42, 0) 55%, rgba(20, 23, 42, .45));
  transition: background .2s ease;
}
.depo-video:hover .depo-scrim { background: linear-gradient(180deg, rgba(20, 23, 42, .08) 55%, rgba(20, 23, 42, .55)); }
.depo-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }
.depo-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 10px 28px rgba(20, 23, 42, .55);
  transition: transform .15s ease;
}
.depo-play svg { margin-left: 3px; }
.depo-video:hover .depo-play { transform: translate(-50%, -50%) scale(1.09); }
.depo-dur {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  background: rgba(20, 23, 42, .72);
  padding: 3px 10px;
  border-radius: 20px;
  font-variant-numeric: tabular-nums;
}
.depo-card blockquote { margin: 0; font-size: .92rem; color: var(--ink); flex: 1; padding: 0 6px; }
.depo-card figcaption { padding: 0 6px; }
.depo-nome { display: block; font-weight: 800; color: var(--ink); font-size: .95rem; }
.depo-cargo { display: block; font-size: .8rem; color: var(--muted); }
.depo-empresa { display: block; font-size: .82rem; font-weight: 800; color: var(--ink); }

.depo-nav {
  position: absolute;
  top: 96px;
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--ink);
  display: none;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(27, 30, 53, .18);
  transition: transform .15s ease, opacity .15s ease;
}
.depo-nav:hover:not(:disabled) { transform: scale(1.08); color: var(--purple); }
.depo-nav:disabled { opacity: .35; cursor: default; }
.depo-prev { left: -10px; }
.depo-next { right: -10px; }
.depo-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.depo-dots button {
  width: 9px;
  height: 9px;
  border-radius: 20px;
  border: 0;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: all .25s ease;
}
.depo-dots button.is-active { width: 26px; background: var(--grad); }

/* ---------- Escritórios que confiam (carrossel de clientes) ---------- */
.section-parceiros { padding: 52px 0; border-top: 1px solid var(--border); overflow: hidden; }
.clientes-titulo { margin-bottom: 30px; }
.clientes-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clientes-row {
  display: flex;
  width: max-content;
  animation: clientes-scroll 55s linear infinite;
}
.clientes-marquee:hover .clientes-row { animation-play-state: paused; }
.clientes-set { display: flex; align-items: center; }
.clientes-set img {
  height: 46px;
  width: auto;
  margin-right: 64px;
  filter: grayscale(1);
  opacity: .6;
  transition: filter .2s ease, opacity .2s ease;
}
.clientes-set img:hover { filter: none; opacity: 1; }
@keyframes clientes-scroll {
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .clientes-set img { height: 38px; margin-right: 44px; }
  .clientes-row { animation-duration: 40s; }
}
@media (prefers-reduced-motion: reduce) {
  .clientes-row { animation: none; flex-wrap: wrap; justify-content: center; width: auto; gap: 26px 0; }
  .clientes-set { flex-wrap: wrap; justify-content: center; gap: 26px 0; }
  .clientes-set[aria-hidden="true"] { display: none; }
  .clientes-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 34px auto 0; display: grid; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 22px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  font-weight: 700;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--purple);
  transition: transform .2s ease;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 0 20px; font-size: .95rem; }
.faq-item .faq-body p { margin-bottom: .6em; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Ponte Simples Nacional ---------- */
.banner-simples {
  border-radius: var(--radius);
  padding: 30px;
  background: linear-gradient(120deg, rgba(44, 166, 215, .1), rgba(128, 33, 127, .1));
  border: 1px solid rgba(128, 33, 127, .25);
  display: grid;
  gap: 12px;
}
.banner-simples h2 { margin-bottom: 4px; font-size: 1.25rem; }
.banner-simples p { margin: 0; }
.banner-simples a { font-weight: 800; }

/* ---------- Formulário ---------- */
.section-form {
  background:
    radial-gradient(640px 400px at 88% 0%, rgba(128, 33, 127, .35), transparent 60%),
    radial-gradient(560px 380px at 0% 100%, rgba(44, 166, 215, .22), transparent 60%),
    var(--navy);
  color: var(--light);
  scroll-margin-top: var(--header-h);
}
.section-form h2 { color: #fff; }
.form-shell { max-width: 800px; margin: 0 auto; }
.form-head { text-align: center; max-width: 640px; margin: 0 auto; }
.form-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 30px;
  padding: 0;
  margin: 22px 0 28px;
  font-size: .9rem;
}
.form-meta li, .form-meta a { display: inline-flex; align-items: center; gap: 8px; }
.form-meta li { color: var(--light); }
.form-meta svg { color: var(--cyan); flex-shrink: 0; }
.form-meta a { color: #7BE3A6; font-weight: 700; text-decoration: none; }
.form-meta a:hover { text-decoration: underline; }
.form-meta a svg { color: #7BE3A6; }
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
}
.form-loading { color: var(--muted); font-size: .9rem; text-align: center; padding: 30px 0; }
.hubspot-form--pendente { text-align: center; padding: 16px 6px; color: var(--text); }
.hubspot-form--pendente .btn { margin-top: 12px; }
.lgpd-note { margin: 18px auto 0; max-width: 640px; text-align: center; font-size: .74rem; color: #9CA1B8; line-height: 1.55; }
.lgpd-note a { color: var(--cyan); }

/* Estilo dos campos injetados pelo HubSpot (embed v2) */
.hubspot-form .hs-form-field { margin-bottom: 16px; }
.hubspot-form .hs-form-field > label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.hubspot-form .hs-input:not([type="checkbox"]):not([type="radio"]) {
  width: 100% !important;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease;
}
.hubspot-form .hs-input:focus { outline: none; border-color: var(--cyan); }
.hubspot-form select.hs-input { appearance: auto; }
.hubspot-form .hs-error-msgs { list-style: none; margin: 6px 0 0; padding: 0; }
.hubspot-form .hs-error-msg, .hubspot-form .hs-main-font-element { color: #C4314B; font-size: .78rem; }
.hubspot-form .hs-button {
  width: 100%;
  padding: 15px 24px;
  border: 0;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(128, 33, 127, .3);
  transition: filter .15s ease, transform .15s ease;
}
.hubspot-form .hs-button:hover { filter: brightness(1.07); transform: translateY(-1px); }
.hubspot-form .legal-consent-container, .hubspot-form .legal-consent-container p { font-size: .74rem; color: var(--muted); }
.hubspot-form .submitted-message { color: var(--ink); font-size: 1rem; font-weight: 600; text-align: center; padding: 26px 4px; }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--navy-3); color: #9CA1B8; padding: 54px 0 0; font-size: .88rem; }
.footer-inner {
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer-brand img { margin-bottom: 14px; }
.footer-brand p { max-width: 420px; margin: 0; }
.footer-links { display: grid; gap: 10px; align-content: start; }
.footer-links a { color: var(--light); text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-legal { padding: 20px 22px; text-align: center; font-size: .78rem; }
.footer-legal p { margin: 0; }

/* ---------- WhatsApp flutuante + CTA mobile ---------- */
.whats-float {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 60;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--whats);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .3);
}
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(20, 23, 42, .96);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
body { padding-bottom: 74px; } /* espaço para a barra mobile */

/* ---------- Responsivo ---------- */
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .depo-nav { display: grid; }
  .header-login { display: inline; }
  .header-nav { display: flex; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .anchor-grid { grid-template-columns: 1.1fr .9fr; }
  .duo-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1.2fr .8fr; }
  .mobile-cta { display: none; }
  body { padding-bottom: 0; }
  .whats-float { bottom: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .depo-track { scroll-behavior: auto; }
  .btn, .card::before, .parceiros-row img { transition: none; }
}
