/* =====================================================================
   Empreender no Paraguai — Estilo principal
   Padrao Fregale: CSS custom properties, nomenclatura BEM, mobile first
   ===================================================================== */

/* ----------------------------- Tokens ------------------------------ */
:root {
  /* Cores de marca */
  --ink: #0a0e2a; /* navy profundo, fundo escuro primario */
  --ink-soft: #131a40; /* superficie elevada no escuro */
  --ink-line: rgba(255, 255, 255, 0.1);
  --paper: #ffffff;
  --mist: #f5f6fb; /* secao clara alternada */
  --mist-2: #eef0f8;
  --line: #e6e8f2; /* hairline no claro */
  --gold: #b5996b; /* dourado de marca, acento premium */
  --gold-deep: #997e52;
  --gold-soft: rgba(181, 153, 107, 0.14);
  --blue: #4d68b0; /* azul de marca */
  --blue-deep: #38508f;
  --flag-red: #d23b34; /* vermelho da bandeira, micro acento */
  --flag-blue: #4d68b0;

  --text: #1a1e30; /* corpo no claro */
  --muted: #5c6178; /* corpo suave no claro */
  --soft: #7b8099;
  --text-inv: #eef0f8; /* corpo no escuro */
  --muted-inv: #9aa0c2;

  /* Tipografia */
  --display: "League Spartan", "Manrope", system-ui, sans-serif;
  --body: "Manrope", system-ui, -apple-system, sans-serif;

  /* Forma e profundidade */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(10, 14, 42, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 14, 42, 0.1);
  --shadow-lg: 0 30px 70px rgba(10, 14, 42, 0.16);
  --ring: 0 0 0 4px var(--gold-soft);

  /* Ritmo */
  --container: 1200px;
  --gap: clamp(1rem, 3vw, 2rem);
  --pad-section: clamp(4.5rem, 9vw, 8rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------------------------- Reset ------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-padding-top: 110px;
}
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}
ul {
  list-style: none;
  padding: 0;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----------------------------- Tipografia -------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h-display {
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
}
h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
}
h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}
p {
  color: var(--muted);
}

/* ----------------------------- Utilidades -------------------------- */
.container {
  width: min(100% - 2.4rem, var(--container));
  margin-inline: auto;
}
.section {
  padding-block: var(--pad-section);
}
.section--tight {
  padding-block: clamp(3rem, 6vw, 5rem);
}
.section--dark {
  background: var(--ink);
  color: var(--text-inv);
}
.section--mist {
  background: var(--mist);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: #fff;
}
.section--dark p {
  color: var(--muted-inv);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--muted);
  max-width: 60ch;
}
.section--dark .lead {
  color: var(--muted-inv);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.section--dark .eyebrow {
  color: var(--gold);
}

/* Assinatura: regua tricolor da bandeira (deriva do logo) */
.flag-rule {
  display: inline-flex;
  height: 4px;
  width: 56px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.flag-rule i {
  flex: 1;
}
.flag-rule i:nth-child(1) {
  background: var(--flag-red);
}
.flag-rule i:nth-child(2) {
  background: #fff;
}
.flag-rule i:nth-child(3) {
  background: var(--flag-blue);
}
.eyebrow .flag-rule {
  width: 0px;
  height: 0px;
}

.section-head {
  max-width: 760px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow {
  justify-content: center;
}
.section-head h2 + p {
  margin-top: 1.1rem;
}

.text-gold {
  color: var(--gold);
}
.text-blue {
  color: var(--blue);
}

/* Reveal no scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}
.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}
.reveal[data-delay="5"] {
  transition-delay: 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ----------------------------- Botoes ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--r-pill);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg {
  width: 1.1em;
  height: 1.1em;
}
.btn--primary {
  background: var(--gold);
  color: #1a1407;
  box-shadow: 0 12px 26px rgba(181, 153, 107, 0.34);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(181, 153, 107, 0.46);
  background: #c4a878;
}
.btn--ink {
  background: var(--ink);
  color: #fff;
}
.btn--ink:hover {
  transform: translateY(-2px);
  background: #16204f;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.6px var(--line);
}
.btn--ghost:hover {
  box-shadow: inset 0 0 0 1.6px var(--gold);
  color: var(--gold-deep);
  transform: translateY(-2px);
}
.section--dark .btn--ghost {
  color: #fff;
  box-shadow: inset 0 0 0 1.6px rgba(255, 255, 255, 0.28);
}
.section--dark .btn--ghost:hover {
  box-shadow: inset 0 0 0 1.6px var(--gold);
  color: var(--gold);
}
.btn--wa {
  background: #25d366;
  color: #06310f;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.32);
}
.btn--wa:hover {
  transform: translateY(-2px);
  background: #2ee06f;
}
.btn--lg {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ----------------------------- Cabecalho --------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding-block: 0.9rem;
  transition:
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    padding 0.35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(10, 14, 42, 0.92);
  backdrop-filter: blur(14px);
  box-shadow:
    0 1px 0 var(--ink-line),
    0 16px 40px rgba(10, 14, 42, 0.3);
  padding-block: 0.6rem;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.brand img {
  height: 46px;
  width: auto;
}
.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.18rem;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand__name small {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.28rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.nav__list a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-block: 0.3rem;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__list a:hover {
  color: #fff;
}
.nav__list a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1.4px rgba(255, 255, 255, 0.22);
}
.nav-toggle span {
  position: relative;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s var(--ease);
}
.nav-toggle span::before {
  top: -6px;
}
.nav-toggle span::after {
  top: 6px;
}
body.menu-open .nav-toggle span {
  background: transparent;
}
body.menu-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}
body.menu-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ----------------------------- Hero -------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(
      120% 90% at 85% 10%,
      rgba(77, 104, 176, 0.3),
      transparent 55%
    ),
    linear-gradient(180deg, #0b1030 0%, var(--ink) 60%, #0c1238 100%);
  color: #fff;
  padding-top: clamp(8rem, 14vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.6rem, 6.4vw, 4.7rem);
  color: #fff;
}
.hero__title b {
  color: var(--gold);
  font-weight: 700;
}
.hero__sub {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: #c7ccec;
  max-width: 54ch;
}
.hero .btn-row {
  margin-top: 2.2rem;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-line);
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #d7dbf2;
}
.hero__pill svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--gold);
  flex: none;
}

.hero__visual {
  position: relative;
}
.hero__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    var(--shadow-lg),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  aspect-ratio: 3 / 2.1;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(10, 14, 42, 0.35));
}
.hero__badge {
  position: absolute;
  left: -14px;
  bottom: 22px;
  z-index: 2;
  background: rgba(13, 18, 52, 0.86);
  backdrop-filter: blur(10px);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-md);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.hero__badge strong {
  font-family: var(--display);
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}
.hero__badge span {
  font-size: 0.82rem;
  color: #c7ccec;
  max-width: 16ch;
}

/* ----------------------------- Tira de pilares --------------------- */
.pillars {
  background: var(--ink-soft);
}
.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--r-md);
  overflow: hidden;
}
.pillar {
  padding: 1.8rem 1.6rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pillar + .pillar {
  border-top: 1px solid var(--ink-line);
}
.pillar__ico {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold);
  display: grid;
  place-items: center;
}
.pillar__ico svg {
  width: 22px;
  height: 22px;
}
.pillar h3 {
  font-size: 1.15rem;
  color: #fff;
}
.pillar p {
  margin-top: 0.35rem;
  font-size: 0.94rem;
  color: var(--muted-inv);
}

/* ----------------------------- Stats / vantagens ------------------- */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.stat {
  background: var(--paper);
  padding: 1.7rem 1.4rem;
  transition: background 0.3s var(--ease);
}
.stat:hover {
  background: var(--mist);
}
.stat__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  color: var(--ink);
  line-height: 1;
}
.stat__num b {
  color: var(--gold);
  font-weight: 700;
}
.stat__label {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ----------------------------- Comparativo ------------------------- */
.compare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.cmp {
  border-radius: var(--r-lg);
  padding: clamp(1.7rem, 3vw, 2.4rem);
  position: relative;
  overflow: hidden;
}
.cmp--neg {
  background: #11163a;
  border: 1px solid var(--ink-line);
}
.cmp--pos {
  background: linear-gradient(180deg, #15224f, #101a44);
  border: 1px solid rgba(181, 153, 107, 0.4);
  box-shadow:
    0 0 0 1px rgba(181, 153, 107, 0.12),
    var(--shadow-md);
}
.cmp__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: var(--r-pill);
}
.cmp__tag svg {
  width: 1rem;
  height: 1rem;
  flex: none;
}
.cmp--neg .cmp__tag {
  background: rgba(210, 59, 52, 0.16);
  color: #f1a6a1;
}
.cmp--pos .cmp__tag {
  background: var(--gold-soft);
  color: var(--gold);
}
.cmp h3 {
  color: #fff;
  margin-top: 1rem;
}
.cmp__caption {
  color: var(--muted-inv);
  margin-top: 0.4rem;
  font-size: 0.95rem;
}
.cmp__list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.85rem;
}
.cmp__list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: #d8dcf2;
  font-size: 0.97rem;
}
.cmp__list li svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: none;
  margin-top: 0.15rem;
}
.cmp--neg .cmp__list svg {
  color: #e0635c;
}
.cmp--pos .cmp__list svg {
  color: var(--gold);
}
.cmp__foot {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--ink-line);
  font-weight: 600;
  color: #fff;
  font-size: 0.98rem;
}
.cmp--pos .cmp__foot {
  color: var(--gold);
}

/* ----------------------------- Beneficios -------------------------- */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.benefit {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.8rem 1.6rem;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.benefit:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.benefit__ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  transition: background 0.3s var(--ease);
}
.benefit__ico svg {
  width: 26px;
  height: 26px;
}
.benefit:hover .benefit__ico {
  background: var(--gold);
  color: var(--ink);
}
.benefit h3 {
  font-size: 1.22rem;
}
.benefit p {
  margin-top: 0.6rem;
  font-size: 0.96rem;
}

/* ----------------------------- Servicos (ofertas) ------------------ */
.offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.offer {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  overflow: hidden;
  transition:
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.offer:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.offer--feature {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.offer--feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 90% 0%,
    rgba(77, 104, 176, 0.3),
    transparent 55%
  );
  pointer-events: none;
}
.offer__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.offer__ico {
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.offer--feature .offer__ico {
  background: var(--gold);
  color: var(--ink);
}
.offer__ico svg {
  width: 28px;
  height: 28px;
}
.offer h3 {
  font-size: 1.5rem;
}
.offer--feature h3 {
  color: #fff;
}
.offer__desc {
  margin-top: 1rem;
  position: relative;
}
.offer--feature .offer__desc {
  color: var(--muted-inv);
}
.offer__list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.8rem;
  position: relative;
}
.offer__list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--text);
}
.offer--feature .offer__list li {
  color: #dde1f4;
}
.offer__list svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: none;
  margin-top: 0.15rem;
  color: var(--gold);
}
.offer .btn {
  margin-top: 1.8rem;
  position: relative;
}

/* ----------------------------- Processo ---------------------------- */
.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.step {
  position: relative;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-md);
  padding: 1.8rem 1.6rem;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.step:hover {
  transform: translateY(-5px);
  border-color: rgba(181, 153, 107, 0.5);
}
.step__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(181, 153, 107, 0.5);
}
.step h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 0.7rem;
}
.step p {
  margin-top: 0.5rem;
  font-size: 0.93rem;
  color: var(--muted-inv);
}
.step__arrow {
  position: absolute;
  top: 50%;
  right: -22px;
  color: var(--gold);
  width: 26px;
  height: 26px;
  z-index: 2;
}

/* ----------------------------- Autoridade -------------------------- */
.authority__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.auth-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.8rem 1.6rem;
  border-top: 3px solid var(--gold);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.auth-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.auth-card h3 {
  font-size: 1.2rem;
}
.auth-card p {
  margin-top: 0.6rem;
  font-size: 0.96rem;
}

/* ----------------------------- Faixa CTA --------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band__box {
  position: relative;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    90% 120% at 50% -10%,
    rgba(181, 153, 107, 0.28),
    transparent 55%
  );
}
.cta-band__box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--flag-red) 0 33%,
    #fff 33% 66%,
    var(--flag-blue) 66% 100%
  );
}
.cta-band h2 {
  color: #fff;
  position: relative;
}
.cta-band p {
  color: var(--muted-inv);
  margin: 1rem auto 0;
  max-width: 56ch;
  position: relative;
}
.cta-band .btn-row {
  justify-content: center;
  margin-top: 2rem;
  position: relative;
}

/* ----------------------------- FAQ --------------------------------- */
.faq__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
.accordion {
  display: grid;
  gap: 0.8rem;
}
.acc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.acc.is-open {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.acc__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  text-align: left;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.acc__q:hover {
  color: var(--gold-deep);
}
.acc__icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mist);
  color: var(--ink);
  transition:
    transform 0.35s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.acc.is-open .acc__icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #fff;
}
.acc__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.acc__a p {
  padding: 0 1.4rem 1.3rem;
  font-size: 0.97rem;
}

.faq__aside {
  position: sticky;
  top: 110px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 2rem 1.7rem;
  overflow: hidden;
  position: relative;
}
.faq__aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    100% 80% at 100% 0%,
    rgba(77, 104, 176, 0.3),
    transparent 55%
  );
}
.faq__aside h3 {
  color: #fff;
  font-size: 1.5rem;
  position: relative;
}
.faq__aside p {
  color: var(--muted-inv);
  margin-top: 0.8rem;
  position: relative;
}
.faq__aside .btn {
  margin-top: 1.5rem;
  position: relative;
}

/* ----------------------------- Rodape ------------------------------ */
.site-footer {
  background: var(--ink);
  color: var(--text-inv);
  padding-top: clamp(3.5rem, 6vw, 5rem);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid var(--ink-line);
}
.footer__brand img {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
}
.footer__brand p {
  color: var(--muted-inv);
  max-width: 38ch;
  font-size: 0.95rem;
}
.footer__col h4 {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--body);
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.footer__col ul {
  display: grid;
  gap: 0.7rem;
}
.footer__col a {
  color: var(--muted-inv);
  font-size: 0.95rem;
  transition: color 0.25s var(--ease);
}
.footer__col a:hover {
  color: var(--gold);
}
.footer__contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--muted-inv);
  font-size: 0.92rem;
}
.footer__contact svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--gold);
  flex: none;
  margin-top: 0.15rem;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.6rem;
}
.footer__bottom p {
  color: var(--soft);
  font-size: 0.85rem;
}
.footer__bottom a {
  color: var(--gold);
}
.footer__social {
  display: flex;
  gap: 0.7rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px var(--ink-line);
  color: var(--muted-inv);
  transition: 0.25s var(--ease);
}
.footer__social a:hover {
  color: var(--ink);
  background: var(--gold);
  box-shadow: none;
  transform: translateY(-2px);
}
.footer__social svg {
  width: 18px;
  height: 18px;
}

/* ----------------------------- Flutuantes -------------------------- */
.wa-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 980;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 30px;
  height: 30px;
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 980;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: 0.35s var(--ease);
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover {
  background: var(--gold);
  color: var(--ink);
}
.to-top svg {
  width: 22px;
  height: 22px;
}

/* ----------------------------- Barra de cookies -------------------- */
.tc-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  background: var(--ink-soft);
  color: #fff;
  padding: 1rem 1.1rem;
  box-shadow: 0 -10px 30px rgba(10, 14, 42, 0.4);
  border-top: 1px solid var(--ink-line);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
}
.tc-bar.is-visible {
  transform: none;
}
.tc-bar__inner {
  width: min(100% - 1rem, var(--container));
  margin-inline: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tc-bar p {
  color: var(--muted-inv);
  font-size: 0.9rem;
  flex: 1;
  min-width: 240px;
}
.tc-bar a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
}
.tc-bar__btns {
  display: flex;
  gap: 0.6rem;
}

/* ----------------------------- Loader ------------------------------ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition:
    opacity 0.5s var(--ease),
    visibility 0.5s var(--ease);
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
}
.loader__mark {
  width: 56px;
  height: 56px;
}
.loader__ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid rgba(181, 153, 107, 0.25);
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ----------------------------- Paginas legais ---------------------- */
.legal {
  background: var(--ink);
  color: var(--text-inv);
  padding-top: clamp(8rem, 12vw, 10rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.legal__inner {
  width: min(100% - 2.4rem, 860px);
  margin-inline: auto;
}
.legal__inner h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}
.legal__inner h2 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
}
.legal__inner p,
.legal__inner li {
  color: var(--muted-inv);
  font-size: 0.98rem;
  line-height: 1.75;
}
.legal__inner ul {
  list-style: disc;
  padding-left: 1.4rem;
  display: grid;
  gap: 0.5rem;
  margin-block: 0.6rem;
}
.legal__inner a {
  color: var(--gold);
  text-decoration: underline;
}
.legal__inner strong {
  color: #fff;
}

/* =====================================================================
   Breakpoints
   ===================================================================== */
@media (min-width: 600px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pillar + .pillar {
    border-top: 0;
  }
  .pillar:not(:first-child) {
    border-left: 1px solid var(--ink-line);
  }
}
@media (min-width: 860px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .compare__grid {
    grid-template-columns: 1fr 1fr;
  }
  .offers {
    grid-template-columns: 1fr 1fr;
  }
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .authority__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__top {
    grid-template-columns: 1.6fr 1fr 1.2fr;
  }
  .faq__wrap {
    grid-template-columns: 1.8fr 1fr;
  }
}
@media (min-width: 1040px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .step:not(:nth-child(4)) .step__arrow {
    display: block;
  }
}
@media (max-width: 1039px) {
  .step__arrow {
    display: none;
  }
}

/* Menu mobile */
@media (max-width: 859px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 340px);
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 6rem 1.6rem 2rem;
    gap: 1.4rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.4);
    z-index: 1001;
  }
  body.menu-open .nav {
    transform: none;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }
  .nav__list a {
    padding: 0.9rem 0.4rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--ink-line);
  }
  .nav__list a::after {
    display: none;
  }
  .nav .btn {
    width: 100%;
    justify-content: center;
  }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 20, 0.6);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s var(--ease);
    z-index: 1000;
  }
  body.menu-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 860px) {
  .nav-backdrop {
    display: none;
  }
}

/* Brand name oculto em telas muito pequenas */
@media (max-width: 380px) {
  .brand__name {
    display: none;
  }
}
