/* ============================================================
   SHOPPING EMBALAGENS — estrutura.css
   Paleta: Verde Floresta + Branco + Dourado suave
   ============================================================ */

/* ── VARIÁVEIS ───────────────────────────────────────────── */
:root {
  /* Brand */
  --green: #2a7d4f;
  --green-dark: #1a5c38;
  --green-mid: #3a9962;
  --green-clear: #1aae55;
  --green-light: #eaf5ef;
  --green-xlight: #f2faf5;
  --gold: #c9a84c;
  --gold-light: #fbf6e9;

  /* Neutros */
  --dark: #16280f;
  --dark-mid: #24461f;
  --dark-alt: #1b3216;
  --dark-80: rgba(22, 40, 15, 0.8);
  --white: #ffffff;
  --off-white: #fafdf8;
  --light: #f3f9f5;
  --light2: #e8f2ec;
  --text: #0f1e13;
  --text-muted: #506658;
  --border: #c6ddd0;
  --border-light: #dcf0e4;

  /* Gradiente marca — extraído do teaser oficial */
  --grad-brand: linear-gradient(160deg, #16280f 0%, #24461f 55%, #1b3216 100%);

  /* Alfa */
  --white-80: rgba(255, 255, 255, 0.8);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --green-20: rgba(42, 125, 79, 0.2);
  --green-10: rgba(42, 125, 79, 0.1);

  /* Sombras */
  --shadow-xs: 0 1px 3px rgba(13, 26, 16, 0.06);
  --shadow-sm: 0 2px 8px rgba(13, 26, 16, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 26, 16, 0.12);
  --shadow-lg: 0 20px 48px rgba(13, 26, 16, 0.16);
  --shadow-green: 0 8px 24px rgba(42, 125, 79, 0.25);

  /* Layout */
  --nav-h: 72px;
  --container: 1200px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  /* Tipografia */
  --font-head: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Transição */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.25s var(--ease);
  --transition-slow: 0.45s var(--ease);
}

/* ── RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html,
body {
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}
input,
select,
textarea,
button {
  font: inherit;
}
::selection {
  background: var(--green-light);
  color: var(--green-dark);
}

/* ── UTILITÁRIOS ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.section--light {
  background: var(--light);
}
.section--xlight {
  background: var(--off-white);
}
.section--light2 {
  background: var(--light2);
}
.section--dark {
  background: var(--dark);
}
.section--green {
  background: var(--green);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

.accent {
  color: var(--green);
  font-style: normal;
}
.accent-gold {
  color: var(--gold);
  font-style: normal;
}

.title-xs {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
}
.title-sm {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
}
.title-md {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
}
.title-lg {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
}
.title-lg em {
  color: var(--green);
  font-style: normal;
}

.title-lg strong {
  color: var(--green-clear);
  font-style: normal;
  font-weight: 800;
}
.title-xl {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .title-lg {
  margin-top: 0.5rem;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
}

.section-header strong {
  color: var(--green);
  font-style: normal;
}

/* Divisor elegante */
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  border-radius: 2px;
  margin: 1rem 0 0;
}
.section-header .divider {
  margin-inline: auto;
  margin-top: 1.25rem;
}

/* ── ANIMAÇÕES ───────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
[data-animate][data-delay="1"] {
  transition-delay: 0.12s;
}
[data-animate][data-delay="2"] {
  transition-delay: 0.24s;
}
[data-animate][data-delay="3"] {
  transition-delay: 0.36s;
}
[data-animate].in-view {
  opacity: 1;
  transform: none;
}

/* ── BOTÕES ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.65rem;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 16px var(--green-20);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
}
.btn--whatsapp:hover {
  background: #1aae55;
  border-color: #1aae55;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: #000;
  transform: translateY(-2px);
}
.btn--outline-green {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}
.btn--outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-white {
  border-color: var(--white-40);
  color: var(--white);
  background: transparent;
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: var(--white-10);
}
.btn--outline-dark {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}
.btn--outline-dark:hover {
  border-color: var(--green);
  color: var(--green);
}
.btn--ghost {
  color: var(--green);
  padding-inline: 0.25rem;
  border-radius: 0;
}
.btn--ghost:hover {
  color: var(--green-dark);
}
.btn--lg {
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
}
.btn--sm {
  padding: 0.42rem 1rem;
  font-size: 0.76rem;
}
.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--equipe {
  /* width: 50%; */
  text-align: center;
  display: block;
  margin-inline: auto;
}

@media (max-width: 600px) {
  .btn--mobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  /* Gradiente marca com leve transparência */
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(111, 185, 94, 0.12),
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 50%,
      rgba(75, 154, 74, 0.09),
      transparent 50%
    ),
    linear-gradient(
      160deg,
      rgba(22, 40, 15, 0.82) 0%,
      rgba(36, 70, 31, 0.82) 55%,
      rgba(27, 50, 22, 0.82) 100%
    );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    background var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition),
    height var(--transition);
}
/* Com scroll — fundo branco */
.nav--scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 1px 0 var(--border),
    0 4px 24px rgba(13, 26, 16, 0.08);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* Logo */
.nav__logo {
  flex-shrink: 0;
  line-height: 0;
}
.nav__logo img {
  height: 40px;
  width: auto;
  transition: height var(--transition);
}

/* Nav mais alto + logo maior na home quando no topo */
.page-home .nav:not(.nav--scrolled) {
  height: 100px;
}
/* .page-home .nav:not(.nav--scrolled) .nav__logo img {
  height: 60px;
} */

/* Páginas internas — nav com fundo verde sólido antes do scroll */
body:not(.page-home) .nav:not(.nav--scrolled) {
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(111, 185, 94, 0.18),
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 50%,
      rgba(75, 154, 74, 0.14),
      transparent 45%
    ),
    linear-gradient(160deg, #16280f 0%, #24461f 55%, #1b3216 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* logo-white → visível no header escuro (topo da página) */
.nav__logo-img--white {
  display: block;
}
.nav__logo-img--color {
  display: none;
}
/* logo-color → visível quando header ficou branco (scroll) */
.nav--scrolled .nav__logo-img--white {
  display: none;
}
.nav--scrolled .nav__logo-img--color {
  display: block;
}

/* Links desktop — coluna central */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  justify-content: flex-end;
}
.nav__link {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--white-60);
  transition:
    color var(--transition),
    background var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--white);
}
.nav--scrolled .nav__link {
  color: var(--text-muted);
}
.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link.active {
  color: var(--green);
  background: var(--green-xlight);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--white-60);
  cursor: pointer;
  transition:
    color var(--transition),
    background var(--transition);
}
.nav__dropdown-toggle:hover,
.nav__dropdown.is-open .nav__dropdown-toggle {
  color: var(--white);
}
.nav--scrolled .nav__dropdown-toggle {
  color: var(--text-muted);
}
.nav--scrolled .nav__dropdown-toggle:hover,
.nav--scrolled .nav__dropdown.is-open .nav__dropdown-toggle {
  color: var(--green);
  background: var(--green-xlight);
}
.nav__dropdown-chevron {
  transition: transform var(--transition);
  flex-shrink: 0;
  opacity: 0.6;
}
.nav__dropdown.is-open .nav__dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav__dropdown-menu {
  position: absolute;
  inset-block-start: calc(100% + 0.6rem);
  inset-inline-start: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 248px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: all var(--transition);
  z-index: 100;
  transform-origin: top left;
}
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav__dropdown-item:hover {
  background: var(--green-xlight);
  color: var(--green);
}
.nav__dropdown-divider {
  height: 1px;
  background: var(--border-light);
  margin: 0.35rem 0.4rem;
}
.nav__dropdown-all {
  font-weight: 700;
  color: var(--green) !important;
}

/* Actions desktop — coluna direita */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-content: flex-end;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  grid-column: 3;
  justify-self: end;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav--scrolled .nav__hamburger span {
  background: var(--dark);
}
.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 26, 16, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1090;
}
.mobile-overlay.is-open {
  display: block;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  width: min(340px, 88vw);
  background: var(--white);
  z-index: 1100;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 48px rgba(13, 26, 16, 0.18);
}
.mobile-menu.is-open {
  transform: none;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}
.mobile-menu__logo img {
  height: 34px;
}
.mobile-menu__close {
  width: 36px;
  height: 36px;
  position: relative;
  flex: 0 0 36px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
}
.mobile-menu__close:hover {
  background: var(--green-light);
  color: var(--green);
}
.mobile-menu__close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-menu__close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu__close:active {
  transform: scale(0.94);
}
.mobile-menu__body {
  flex: 1;
  padding: 1rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mobile-menu__link {
  display: block;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--transition);
}
.mobile-menu__link:hover {
  background: var(--green-xlight);
  color: var(--green);
}
.mobile-menu__accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  width: 100%;
  transition: all var(--transition);
}
.mobile-menu__accordion-toggle:hover {
  background: var(--green-xlight);
  color: var(--green);
}
.mobile-menu__accordion-chevron {
  transition: transform var(--transition);
  opacity: 0.5;
  flex-shrink: 0;
}
.mobile-menu__accordion-toggle[aria-expanded="true"]
  .mobile-menu__accordion-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.mobile-menu__accordion-body {
  display: none;
  padding-inline-start: 0.75rem;
  margin-bottom: 0.25rem;
}
.mobile-menu__accordion-body.is-open {
  display: block;
}
.mobile-menu__sub-link {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: all var(--transition);
  border-inline-start: 2px solid transparent;
}
.mobile-menu__sub-link:hover {
  color: var(--green);
  background: var(--green-xlight);
  border-inline-start-color: var(--green);
}
.mobile-menu__foot {
  padding: 1.1rem 1.25rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* ── HERO / BANNER SLIDER ────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 780;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #16280f;
}
/* Grade sutil sobre o hero (igual ao teaser) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__slide {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease);
  display: flex;
  align-items: flex-end;
}
.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero__picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.hero__slide-bg {
  display: block;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 26, 16, 0.85),
    rgba(13, 26, 16, 0.45) 45%,
    rgba(13, 26, 16, 0.1)
  );
  z-index: 1;
}
.hero__slide-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-block: 2rem 4rem;
}
.hero__slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1.25rem;
}
.hero__slide-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green-mid);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero__slide-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.35rem;
  letter-spacing: -0.02em;
}
.hero__slide-title em {
  color: var(--green-mid);
  font-style: normal;
}
.hero__slide-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero__slide-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero dots */
.hero__dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 4;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--white-40);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.hero__dot.is-active {
  background: var(--green-mid);
  width: 28px;
}

@media (max-width: 1200px) {
  .hero {
    aspect-ratio: 1200 / 700;
  }
}

@media (max-width: 800px) {
  .hero {
    aspect-ratio: 800 / 780;
  }

  .hero__slide-content {
    max-width: 100%;
    padding-block: 2rem 5rem;
  }
  .hero__slide-title {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }
  .hero__slide-sub {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 780px;
  }
  .hero__slide {
    min-height: 780px;
  }
  .hero__slide-content {
    padding-bottom: 5.5rem;
  }
  .hero__slide-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero__slide-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero__dots {
    bottom: 1.5rem;
  }
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--green);
  padding: 2.5rem 0;
}
.stats-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  /* flex-wrap: nowrap; */
}
.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.75rem 1.5rem;
  min-width: 0;
  justify-content: center;
  position: relative;
}
.stats-bar__item + .stats-bar__item::before {
  content: "";
  position: absolute;
  left: 0;
  /* top: 50%; */
  top: 15%;
  bottom: 15%;
  /* inset-inline-start: 0;
  inset-block: 15%; */
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}
.stats-bar__num {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stats-bar__txt {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.3;
}

/* ── STATS CAROUSEL ──────────────────────────────────────── */

/*
 * Desktop:
 * continua como uma barra normal.
 *
 * Até 900px:
 * transforma em carrossel.
 */

@media (max-width: 900px) {

  .stats-bar {
    padding: 1.5rem 0;
  }

  .stats-bar .container {
    padding-inline: 0;
  }

  .stats-bar__inner {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    overflow: hidden;
  }

  .stats-bar__item {
    position: absolute;
    inset: 0;
    
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 1rem;
    padding: 0.5rem 1.25rem;

    opacity: 0;
    visibility: hidden;

    transform: translateX(30px);

    transition:
      opacity 0.45s var(--ease),
      transform 0.45s var(--ease),
      visibility 0.45s var(--ease);
  }

  .stats-bar__item.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  /* Remove os divisores do modo carrossel */
  .stats-bar__item + .stats-bar__item::before {
    display: none;
  }

  .stats-bar__num {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }

  .stats-bar__txt {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
  }
}


/* ── TABLET / 600px ─────────────────────────────────────── */

@media (min-width: 600px) and (max-width: 900px) {

  .stats-bar__inner {
    height: 75px;
  }

  .stats-bar__num {
    font-size: 2.5rem;
  }

  .stats-bar__txt {
    font-size: 0.78rem;
  }
}


/* ── MOBILE / ABAIXO DE 600px ───────────────────────────── */

@media (max-width: 599px) {

  .stats-bar {
    padding: 1.25rem 0;
  }

  .stats-bar__inner {
    height: 64px;
  }

  .stats-bar__item {
    width: 100%;
    padding: 0.5rem 1rem;
    gap: 0.75rem;
  }

  .stats-bar__num {
    font-size: 2rem;
    flex-shrink: 0;
  }

  .stats-bar__txt {
    max-width: 170px;
    font-size: 0.68rem;
    line-height: 1.25;
  }
}

/* ── CATEGORIAS HOME ─────────────────────────────────────── */
.categorias-home {
  padding: 5.5rem 0;
}
.categorias__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
/* 1 item sozinho na última linha → coluna central */
.categorias__grid .categoria-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}
/* 2 itens na última linha → centraliza o par com transform */
.categorias__grid .categoria-card:nth-last-child(2):nth-child(3n + 2),
.categorias__grid .categoria-card:last-child:nth-child(3n + 2) {
  transform: translateX(calc(50% + 0.625rem));
}
.categoria-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-slow);
}
.categoria-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-20);
}
.categoria-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light) 0%, var(--light2) 100%);
  position: relative;
}
.categoria-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.categoria-card:hover .categoria-card__img img {
  transform: scale(1.06);
}
.categoria-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light) 0%, var(--light2) 100%);
}
.categoria-card__img-placeholder::after {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background: var(--border);
  border-radius: 50%;
  opacity: 0.5;
}
.categoria-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
}
.categoria-card__nome {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.categoria-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.categoria-card__link {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}
.categoria-card:hover .categoria-card__link {
  gap: 0.6rem;
}

.categoria-card--lg .categoria-card__img {
  aspect-ratio: 3/2;
}
.categoria-card--lg .categoria-card__nome {
  font-size: 1rem;
}

/* ── DIFERENCIAIS ────────────────────────────────────────── */
.diferenciais-home {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(111, 185, 94, 0.18),
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(75, 154, 74, 0.15),
      transparent 45%
    ),
    linear-gradient(160deg, #16280f 0%, #24461f 55%, #1b3216 100%);
  padding: 5.5rem 0;
  overflow: hidden;
  position: relative;
}
.diferenciais-home::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.diferencial {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all var(--transition);
}
.diferencial:hover {
  background: rgba(42, 125, 79, 0.08);
  border-color: rgba(42, 125, 79, 0.25);
  transform: translateY(-4px);
}
.diferencial__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(42, 125, 79, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green-mid);
  transition: all var(--transition);
}
.diferencial:hover .diferencial__icon {
  background: var(--green);
  color: var(--white);
}
.diferencial__num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green-mid);
  opacity: 0.7;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.diferencial__title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.diferencial__desc {
  font-size: 0.82rem;
  color: var(--white-60);
  line-height: 1.65;
}

/* ── PERSONALIZAÇÃO CTA ──────────────────────────────────── */
/* ── PARALLAX STRIP ─────────────────────────────────────── */
.parallax-strip {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.parallax-strip__bg {
  position: absolute;
  inset: -15% 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.parallax-strip__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(22, 40, 15, 0.86) 0%,
    rgba(36, 70, 31, 0.72) 100%
  );
}
.parallax-strip .container {
  position: relative;
  z-index: 2;
}
.parallax-strip__content {
  max-width: 680px;
  padding: 4rem 0;
}
.parallax-strip__content .title-lg {
  color: var(--white);
  margin-top: 0.5rem;
}
.parallax-strip__content p {
  color: var(--white-60);
  font-size: 1rem;
  line-height: 1.7;
  margin: 1rem 0 2rem;
}
@media (max-width: 768px) {
  .parallax-strip__bg {
    background-attachment: scroll;
    inset: 0;
  }
}

.personalizacao-banner {
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
/* overlay escuro à esquerda + transparente à direita (reveal photo) */
.personalizacao-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(22, 40, 15, 0.92) 40%,
    rgba(22, 40, 15, 0.55) 100%
  );
  pointer-events: none;
}
.personalizacao-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.5;
}
.personalizacao-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.personalizacao-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}
.personalizacao-banner__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.personalizacao-banner__sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}
.personalizacao-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── SEGMENTOS ───────────────────────────────────────────── */
.segmentos {
  padding: 5.5rem 0;
}
.segmentos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.segmento-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.25rem;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.segmento-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 24px var(--green-10);
  transform: translateY(-4px);
}
.segmento-card:hover .segmento-card__icon {
  transform: scale(1.1);
}
.segmento-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-xlight);
  border-radius: var(--radius-md);
  color: var(--green);
  transition: all var(--transition);
}
.segmento-card:hover .segmento-card__icon {
  background: var(--green);
  color: var(--white);
  transform: scale(1.1);
}
.segmento-card__icon i {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.segmento-card__nome {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

/* ── PRODUTOS DESTAQUE ───────────────────────────────────── */
.destaques {
  padding: 5.5rem 0;
}
.produtos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.produto-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-slow);
}
.produto-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.produto-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light) 0%, var(--light2) 100%);
}
.produto-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.produto-card:hover .produto-card__img img {
  transform: scale(1.06);
}
.produto-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light) 0%, var(--light2) 100%);
}
.produto-card__body {
  padding: 1rem 1.15rem 1.25rem;
}
.produto-card__nome {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-align: center;
}
.produto-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.produto-card__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ── AVISO CATÁLOGO ──────────────────────────────────────── */
.aviso-catalogo {
  background: var(--green-xlight);
  border-block-end: 1px solid var(--border-light);
  padding: 0.9rem 0;
}
.aviso-catalogo__inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.aviso-catalogo__inner svg {
  color: var(--green);
  flex-shrink: 0;
}
.aviso-catalogo__inner p {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex: 1;
}
.aviso-catalogo__inner p strong {
  color: var(--green);
  font-weight: 700;
}

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  background: var(--light);
  border-block-end: 1px solid var(--border-light);
  padding: 0.7rem 0;
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a {
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--green);
}
.breadcrumb span {
  opacity: 0.45;
}
.breadcrumb span:last-child {
  opacity: 1;
  font-weight: 600;
  color: var(--text);
}

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(111, 185, 94, 0.18),
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(75, 154, 74, 0.15),
      transparent 45%
    ),
    linear-gradient(160deg, #16280f 0%, #24461f 55%, #1b3216 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero__content {
  max-width: 640px;
  position: relative;
  z-index: 1;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin: 0.5rem 0 1.1rem;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.01em;
}
.page-hero__title em {
  color: var(--green-mid);
  font-style: normal;
}
.page-hero__sub {
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.7;
}

.page-hero--light {
  background: var(--light);
  color: var(--text);
}
.page-hero--light::after {
  display: none;
}
.page-hero--light .page-hero__title {
  color: var(--text);
}
.page-hero--light .page-hero__sub {
  color: var(--text-muted);
}

/* Page hero com foto de fundo (categorias) */
.page-hero--categoria {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--dark);
  padding: calc(var(--nav-h) + 7rem) 0 6rem;
  position: relative;
}
.page-hero--categoria::after {
  display: none;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    160deg,
    rgba(22, 40, 15, 0.88) 0%,
    rgba(36, 70, 31, 0.78) 55%,
    rgba(27, 50, 22, 0.85) 100%
  );
}
.page-hero--categoria .page-hero__content {
  position: relative;
  z-index: 1;
}
.page-hero--categoria .page-hero__title {
  color: var(--white);
}
.page-hero--categoria .page-hero__sub {
  color: var(--white-60);
}
@media (max-width: 768px) {
  .page-hero--categoria {
    background-attachment: scroll;
  }
}

/* ── CATÁLOGO ────────────────────────────────────────────── */
.catalogo {
  padding: 4rem 0;
}
.catalogo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── OUTRAS CATEGORIAS ───────────────────────────────────── */
.outras-categorias {
  padding: 4rem 0;
}
.outras-cat__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.outra-cat__item {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  transition: all var(--transition);
}
.outra-cat__item:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-xlight);
}

/* ── EMPTY STATE ─────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 5rem 1rem;
}
.empty-state p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

/* ── QUEM SOMOS — SOBRE ──────────────────────────────────── */
.sobre {
  padding: 6rem 0;
}
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre__text {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.sobre__text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.sobre__image {
  position: relative;
}
.sobre__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.sobre__selos {
  position: absolute;
  bottom: -1.75rem;
  inset-inline-start: -1.75rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.35rem 1.75rem;
  display: flex;
  gap: 1.75rem;
  border: 1px solid var(--border-light);
}
.sobre__selo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sobre__selo-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.sobre__selo-txt {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── QUEM SOMOS — QUOTE & IMPROVEMENTS ──────────────────── */
.sobre__text blockquote {
  font-size: 1rem;
  font-style: italic;
  color: var(--green-dark);
  border-inline-start: 3px solid var(--green);
  padding: 1rem 1.5rem;
  margin: 0.5rem 0;
  background: var(--green-xlight);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.7;
  text-align: center;
}

/* ── TIMELINE ────────────────────────────────────────────── */
.timeline {
  padding: 6rem 0;
  background: var(--white);
}
.timeline .section-header {
  margin-bottom: 4rem;
}
.timeline__track {
  position: relative;
  padding-inline-start: 2.75rem;
  max-width: 760px;
  margin-inline: auto;
}
/* Linha vertical */
.timeline__track::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--green) 8%,
    var(--green) 92%,
    transparent
  );
}
.timeline__item {
  position: relative;
  padding-bottom: 3.25rem;
  display: flex;
  gap: 2.5rem;
}
.timeline__item:last-child {
  padding-bottom: 0;
}
/* Dot */
.timeline__dot {
  position: absolute;
  inset-inline-start: -2.75rem;
  top: 0.35rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--green);
  transform: translateX(-50%);
  z-index: 1;
  flex-shrink: 0;
  transition: all var(--transition);
}
.timeline__item:hover .timeline__dot {
  background: var(--green);
  box-shadow: 0 0 0 5px var(--green-light);
}
.timeline__dot--active {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 5px var(--green-light);
  width: 20px;
  height: 20px;
  inset-inline-start: calc(-2.75rem - 2px);
}
/* Card */
.timeline__card {
  flex: 1;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  transition: all var(--transition);
}
.timeline__item:hover .timeline__card {
  border-color: var(--green-20);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.timeline__card--destaque {
  background: var(--green-xlight);
  border-color: rgba(42, 125, 79, 0.25);
}
.timeline__item:hover .timeline__card--destaque {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
}
.timeline__ano {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 0.5rem;
}
.timeline__titulo {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.timeline__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── MVV ─────────────────────────────────────────────────── */
.mvv {
  padding: 5.5rem 0;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(111, 185, 94, 0.18),
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(75, 154, 74, 0.15),
      transparent 45%
    ),
    linear-gradient(160deg, #16280f 0%, #24461f 55%, #1b3216 100%);
  position: relative;
  overflow: hidden;
}
.mvv::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.mvv .section-header,
.mvv__grid {
  position: relative;
  z-index: 1;
}
.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.mvv__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.85rem;
  transition: all var(--transition);
}
.mvv__card:hover {
  background: rgba(42, 125, 79, 0.1);
  border-color: rgba(42, 125, 79, 0.3);
}
.mvv__icon {
  color: var(--green-mid);
  margin-bottom: 1.25rem;
}
.mvv__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.mvv__text {
  font-size: 0.875rem;
  color: var(--white-60);
  line-height: 1.75;
}
.mvv__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mvv__list li {
  font-size: 0.85rem;
  color: var(--white-60);
  padding-inline-start: 1.25rem;
  position: relative;
  line-height: 1.55;
}
.mvv__list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--green-mid);
}

/* ── CONTATO ─────────────────────────────────────────────── */
.contato-section {
  padding: 5.5rem 0;
}
.contato__inner {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contato__form-title,
.contato__info-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}
.contato__canal {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  transition: all var(--transition);
  color: var(--text);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}
.contato__canal:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px var(--green-10);
  transform: translateX(4px);
}
.contato__canal--wa .contato__canal-icon {
  color: #25d366;
}
.contato__canal--wa {
  border-color: rgba(37, 211, 102, 0.35);
}
.contato__canal--wa:hover {
  border-color: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15);
}
.contato__canal-icon {
  color: var(--green);
  flex-shrink: 0;
}
.contato__canal-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.12rem;
}
.contato__canal-val {
  font-weight: 600;
  font-size: 0.88rem;
  display: block;
}
.contato__horario {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  background: var(--green-xlight);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.contato__horario svg {
  color: var(--green);
  flex-shrink: 0;
}
.contato__mapa {
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contato__mapa iframe {
  width: 100%;
  border: none;
  display: block;
}

/* ── FORMULÁRIOS ─────────────────────────────────────────── */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.form__row {
  display: grid;
  gap: 1.15rem;
}
.form__row--2 {
  grid-template-columns: 1fr 1fr;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form__group--error .form__input {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}
.form__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.form__input {
  width: 100%;
  padding: 0.78rem 1.05rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form__input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-10);
}
.form__input::placeholder {
  color: var(--border);
}
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 4.5L11 1' stroke='%23506658' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-inline-end: 2.5rem;
}
.form__textarea {
  resize: vertical;
  min-height: 130px;
}
.form__error {
  font-size: 0.74rem;
  color: #e53e3e;
}
.form__disclaimer {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.alert--success {
  background: #f0fff4;
  border: 1px solid #68d391;
  color: #276749;
}
.alert--error {
  background: #fff5f5;
  border: 1px solid #fc8181;
  color: #c53030;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(350deg);
  }
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  /* foto de fundo via inline style; overlay abaixo */
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-color: #16280f; /* fallback */
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(111, 185, 94, 0.22),
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(75, 154, 74, 0.18),
      transparent 45%
    ),
    linear-gradient(
      160deg,
      rgba(22, 40, 15, 0.92) 0%,
      rgba(36, 70, 31, 0.85) 55%,
      rgba(27, 50, 22, 0.92) 100%
    );
}
.cta-section__inner {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.cta-section__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.cta-section__title em {
  color: var(--green);
  font-style: normal;
}

.cta-section__title strong {
  color: var(--green-clear);
  font-style: normal;
  font-weight: 800;
}

.cta-section__sub {
  color: var(--white-60);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER CTA STRIP ────────────────────────────────────── */
.footer-cta {
  background: var(--green);
  padding: 1.75rem 0;
}
.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-cta__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.2rem;
}
.footer-cta__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.footer-cta__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── FOOTER PRINCIPAL ────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4.5rem 0 0;
}
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.8fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Coluna brand */
.footer__logo {
  height: 38px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer__slogan {
  font-size: 0.84rem;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 280px;
}
.footer__selos {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.footer__selo {
  display: flex;
  flex-direction: column;
}
.footer__selo-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.footer__selo-txt {
  font-size: 0.62rem;
  color: var(--green-mid);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}
.footer__social {
  display: flex;
  gap: 0.55rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white-60);
  transition: all var(--transition);
}
.footer__social-link:hover {
  border-color: var(--green-mid);
  color: var(--green-mid);
}

/* Colunas nav */
.footer__col-title {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 1.25rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer__links li,
.footer__links a {
  font-size: 0.875rem;
  color: var(--white-60);
  transition: color var(--transition);
}
.footer__links a:hover {
  color: var(--white);
}

/* Coluna contato */
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}
.footer__contact-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white-60);
  transition: all var(--transition);
}
.footer__contact-card:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}
.footer__contact-card--wa {
  border-color: rgba(37, 211, 102, 0.25);
  color: #25d366;
}
.footer__contact-card--wa:hover {
  background: rgba(37, 211, 102, 0.07);
  border-color: rgba(37, 211, 102, 0.45);
  color: #25d366;
}
.footer__contact-card svg {
  flex-shrink: 0;
}
.footer__contact-card-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.55;
  margin-bottom: 0.1rem;
}
.footer__contact-card-val {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
}

.footer__horario {
  display: flex;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
}
.footer__horario-icon {
  color: var(--green-mid);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.footer__horario-line {
  font-size: 0.79rem;
  color: var(--white-60);
}
.footer__horario-line strong {
  color: var(--white);
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  flex-wrap: wrap;
}
.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.74rem;
  color: var(--white-60);
}
.footer__sep {
  opacity: 0.35;
}
.footer__bottom-right {
  font-size: 0.74rem;
  color: var(--white-60);
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.75rem;
  z-index: 900;
}
.wa-float__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
}
.wa-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.wa-float__icon {
  position: relative;
  z-index: 1;
}
.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 0.85rem);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 0.77rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--transition),
    transform var(--transition);
}
.wa-float__tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}
.wa-float:hover .wa-float__tooltip {
  opacity: 1;
}

/* ── DIFERENCIAIS INTRO ──────────────────────────────────── */
.diferenciais-intro {
  max-width: 560px;
}

/* Diferenciais em fundo claro (quem somos) */
.diferenciais {
  padding: 5.5rem 0;
}
.diferenciais__grid--6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.diferencial--card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.diferencial--card:hover {
  border-color: var(--green-20);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.diferencial__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green);
  transition: all var(--transition);
}
.diferencial__icon-wrap svg {
  width: 24px;
  height: 24px;
}
.diferencial--card:hover .diferencial__icon-wrap {
  background: var(--green);
  color: var(--white);
}
.diferencial--card .diferencial__title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.diferencial--card .diferencial__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PRODUTO CARD CTA ────────────────────────────────────── */
.produto-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  margin-top: 0.35rem;
  transition: gap var(--transition);
}
.produto-card:hover .produto-card__cta {
  gap: 0.6rem;
}

/* ── SEGMENTO CARD DESC ──────────────────────────────────── */
.segmento-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 0.4rem;
}

/* ── DEPOIMENTOS ─────────────────────────────────────────── */
.depoimentos {
  padding: 5.5rem 0;
}
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.depoimento {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-slow);
}
.depoimento:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.depoimento__estrelas {
  display: flex;
  gap: 0.2rem;
  color: #f59e0b;
}
.depoimento__texto {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.depoimento__autor {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.1rem;
}
.depoimento__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.depoimento__nome {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
}
.depoimento__empresa {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ── SEGMENTOS TICKER ────────────────────────────────────── */
.segmentos-ticker {
  background: var(--green-xlight);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 0.9rem 0;
  overflow: hidden;
}
.segmentos-ticker__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}
.segmentos-ticker:hover .segmentos-ticker__track {
  animation-play-state: paused;
}
.segmentos-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  padding: 0 2rem;
  white-space: nowrap;
}
.segmentos-ticker__item::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.5;
}
@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── RESPONSIVO ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .categorias__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .diferenciais__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .diferenciais__grid--6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .nav__inner {
    grid-template-columns: 1fr auto;
  }
  .nav__links,
  .nav__actions {
    display: none;
  }
  .nav__hamburger {
    display: flex;
    grid-column: 2;
  }
  .categorias__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .produtos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .segmentos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalogo__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .depoimentos__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
  .mvv__grid {
    grid-template-columns: 1fr;
  }
  .sobre__inner {
    grid-template-columns: 1fr;
  }
  .sobre__selos {
    position: static;
    margin-top: 1.5rem;
    box-shadow: none;
    justify-content: center;
  }
  .contato__inner {
    grid-template-columns: 1fr;
  }
  .personalizacao-banner__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats-bar__item + .stats-bar__item::before {
    display: none;
  }
  /* .stats-bar__inner {
    flex-direction: column;
    gap: 0;
  } */
  .diferenciais-intro {
    max-width: 100%;
  }
  .timeline__track {
    padding-inline-start: 2rem;
  }
  .timeline__dot {
    inset-inline-start: -2rem;
  }
  .diferenciais__grid--6 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .categorias__grid,
  .produtos__grid {
    /* grid-template-columns: 1fr 1fr; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
  }
  .categorias__grid .categoria-card:nth-last-child(2):nth-child(3n + 2),
  .categorias__grid .categoria-card:last-child:nth-child(3n + 2) {
    transform: none;
  }
  /* .produtos__grid {
    grid-template-columns: 1fr 1fr;
  } */
  .segmentos__grid {
    /* grid-template-columns: 1fr 1fr; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
  }
  .diferenciais__grid {
    grid-template-columns: 1fr;
  }
  .diferenciais__grid--6 {
    grid-template-columns: 1fr;
  }
  .depoimentos__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .catalogo__grid {
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }
  .mvv__grid {
    grid-template-columns: 1fr;
  }
  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form__row--2 {
    grid-template-columns: 1fr;
  }
  .hero__slide-actions {
    flex-direction: column;
    align-items: center;
  }
  .footer-cta__inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .page-hero {
    padding-block: calc(var(--nav-h) + 2.5rem) 2.5rem;
  }
  /* .stats-bar__inner {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
  } */
  .stats-bar__item {
    padding: 0.5rem 1.25rem;
  }
  .timeline__track {
    padding-inline-start: 1.5rem;
  }
  .timeline__dot {
    inset-inline-start: -1.5rem;
  }
  .timeline__dot--active {
    inset-inline-start: calc(-1.5rem - 2px);
  }
}
