/* ==========================================================================
   Globo Pan Doces, sistema de estilos.
   Minimalista e moderno, mantendo o azul da marca. CSS puro, sem dependências.
   Tokens de marca em :root. Fontes auto-hospedadas em assets/fonts.
   ========================================================================== */

/* ---------- Fontes locais (sem CDN) ---------------------------------------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/inter-var.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/poppins-700.woff2") format("woff2");
}

/* ---------- Tokens de marca ------------------------------------------------ */
:root {
  /* Marca (azul Globo Pan, ajustado para contraste) */
  --blue: #1f9fe0;
  --blue-dark: #0f6fb0;
  --blue-wash: #eaf6fd;

  /* Texto e base neutra premium */
  --ink: #122c46;
  --ink-soft: #2b4358;
  --muted: #5a6b7d;
  --paper: #ffffff;
  --cream: #f6f9fc;
  --sand: #fbf7f1;
  --line: rgba(18, 44, 70, 0.1);

  /* Acentos doces (uso pontual) */
  --pink: #ff5da2;
  --yellow: #ffc935;
  --orange: #ff8a3d;
  --green: #25d366;
  --green-dark: #1fb457;

  /* Sombras suaves */
  --shadow-sm: 0 2px 12px rgba(18, 44, 70, 0.05);
  --shadow: 0 16px 38px rgba(18, 44, 70, 0.09);
  --shadow-lg: 0 30px 70px rgba(18, 44, 70, 0.14);

  /* Raios */
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 28px;
  --r-full: 999px;

  /* Layout e movimento */
  --wrap: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

/* ---------- Reset e base --------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", "Inter", sans-serif;
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

::selection {
  background: rgba(31, 159, 224, 0.22);
}

/* ---------- Utilidades ----------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3.75rem, 8vw, 6.5rem);
}

.section--cream {
  background: var(--cream);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head h2 {
  margin-top: 0.9rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.section-head p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.lead {
  color: var(--muted);
}

/* ---------- Botões --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 3.25rem;
  padding: 0 1.5rem;
  border: 1.5px solid transparent;
  border-radius: var(--r-full);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.btn svg {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
}

.btn--lg {
  height: 3.55rem;
  padding: 0 1.85rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--whats {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.3);
}

.btn--whats:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.4);
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(31, 159, 224, 0.28);
}

.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(31, 159, 224, 0.36);
}

.btn--light {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

/* ---------- Reveal ao rolar ------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.07s; }
.reveal[data-delay="2"] { transition-delay: 0.14s; }
.reveal[data-delay="3"] { transition-delay: 0.21s; }
.reveal[data-delay="4"] { transition-delay: 0.28s; }
.reveal[data-delay="5"] { transition-delay: 0.35s; }
.reveal[data-delay="6"] { transition-delay: 0.42s; }

/* ---------- Cabeçalho ------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: clamp(34px, 4.5vw, 42px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-full);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition:
    color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.nav a:hover {
  color: var(--blue-dark);
  background: var(--blue-wash);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-cta {
  height: 2.85rem;
  padding: 0 1.2rem;
  font-size: 0.9rem;
}

/* Estado transparente sobre o hero (topo) */
.brand img {
  transition: filter 0.3s var(--ease);
}

.site-header--top .brand img {
  filter: brightness(0) invert(1);
}

.site-header--top .nav a {
  color: rgba(255, 255, 255, 0.9);
}

.site-header--top .nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.site-header--top .hamburger {
  color: #fff;
}

/* Estado sólido (rolando) */
.site-header--solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(18, 44, 70, 0.06);
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: var(--r-full);
  color: var(--ink);
}

.hamburger svg {
  width: 26px;
  height: 26px;
}

/* ---------- Menu mobile (drawer) ------------------------------------------- */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: min(340px, 86vw);
  height: 100dvh;
  padding: 1.25rem;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 60px rgba(18, 44, 70, 0.16);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}

.drawer.is-open {
  transform: none;
}

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.drawer__top img {
  height: 34px;
}

.drawer__close {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  color: var(--ink);
}

.drawer a.drawer__link {
  padding: 0.9rem 0.75rem;
  border-radius: var(--r-sm);
  border-bottom: 1px solid var(--line);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
}

.drawer a.drawer__link:hover {
  background: var(--cream);
}

.drawer .btn {
  margin-top: 1rem;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(18, 44, 70, 0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s var(--ease),
    visibility 0.3s var(--ease);
}

.backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* ---------- Hero ----------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(9, 30, 52, 0.62) 0%,
      rgba(9, 30, 52, 0.18) 20%,
      rgba(9, 30, 52, 0.05) 42%,
      rgba(9, 30, 52, 0.55) 82%,
      rgba(9, 30, 52, 0.78) 100%
    );
}

.hero__inner {
  max-width: 44rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.hero h1 {
  margin-top: 1.1rem;
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 30px rgba(9, 30, 52, 0.35);
}

.hero__sub {
  margin-top: 1.35rem;
  max-width: 40rem;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.6rem;
  margin-top: 2.4rem;
  padding: 0;
  list-style: none;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
}

.hero__trust svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--yellow);
  flex: 0 0 auto;
}

/* ---------- Barra de confiança / números ----------------------------------- */
.stats {
  border-block: 1px solid var(--line);
  background: #fff;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: clamp(1.75rem, 4vw, 2.75rem) 1.5rem;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat b {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--ink);
  letter-spacing: -0.02em;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- Bloco editorial (split) ---------------------------------------- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.editorial__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 201, 53, 0.5) 0 3.2rem, transparent 3.3rem),
    linear-gradient(150deg, var(--blue) 0%, var(--blue-dark) 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.editorial__media::after {
  content: "";
  position: absolute;
  width: 15rem;
  height: 15rem;
  right: -4rem;
  bottom: -4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.editorial__media img {
  position: relative;
  width: 82%;
  filter: drop-shadow(0 22px 26px rgba(9, 30, 52, 0.3));
}

.editorial__copy h2 {
  margin-top: 0.9rem;
  font-size: clamp(1.85rem, 4vw, 2.9rem);
}

.editorial__copy p {
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.editorial__copy .btn {
  margin-top: 1.8rem;
}

/* ---------- Categorias ----------------------------------------------------- */
.cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
}

.cat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.cat__thumb {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: var(--r-sm);
  background: var(--blue-wash);
}

.cat__thumb img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  transition: transform 0.25s var(--ease);
}

.cat:hover .cat__thumb img {
  transform: scale(1.08) rotate(-3deg);
}

.cat__body {
  flex: 1 1 auto;
  min-width: 0;
}

.cat__body strong {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.cat__body span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.cat__go {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--r-full);
  color: var(--blue-dark);
  background: var(--blue-wash);
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}

.cat__go svg {
  width: 1rem;
  height: 1rem;
}

.cat:hover .cat__go {
  background: var(--blue);
  color: #fff;
  transform: translateX(3px);
}

/* ---------- Produtos em destaque ------------------------------------------- */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.product {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product__img {
  display: grid;
  place-items: center;
  height: 12.5rem;
  margin-bottom: 1.1rem;
  border-radius: var(--r);
  background: linear-gradient(160deg, var(--cream), var(--blue-wash));
}

.product__img img {
  max-width: 78%;
  max-height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(18, 44, 70, 0.16));
}

.product h3 {
  font-size: 1.2rem;
}

.product p {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.product__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--blue-dark);
}

.product__link svg {
  width: 1.05rem;
  height: 1.05rem;
  transition: transform 0.2s var(--ease);
}

.product__link:hover svg {
  transform: translateX(3px);
}

/* ---------- Marcas --------------------------------------------------------- */
.brands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.brand-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.brand-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-full);
  background: var(--blue-wash);
  color: var(--blue-dark);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-card h3 {
  margin-top: 1rem;
  font-size: 1.6rem;
}

.brand-card p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.brands__note {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r);
  background: var(--sand);
  color: var(--ink-soft);
  font-size: 0.98rem;
  text-align: center;
}

/* ---------- Como comprar (passos) ------------------------------------------ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.step {
  padding-top: 1.4rem;
  border-top: 2px solid var(--line);
}

.step__num {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--blue);
}

.step h3 {
  margin-top: 0.6rem;
  font-size: 1.2rem;
}

.step p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.97rem;
}

.steps__cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Diferenciais --------------------------------------------------- */
.perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.perk {
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.perk__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: var(--r-sm);
  background: var(--blue-wash);
  color: var(--blue-dark);
}

.perk__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.perk h3 {
  font-size: 1.15rem;
}

.perk p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---------- FAQ ------------------------------------------------------------ */
.faq {
  max-width: 52rem;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0.25rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 0.72rem;
  height: 0.72rem;
  border-right: 2px solid var(--blue-dark);
  border-bottom: 2px solid var(--blue-dark);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}

.faq__item[open] summary::after {
  transform: rotate(-135deg);
}

.faq__item p {
  padding: 0 0.25rem 1.35rem;
  margin: 0;
  color: var(--muted);
}

/* ---------- Faixa de CTA --------------------------------------------------- */
.cta-band {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.cta-band__box {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--blue-dark) 0%, #0a4f83 100%);
  color: #fff;
  text-align: center;
}

.cta-band__box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(55% 120% at 85% 15%, rgba(31, 159, 224, 0.55), transparent 60%),
    radial-gradient(50% 110% at 12% 95%, rgba(255, 201, 53, 0.22), transparent 55%);
}

.cta-band__box h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 22ch;
  margin-inline: auto;
}

.cta-band__box p {
  margin: 1rem auto 0;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ---------- Rodapé --------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.footer__logo {
  width: 12rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--r-sm);
  background: #fff;
}

.footer__brand p {
  margin-top: 1rem;
  max-width: 32ch;
  font-size: 0.96rem;
  line-height: 1.6;
}

.footer h4 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer address {
  font-style: normal;
  line-height: 1.7;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s var(--ease);
}

.footer a:hover {
  color: #fff;
}

.footer__links {
  display: grid;
  gap: 0.55rem;
}

.footer__bottom {
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Botão flutuante do WhatsApp ------------------------------------ */
.fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  height: 3.6rem;
  padding: 0 0.95rem;
  color: #fff;
  background: var(--green);
  border-radius: var(--r-full);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.42);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.9);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    opacity 0.3s var(--ease),
    visibility 0.3s var(--ease);
}

.fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--green);
  z-index: -1;
  animation: fab-pulse 2.4s ease-out infinite;
}

.fab svg {
  width: 1.85rem;
  height: 1.85rem;
  flex: 0 0 auto;
}

.fab__label {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  overflow: hidden;
  transition:
    max-width 0.4s var(--ease),
    opacity 0.3s var(--ease),
    margin 0.4s var(--ease);
}

.fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5);
}

.fab:hover .fab__label {
  max-width: 12rem;
  margin-left: 0.55rem;
  opacity: 1;
}

@keyframes fab-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Acessibilidade e crédito --------------------------------------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.65rem 1.1rem;
  border-radius: var(--r-sm);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.site-credit {
  padding: 1.1rem var(--gutter);
  background: #0d2138;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.site-credit a {
  color: rgba(255, 255, 255, 0.62);
}

.site-credit a:hover {
  color: var(--blue);
}

.site-credit strong {
  color: #fff;
  font-weight: 700;
}

/* ---------- Responsivo ----------------------------------------------------- */
@media (max-width: 1024px) {
  .nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .cats,
  .products,
  .steps,
  .perks {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial {
    grid-template-columns: 1fr;
  }

  .editorial__media {
    aspect-ratio: 16 / 10;
    max-width: 34rem;
  }
}

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

  .stat:nth-child(2) {
    border-left: 0;
  }

  .stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .stat:nth-child(3) {
    border-left: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .cats,
  .products,
  .steps,
  .perks,
  .brands {
    grid-template-columns: 1fr;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* ---------- Movimento reduzido --------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }

  .fab::before {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
