/* ==========================================================================
   Bellavita Pescados — institutional site styles
   Layered on top of colors_and_type.css tokens. Component-scoped classes.
   ========================================================================== */

/* --- Global overflow guard ------------------------------------------------ */
body { overflow-x: clip; }

/* --- WhatsApp FAB + Popup ------------------------------------------------- */
.wpp-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 97;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Popup card */
.wpp-popup {
  width: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12);
  font-family: 'Avenir LT Pro', sans-serif;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
}
.wpp-popup--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wpp-popup__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--navy-900, #191C36);
  color: #fff;
}
.wpp-popup__header-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wpp-popup__header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.wpp-popup__header-name {
  font-weight: 900;
  font-size: 0.9rem;
  line-height: 1.2;
}
.wpp-popup__header-status {
  font-size: 0.75rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 5px;
}
.wpp-popup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  display: inline-block;
}
.wpp-popup__close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  opacity: 0.75;
  line-height: 0;
  transition: opacity 180ms;
}
.wpp-popup__close:hover { opacity: 1; }

.wpp-popup__body {
  background: #f0f4f0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wpp-popup__bubble {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 12px 14px;
  font-size: 0.875rem;
  color: var(--gray-900, #1A1D24);
  line-height: 1.5;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.wpp-popup__input {
  width: 100%;
  border: 1px solid var(--gray-200, #C9CDD4);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--gray-900, #1A1D24);
  background: #fff;
  resize: none;
  box-sizing: border-box;
  outline: none;
  transition: border-color 180ms;
}
.wpp-popup__input::placeholder { color: var(--gray-500, #7C8290); }
.wpp-popup__input:focus { border-color: var(--navy-900, #191C36); }

.wpp-popup__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy-900, #191C36);
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: inherit;
  font-weight: 900;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 200ms;
}
.wpp-popup__btn:hover { background: var(--navy-800, #2A2E4A); }

/* FAB button */
.whatsapp-fab {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.40), 0 2px 6px rgba(0,0,0,0.18);
  transition: transform 280ms var(--ease-out, cubic-bezier(.22,.68,0,1.2)), box-shadow 280ms;
}
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.35;
  animation: wpp-pulse 2.4s ease-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55), 0 2px 8px rgba(0,0,0,0.18);
}
.whatsapp-fab svg { position: relative; }

@keyframes wpp-pulse {
  0%   { transform: scale(1);   opacity: 0.35; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* --- Shared atoms --------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: clamp(64px, 9vw, 128px);
  position: relative;
}
.section--alt { background: var(--cream-50); }

.section__head { margin-bottom: 56px; max-width: 720px; }
.section__head--center { text-align: center; margin-inline: auto; }
.section__head--row { display: flex; justify-content: space-between; align-items: flex-end; max-width: 100%; gap: 24px; flex-wrap: wrap; }

.section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 12px 0 0;
}
.section__title--inverse { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body); font-weight: 900;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-400);
}
.eyebrow--inverse { color: var(--blue-300); }

.lead { font-size: var(--fs-body-lg); line-height: 1.55; color: var(--gray-700); margin: 16px 0 0; max-width: 56ch; }

/* --- Buttons -------------------------------------------------------------- */
/* Bellavita button system. Signature mark: chevron from the "B>" logo,
   rendered as a mask so it always inherits `currentColor`. Primary/inverse
   are pill buttons with a circular chip on the right that slides on hover.
   Editorial link is a small uppercase label with an animated underline +
   chevron — used for inline CTAs like "Conheça nossos pescados". */

.chev {
  display: inline-block;
  width: 12px; height: 12px;
  flex-shrink: 0;
  transition: transform 350ms var(--ease-out);
}
.chev::before {
  content: '';
  display: block;
  width: 100%; height: 100%;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M3 2 L8 6 L3 10" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M3 2 L8 6 L3 10" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
}

.btn {
  font-family: var(--font-body); font-weight: 900;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; border: none; outline: none;
  display: inline-flex; align-items: center;
  border-radius: 999px;
  transition: all 350ms var(--ease-out);
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

/* PRIMARY — navy pill + blue chip */
.btn-primary {
  background: var(--navy-900);
  color: var(--white);
  padding: 6px 6px 6px 24px;
  gap: 18px;
}
.btn-primary .chip {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-400); color: var(--navy-900);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 350ms var(--ease-out);
}
.btn-primary:hover { background: var(--blue-400); }
.btn-primary:hover .chip { background: var(--white); transform: translateX(2px) rotate(-8deg); }

/* INVERSE — for navy backgrounds */
.btn-inverse {
  background: var(--blue-400);
  color: var(--navy-900);
  padding: 6px 6px 6px 24px;
  gap: 18px;
}
.btn-inverse .chip {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-900); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 350ms var(--ease-out);
}
.btn-inverse:hover { background: var(--white); }
.btn-inverse:hover .chip { transform: translateX(2px) rotate(-8deg); }

/* PRIMARY ON LIGHT-OVER-DARK — white pill */
.btn-light {
  background: var(--white);
  color: var(--navy-900);
  padding: 6px 6px 6px 24px;
  gap: 18px;
}
.btn-light .chip {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-900); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 350ms var(--ease-out);
}
.btn-light:hover { background: var(--blue-400); color: var(--navy-900); }
.btn-light:hover .chip { transform: translateX(2px) rotate(-8deg); }

/* OUTLINE */
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--navy-900);
  color: var(--navy-900);
  padding: 13px 26px;
  gap: 12px;
}
.btn-outline:hover { background: var(--navy-900); color: var(--white); }
.btn-outline--inverse { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline--inverse:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }

/* EDITORIAL LINK — small uppercase, animated underline */
.btn-link {
  background: none; padding: 0 0 7px;
  color: var(--navy-900);
  border-radius: 0;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.btn-link::after {
  content: '';
  position: absolute; left: 0; right: 22px; bottom: 0;
  height: 1.5px; background: currentColor;
  transform-origin: right;
  transition: transform 400ms var(--ease-out);
}
.btn-link:hover { color: var(--blue-500); }
.btn-link:hover::after { transform: scaleX(0.4); transform-origin: left; }
.btn-link--light { color: var(--white); }
.btn-link--light:hover { color: var(--blue-300); }

/* ICON-ONLY ROUND */
.btn-round {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-900); color: var(--white);
  padding: 0; gap: 0;
  justify-content: center;
}
.btn-round:hover { background: var(--blue-400); color: var(--navy-900); }

/* SIZES */
.btn-sm { font-size: 11px; letter-spacing: 0.14em; }
.btn-sm.btn-primary, .btn-sm.btn-inverse, .btn-sm.btn-light { padding: 4px 4px 4px 18px; gap: 14px; }
.btn-sm.btn-primary .chip, .btn-sm.btn-inverse .chip, .btn-sm.btn-light .chip { width: 30px; height: 30px; }
.btn-sm.btn-outline { padding: 9px 18px; }

/* --- Header (two-tier: utility bar + section nav) ------------------------- */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--dur-base) var(--ease-out);
}

.site-header__top {
  background: transparent;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base);
  border-bottom: 1px solid transparent;
}

@media (max-width: 960px) {

  header.site-header.is-scrolled .site-header__top-inner {
    height: 80px !important;
  }

  .site-header__top-inner {
    height: 140px !important;
  }
}

.site-header__top-inner {
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
  max-width: var(--container-max); margin: 0 auto;
  padding-inline: var(--container-pad);
  transition: height var(--dur-base) var(--ease-out);
}
.site-header__socials {
  display: flex; gap: 18px; align-items: center;
}
.site-header__sicon {
  color: var(--white);
  opacity: 0.75;
  transition: opacity var(--dur-fast), color var(--dur-fast);
}
.site-header__sicon:hover { opacity: 1; }

.site-header__logo {
  display: flex; justify-content: center;
  transition: opacity var(--dur-base);
}
.site-header__logo img { display: block; height: 48px; width: auto; transition: height var(--dur-base) var(--ease-out); }

.site-header__utility {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 900;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity var(--dur-fast);
}
.site-header__utility:hover { opacity: 1; }

.site-header__nav {
  background: transparent;
  transition: background var(--dur-base);
  overflow: visible;
}
.site-header__nav-inner {
  height: 80px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  position: relative; overflow: visible;
  max-width: var(--container-max); margin: 0 auto;
  padding-inline: var(--container-pad);
}
.site-header__nav-group {
  display: flex; align-items: center;
  align-self: stretch;
  border-top: 1px solid rgba(255,255,255,0.18);
  transition: border-color var(--dur-base);
}
.site-header__nav-group--left  { justify-content: flex-end; }
.site-header__nav-group--right { justify-content: flex-start; }
/* Link estica até a altura do grupo → top:0 do link coincide com a borda */
.site-header__nav-group .site-header__nav-link {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
}
.site-header__nav .site-header__logo {
  position: relative;
  top: -24px;
  z-index: 5;
  padding-inline: 20px;
}
.site-header__nav .site-header__logo img { height: 120px; }
.site-header__nav-link {
  position: relative;
  color: var(--white);
  font-family: var(--font-body); font-weight: 900;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  padding: 18px 24px;
  transition: color var(--dur-fast);
}
.site-header__nav-link:hover { color: var(--blue-300); }
.site-header__nav-pip {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%) scaleX(0);
  width: 18px; height: 2px; background: var(--blue-400);
  transition: transform 300ms var(--ease-out);
  transform-origin: center;
}
.site-header__nav-link.is-active .site-header__nav-pip { transform: translateX(-50%) scaleX(1); }
.site-header__nav-link.is-active { color: var(--blue-300); }

.site-header.is-scrolled .site-header__top {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  border-bottom: none;
}
.site-header.is-scrolled .site-header__sicon,
.site-header.is-scrolled .site-header__utility,
.site-header.is-scrolled .site-header__menu-toggle,
.site-header.is-scrolled .site-header__nav-link { color: var(--navy-900); }
.site-header.is-scrolled .site-header__nav-link.is-active { color: var(--navy-900); }
.site-header.is-scrolled .site-header__nav {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header.is-scrolled .site-header__nav-group { border-top-color: var(--gray-100); }
.site-header.is-scrolled .site-header__nav-link:hover { color: var(--blue-500); }
.site-header.is-scrolled .site-header__top-inner { height: 48px; }
.site-header.is-scrolled .site-header__logo img { height: 80px; }
.site-header.is-scrolled .site-header__nav-inner { height: 66px; }
.site-header.is-scrolled .site-header__nav .site-header__logo { top: -18px; }
.site-header.is-scrolled .site-header__nav .site-header__logo img { height: 66px; }
.site-header.is-scrolled .site-header__sicon {opacity: 1;}
/* --- Hero (full-bleed video / animated scene + editorial copy) ------------ */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 190px;
  padding-bottom: 140px;
  color: var(--white);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  isolation: isolate;
}

/* The "video / scene" layers — all absolute, z-stacked. */
.hero__scene { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: var(--navy-900); }

.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

/* Caustic / wave light layers */
.hero__caustics {
  position: absolute; inset: -20% -20% -20% -20%;
  background:
    radial-gradient(ellipse 60% 40% at 30% 30%, rgba(130,158,207,0.55), transparent 60%),
    radial-gradient(ellipse 50% 35% at 75% 65%, rgba(130,158,207,0.4), transparent 65%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(25,28,54,0.6), transparent 70%);
  filter: blur(40px);
  animation: hero-drift-a 22s ease-in-out infinite alternate;
}
.hero__caustics--b {
  background:
    radial-gradient(ellipse 40% 25% at 70% 20%, rgba(195, 215, 240, 0.35), transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(110, 137, 188, 0.4), transparent 70%);
  filter: blur(60px);
  mix-blend-mode: screen;
  animation: hero-drift-b 28s ease-in-out infinite alternate;
}

@keyframes hero-drift-a {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-4%, 3%, 0) scale(1.08); }
}
@keyframes hero-drift-b {
  0%   { transform: translate3d(0, 0, 0) scale(1.05); }
  100% { transform: translate3d(5%, -4%, 0) scale(1); }
}

/* Two peixe motifs drifting at different depths */
.hero__peixe {
  position: absolute;
  filter: invert(1) brightness(2);
  pointer-events: none;
}
.hero__peixe--a {
  top: 18%; right: -8%;
  width: 60%; max-width: 780px;
  opacity: 0.08;
  animation: peixe-drift-a 26s ease-in-out infinite alternate;
}
.hero__peixe--b {
  bottom: 8%; left: -12%;
  width: 38%; max-width: 480px;
  opacity: 0.05;
  transform: scaleX(-1);
  animation: peixe-drift-b 32s ease-in-out infinite alternate;
}
@keyframes peixe-drift-a {
  0%   { transform: translate3d(0, 0, 0) rotate(-3deg); }
  100% { transform: translate3d(-3%, 4%, 0) rotate(2deg); }
}
@keyframes peixe-drift-b {
  0%   { transform: translate3d(0, 0, 0) scaleX(-1) rotate(0deg); }
  100% { transform: translate3d(3%, -3%, 0) scaleX(-1) rotate(-4deg); }
}

/* Rising bubble particles */
.hero__bubbles { position: absolute; inset: 0; pointer-events: none; }
.hero__bubbles span {
  position: absolute; bottom: -20px;
  aspect-ratio: 1;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(255,255,255,0.1) 60%, transparent 70%);
  border-radius: 50%;
  animation-name: bubble-rise;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  opacity: 0.6;
}
@keyframes bubble-rise {
  0%   { transform: translate3d(0, 0, 0); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.4; }
  100% { transform: translate3d(20px, -110vh, 0); opacity: 0; }
}

/* Elegant navy gradient over the video — heavy at top + bottom for legibility,
   light through the middle so the footage breathes. */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(25, 28, 54, 0.78) 0%,
      rgba(25, 28, 54, 0.35) 35%,
      rgba(25, 28, 54, 0.45) 65%,
      rgba(25, 28, 54, 0.88) 100%);
  z-index: 2;
}

/* Editorial copy block */
.hero__inner {
  position: relative;
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-weight: 900;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-300);
}
.hero__eyebrow-mark {
  width: 28px; height: 1px; background: var(--blue-300); opacity: 0.55;
}
.hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue-300);
  font-family: 'Nunito Sans', 'Avenir Next LT Pro', serif;
  letter-spacing: -0.015em;
}
.hero__sub {
  font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
  margin: 4px 0 0;
}
.hero__cta {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

/* Scroll indicator — fish */
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 900;
  transition: color var(--dur-fast);
}
.hero__scroll:hover { color: rgba(255,255,255,1); }
.hero__fish-svg {
  width: 20px; height: 42px;
  animation: fish-swim 2.6s ease-in-out infinite;
}
@keyframes fish-swim {
  0%   { transform: translateY(0px)   rotate(0deg);  }
  25%  { transform: translateY(5px)   rotate(-5deg); }
  50%  { transform: translateY(11px)  rotate(0deg);  }
  75%  { transform: translateY(5px)   rotate(5deg);  }
  100% { transform: translateY(0px)   rotate(0deg);  }
}

/* --- Hero · intro animations ---------------------------------------------- */

.hero__eyebrow {
  animation: hero-fade-in 0.7s ease-out both;
}

.hero__sub {
  animation: hero-fade-in 0.8s ease-out both;
  animation-delay: 2.5s;
}

.hero__cta {
  animation: hero-fade-up 0.7s ease-out both;
  animation-delay: 2.9s;
}

.hero__scroll {
  animation: hero-fade-in 0.6s ease-out both;
  animation-delay: 3.3s;
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__type-char {
  display: inline;
  animation: hero-char-in 0.18s ease-out both;
}

@keyframes hero-char-in {
  from { opacity: 0; filter: blur(6px); }
  to   { opacity: 1; filter: blur(0);   }
}

.hero__cursor {
  display: inline;
  color: var(--blue-300);
  font-style: normal;
  font-weight: 100;
  animation: hero-blink 0.75s step-end infinite;
}

@keyframes hero-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* --- Hero · LIGHT variant ------------------------------------------------- */

.hero--light {
  background: var(--cream-50);
  color: var(--navy-900);
  min-height: 100vh;
  padding-top: 180px;
  padding-bottom: 120px;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero__light-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__light-peixe {
  position: absolute; right: -8%; top: 50%;
  transform: translateY(-50%);
  width: 70%; max-width: 880px;
  opacity: 0.45;
  animation: peixe-drift-a 26s ease-in-out infinite alternate;
}
.hero__light-wave {
  position: absolute; left: 0; right: 0; bottom: 10%;
  width: 100%; height: 200px;
}
.hero__inner--light {
  margin: 0 auto;
  text-align: left;
  align-items: flex-start;
  position: relative;
  max-width: var(--container-max);
  padding-inline: var(--container-pad);
}
.hero__light-copy { max-width: 640px; display: flex; flex-direction: column; gap: 24px; }
.hero__eyebrow--dark { color: var(--blue-500); }
.hero__eyebrow--dark .hero__eyebrow-mark { background: var(--blue-500); }
.hero__title--dark { color: var(--navy-900) !important; text-shadow: none !important; }
.hero__title--dark em { color: var(--blue-400); }
.hero__sub--dark { color: var(--gray-700); }

/* --- Hero · SPLIT variant ------------------------------------------------- */

.hero--split {
  min-height: 100vh;
  background: var(--white);
  color: var(--navy-900);
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex; align-items: stretch;
}
.hero__split-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
  width: 100%;
  align-items: center;
}
.hero__split-copy { display: flex; flex-direction: column; gap: 24px; max-width: 540px; }
.hero__title--split { font-size: clamp(40px, 5vw, 80px); }
.hero__split-tags {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--gray-100);
}
.hero__split-tags div { display: flex; flex-direction: column; gap: 4px; }
.hero__split-tags b {
  font-family: var(--font-display); font-weight: 900;
  font-size: 28px; line-height: 1; color: var(--navy-900);
  letter-spacing: -0.02em;
}
.hero__split-tags span { font-size: 12px; color: var(--gray-500); letter-spacing: 0.04em; }

.hero__split-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--navy-900);
  isolation: isolate;
}
.hero__split-scene { position: absolute; inset: 0; z-index: 1; }
.hero__split-visual .hero__video { z-index: 2; }
.hero__split-visual .hero__caustics {
  position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 60% 40% at 30% 30%, rgba(130,158,207,0.55), transparent 60%),
    radial-gradient(ellipse 50% 35% at 75% 65%, rgba(130,158,207,0.4), transparent 65%);
  filter: blur(40px);
  animation: hero-drift-a 22s ease-in-out infinite alternate;
}
.hero__split-visual .hero__overlay {
  background: linear-gradient(180deg, rgba(25,28,54,0.3) 0%, rgba(25,28,54,0.6) 100%);
}
.hero__peixe--split {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; max-width: 500px;
  opacity: 0.20;
  filter: invert(1) brightness(2);
  animation: peixe-drift-a 26s ease-in-out infinite alternate;
}
.hero__split-mark {
  position: absolute; bottom: 28px; left: 28px;
  display: flex; flex-direction: column; gap: 2px;
  color: var(--white); z-index: 3;
}
.hero__split-mark span:first-child {
  font-family: var(--font-display); font-weight: 900;
  font-size: 56px; line-height: 0.9; letter-spacing: -0.04em;
  color: var(--blue-300);
}
.hero__split-mark span:last-child {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 900; color: rgba(255,255,255,0.85);
}

/* --- Differentials -------------------------------------------------------- */

.diffs__head {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.diffs__head .section__title em {
  font-style: italic; font-weight: 400; color: var(--blue-400);
  letter-spacing: -0.015em;
}
.diffs__lede {
  font-size: 16px; line-height: 1.6; color: var(--gray-700);
  max-width: 42ch; margin: 0;
}

.diffs__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--gray-100);
}
.diff {
  position: relative;
  padding: 36px 28px 36px 28px;
  border-right: 1px solid var(--gray-100);
  display: flex; flex-direction: column; gap: 16px;
}
.diff:last-child { border-right: none; padding-right: 0; }
.diff__rule {
  position: absolute; top: -1px; left: 0; height: 2px; width: 0;
  background: var(--blue-400);
  transition: width 500ms var(--ease-out);
}
.diff:hover .diff__rule { width: 100%; }

.diff__idx {
  font-family: var(--font-display); font-weight: 900;
  font-size: 13px; letter-spacing: 0.18em;
  color: var(--blue-400);
}
.diff__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--navy-900);
    margin: 0;
    max-width: 180px;
}
.diff__body {
  font-size: 14px; line-height: 1.6; color: var(--gray-700);
  margin: 0;
}

/* --- StatsStrip ----------------------------------------------------------- */

.stats-strip {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.stats-strip__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.stats-strip__cell {
  display: flex; flex-direction: column; gap: 12px;
  padding-right: 24px;
  border-right: 1px solid var(--gray-100);
}
.stats-strip__cell:last-child { border-right: none; }
.stats-strip__num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 0.95; letter-spacing: -0.03em;
  color: var(--navy-900);
}
.stats-strip__label {
  font-size: 12px; line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  white-space: pre-line;
}

/* --- News cards ----------------------------------------------------------- */

.news { background: var(--white); padding-block: clamp(64px, 9vw, 128px); position: relative; }
.news__head {
  display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 32px;
  margin-bottom: 56px;
}
.news__head .section__title { margin-top: 12px; }
.news__head .section__title em {
  font-style: italic; font-weight: 400; color: var(--blue-400);
}
.news__arrows { display: flex; gap: 12px; }
.news__arrows .btn-round { width: 44px; height: 44px; background: var(--white); color: var(--navy-900); border: 1.5px solid var(--gray-100); }
.news__arrows .btn-round:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }

.news__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.news-card {
  padding: 36px 32px 32px;
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 320px;
  position: relative;
  transition: transform 350ms var(--ease-out);
}
.news-card:hover { transform: translateY(-4px); }
.news-card__tag {
  font-size: 11px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}
.news-card__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 24px; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0;
  flex: 1;
}
.news-card__body { font-size: 14px; line-height: 1.55; color: rgba(25,28,54,0.7); margin: 0; }
.news-card .btn-link { margin-top: 8px; align-self: flex-start; }

/* tonal variants — packaging-inspired warm + cool */
.news-card--mustard { background: #E8C46E; }
.news-card--mustard .news-card__tag,
.news-card--mustard .news-card__body { color: rgba(25,28,54,0.7); }
.news-card--mustard .btn-link { color: var(--navy-900); }

.news-card--sea { background: var(--blue-400); }
.news-card--sea .news-card__title { color: var(--white); }
.news-card--sea .news-card__tag,
.news-card--sea .news-card__body { color: rgba(255,255,255,0.85); }
.news-card--sea .btn-link { color: var(--white); }
.news-card--sea .btn-link:hover { color: var(--navy-900); }

.news-card--navy { background: var(--navy-900); }
.news-card--navy .news-card__title { color: var(--white); }
.news-card--navy .news-card__tag,
.news-card--navy .news-card__body { color: rgba(255,255,255,0.7); }
.news-card--navy .btn-link { color: var(--blue-300); }
.news-card--navy .btn-link:hover { color: var(--white); }

/* --- Products (editorial carousel) --------------------------------------- */

.products-edit__head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 64px;
}
.products-edit__head .section__title em { font-style: italic; font-weight: 400; color: var(--blue-400); }

.products-edit__stage {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
  align-items: stretch;
}

.products-edit__visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 48px;
}
.products-edit__visual--cream { background: var(--cream-50); color: var(--navy-900); }
.products-edit__visual--sea   { background: var(--blue-400); color: var(--white); }
.products-edit__visual--navy  { background: var(--navy-900); color: var(--blue-300); }

.products-edit__visual .products-edit__svg {
  width: 80%; height: auto; opacity: 0.85;
}
.products-edit__visual--cream .products-edit__svg { color: var(--navy-900); opacity: 0.55; }
.products-edit__visual--sea   .products-edit__svg { color: var(--white); opacity: 0.85; }
.products-edit__visual--navy  .products-edit__svg { color: var(--blue-300); opacity: 0.85; }

.products-edit__counter {
  position: absolute; top: 28px; left: 32px;
  font-family: var(--font-display); font-weight: 900;
  font-size: 14px; letter-spacing: 0.12em;
  display: flex; align-items: baseline; gap: 6px;
}
.products-edit__counter b { font-size: 32px; letter-spacing: -0.02em; }
.products-edit__counter span { opacity: 0.6; }

.products-edit__pill {
  position: absolute; top: 32px; right: 32px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.85); color: var(--navy-900);
  font-size: 10px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase;
}
.products-edit__visual--cream .products-edit__pill { background: var(--navy-900); color: var(--white); }

.products-edit__detail {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8px 0;
}
.products-edit__code {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-400); font-weight: 900; margin-bottom: 16px;
}
.products-edit__name {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.0;
  letter-spacing: -0.02em; color: var(--navy-900); margin: 0 0 20px;
}
.products-edit__desc { font-size: 16px; line-height: 1.6; color: var(--gray-700); margin: 0 0 28px; max-width: 44ch; }

.products-edit__specs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin: 0 0 32px; padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.products-edit__specs > div { padding-right: 16px; }
.products-edit__specs dt {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 6px;
}
.products-edit__specs dd {
  font-family: var(--font-display); font-weight: 900;
  font-size: 14px; color: var(--navy-900); margin: 0;
}

.products-edit__cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.products-edit__nav { display: flex; gap: 10px; margin-left: auto; }
.products-edit__nav .btn-round { background: var(--white); color: var(--navy-900); border: 1.5px solid var(--gray-100); }
.products-edit__nav .btn-round:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }

.products-edit__thumbs {
  margin-top: 56px; padding-top: 28px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--gray-100);
}
.products-edit__thumb {
  background: none; border: none; cursor: pointer;
  text-align: left; padding: 16px 20px 16px 0;
  display: flex; flex-direction: column; gap: 6px;
  border-left: 1px solid var(--gray-100);
  padding-left: 20px;
  color: var(--gray-500);
  transition: color var(--dur-base);
  position: relative;
}
.products-edit__thumb:first-child { border-left: none; padding-left: 0; }
.products-edit__thumb::before {
  content: ''; position: absolute; top: -28px; left: 0; width: 0; height: 2px;
  background: var(--navy-900);
  transition: width 350ms var(--ease-out);
}
.products-edit__thumb.is-active::before { width: 100%; }
.products-edit__thumb.is-active { color: var(--navy-900); }
.products-edit__thumb-idx { font-size: 10px; letter-spacing: 0.18em; font-weight: 900; opacity: 0.7; }
.products-edit__thumb-name { font-family: var(--font-display); font-weight: 900; font-size: 16px; letter-spacing: -0.005em; color: var(--navy-900); }

/* --- Quality (editorial split + process strip) ---------------------------- */

.quality { background: var(--white); }
.quality__top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: stretch;
}
.quality__copy { display: flex; flex-direction: column; gap: 24px; align-self: center; }
.quality__copy .section__title em { font-style: italic; font-weight: 400; color: var(--blue-400); }
.quality__copy .lead { margin: 0; }
.quality__copy .btn-link { align-self: flex-start; margin-top: 8px; }

.quality__video {
  position: relative; border: none; padding: 0;
  background: none; cursor: pointer;
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 5/4;
  display: block;
  text-align: left;
  transition: transform 400ms var(--ease-out);
}
.quality__video:hover { transform: translateY(-4px); }
.quality__video-img {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #191c36, #05060c);
}
.quality__video-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.35; mix-blend-mode: screen;
}
.quality__video-cover {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(130,158,207,0.4), rgba(25,28,54,0.7));
}
.quality__video-tag {
  position: absolute; top: 24px; left: 24px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 10px; font-weight: 900;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.quality__video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--white); color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-base), background var(--dur-base);
}
.quality__video-play svg { margin-left: 4px; }
.quality__video:hover .quality__video-play { transform: translate(-50%, -50%) scale(1.06); background: var(--blue-400); }

.quality__video-label {
  position: absolute; left: 24px; bottom: 22px; right: 24px;
  color: var(--white); display: flex; flex-direction: column; gap: 2px;
}
.quality__video-label span:first-child {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 900; color: var(--blue-300);
}
.quality__video-label span:last-child {
  font-family: var(--font-display); font-weight: 900;
  font-size: 18px; line-height: 1.2; letter-spacing: -0.005em;
}

/* Process strip — 5 numbered steps, connected by a horizontal rail */
.process {
  margin-top: 96px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  padding-top: 16px;
}
.process__step {
  position: relative;
  padding: 28px 24px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.process__rail {
  position: absolute; top: 0; left: 0; right: 0; height: 28px;
  display: flex; align-items: center;
}
.process__dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue-400);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--gray-100);
  z-index: 1;
}
.process__line {
  flex: 1; height: 1.5px; background: var(--gray-100);
  margin-left: -1px;
}
.process__idx { font-family: var(--font-display); font-weight: 900; font-size: 11px; letter-spacing: 0.18em; color: var(--blue-400); }
.process__t   { font-family: var(--font-display); font-weight: 900; font-size: 18px; color: var(--navy-900); margin: 0; letter-spacing: -0.005em; }
.process__b   { font-size: 13px; color: var(--gray-700); line-height: 1.55; margin: 0; max-width: 22ch; }

/* --- Distribution (editorial map) ----------------------------------------- */

.dist {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
}
.dist::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 25% 40%, rgba(130, 158, 207, 0.18), transparent 70%);
  pointer-events: none;
}
.dist > * { position: relative; }

section#distribuição h2 {
    margin-bottom: 2rem;
}

.dist .dist__brand {
    position: absolute;
    top: 5%;
    right: 15%;
    width: 420px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}
.dist .dist__brand img { width: 100%; height: auto; display: block; }

.dist__head {
  margin-bottom: 48px;
}
.dist__head .section__title em { font-style: italic; font-weight: 400; color: var(--blue-300); }
.dist__lede { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 100%; margin: 0 0 0px; }

.dist__body {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
  align-items: center;
}
.dist__map {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 24px;
  aspect-ratio: 7/8;
  position: relative;
  overflow: hidden;
}
.dist__map svg { width: 100%; height: 100%; display: block; }

.dist__regions {
  display: flex; flex-direction: column;
}
.dist__region {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: baseline; gap: 24px;
}
.dist__region:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
.dist__region-name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 22px; color: var(--white); letter-spacing: -0.01em;
  min-width: 130px;
}
.dist__region-cities { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.dist__cta { align-self: flex-start; margin-top: 32px; }

/* --- Contact -------------------------------------------------------------- */

.contact { background: var(--cream-50); }
.contact__inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start;
}
.contact__channels {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--gray-100);
  padding-top: 8px;
}
.contact__channels li {
  display: flex; align-items: center; gap: 16px;
  font-size: 15px; color: var(--navy-900);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact__channel-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-50, #EEF3FB);
  color: var(--blue-400);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-md);
}
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field__lbl { font-size: 11px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-900); }
.field__input {
  font-family: var(--font-body); font-size: 14px; color: var(--navy-900);
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  outline: none;
  transition: border-color var(--dur-base);
}
.field__input:focus { border-color: var(--blue-400); }
.field__input::placeholder { color: var(--gray-500); }
.field__select { appearance: none; padding-right: 40px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23191C36" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
  background-repeat: no-repeat; background-position: right 14px center;
}
textarea.field__input { resize: vertical; min-height: 100px; font-family: var(--font-body); }
.contact__submit { align-self: flex-start; margin-top: 8px; }
.contact__submit.is-sent { background: var(--success); }

/* --- Footer --------------------------------------------------------------- */

.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 96px 0 32px;
  position: relative;
}
.section-wave,
.site-footer__wave { position: absolute; left: 0; right: 0; top: -1px; width: 100%; height: 60px; transform: scaleY(-1); pointer-events: none; z-index: 2; display: block; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.site-footer__brand img { display: block; height: 110px; width: auto; }
.site-footer__tag { font-size: 14px; line-height: 1.5; margin: 24px 0; color: rgba(255,255,255,0.65); }
.site-footer__social { display: flex; gap: 12px; }
.site-footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all var(--dur-base);
}
.site-footer__social a:hover { background: var(--blue-400); color: var(--white); border-color: transparent; }

.site-footer__col-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin: 4px 0 16px;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color var(--dur-fast); }
.site-footer__col a:hover { color: var(--white); }
.site-footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.7); }
.site-footer__contact svg { margin-top: 3px; flex-shrink: 0; color: var(--blue-300); }
.site-footer__legal {
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,0.5);
}

/* --- Dev credit ------------------------------------------------------------ */

.dev-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(6px);
  animation: devCreditIn .5s cubic-bezier(.2,.8,.2,1) .1s forwards;
}

.dev-credit__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  line-height: 1;
  position: relative;
}

.dev-credit__label {
  font: 600 12px/1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
  white-space: nowrap;
  color: rgba(255,255,255,0.5);
}

.dev-credit__logo {
  height: auto;
  width: 120px;
  display: block;
  transform: translateZ(0);
  transition: transform .25s ease;
}

.dev-credit__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease, opacity .25s ease;
  opacity: .35;
}
.dev-credit__link:hover::after,
.dev-credit__link:focus-visible::after { transform: scaleX(1); opacity: .6; }
.dev-credit__link:hover .dev-credit__logo,
.dev-credit__link:focus-visible .dev-credit__logo { transform: translateX(2px); }

@keyframes devCreditIn {
  from { opacity: 0; transform: translateY(10px); filter: blur(.4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  .dev-credit { animation: none; opacity: 1; transform: none; }
  .dev-credit__logo,
  .dev-credit__link::after { transition: none; }
}

@media (max-width: 420px) {
  .dev-credit__label { font-size: 11px; letter-spacing: .06em; }
  .dev-credit__logo  { width: 90px; }
}

/* posiciona o crédito em linha própria e centralizado dentro do rodapé legal */
.site-footer__legal .dev-credit {
  flex-basis: 100%;
  justify-content: center;
  margin-top: 8px;
}


/* --- Achievements --------------------------------------------------------- */

.achievements {
  background: var(--white);
  padding-block: clamp(80px, 10vw, 128px);
  position: relative;
}
.achievements__head {
  text-align: center;
  margin-bottom: 72px;
}
.achievements__head .section__title { margin-top: 12px; }
.achievements__head .section__title em { font-style: italic; font-weight: 400; color: var(--blue-400); }

.achievements__row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.seal {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.seal__disc {
    width: 140px;
    height: 140px;
  border-radius: 50%;
  background: var(--cream-50);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 350ms var(--ease-out), background 350ms;
}
.seal__disc::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1.5px dashed var(--gray-100);
  transition: transform 14s linear;
}
.seal:hover .seal__disc { background: var(--blue-100); transform: translateY(-3px); }
.seal:hover .seal__disc::before { transform: rotate(360deg); }
.seal__disc svg { width: 36px; height: 36px; }
.seal__name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--navy-900);
}
.seal__caption {
  font-size: 11px;
  color: var(--gray-500);
}

/* --- Mobile menu toggle ---------------------------------------------------- */
.site-header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  transition: color var(--dur-fast);
}
.site-header__menu-bar {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 200ms, width 300ms var(--ease-out);
  transform-origin: center;
}
.site-header__menu-bar:nth-child(1) { width: 22px; }
.site-header__menu-bar:nth-child(2) { width: 14px; }
.site-header__menu-bar:nth-child(3) { width: 22px; }

.is-menu-open .site-header__menu-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.is-menu-open .site-header__menu-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.is-menu-open .site-header__menu-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* --- Mobile fullscreen menu ------------------------------------------------ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: var(--navy-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms var(--ease-out);
}
.is-menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
  padding: 6px 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 350ms var(--ease-out), transform 350ms var(--ease-out), color 150ms;
  transition-delay: calc(var(--i, 0) * 55ms + 60ms);
}
.mobile-menu__link:hover { color: var(--blue-300); }
.is-menu-open .mobile-menu__link { opacity: 1; transform: none; }
.mobile-menu__cta {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 350ms var(--ease-out), transform 350ms var(--ease-out);
  transition-delay: 360ms;
}
.is-menu-open .mobile-menu__cta { opacity: 1; transform: none; }
.mobile-menu__socials {
  display: flex;
  gap: 20px;
  opacity: 0;
  transition: opacity 350ms var(--ease-out);
  transition-delay: 420ms;
}
.is-menu-open .mobile-menu__socials { opacity: 1; }
.mobile-menu__socials .site-header__sicon { color: rgba(255,255,255,0.6); opacity: 1; }
.mobile-menu__socials .site-header__sicon:hover { color: var(--white); }

/* Logo da top bar: oculto no desktop (aparece no nav); visível e centralizado no mobile */
.site-header__top .site-header__logo {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 960px) {

  .site-header.is-scrolled .site-header__logo img { height: 60px; }

  .site-header__logo img {
    height: 120px;
    /* position: relative;
    top: 40px; */
  }

  .hero__inner,
  .quality__top,
  .contact__inner,
  .products-edit__stage,
  .dist__head,
  .dist__body,
  .diffs__head,
  .news__head { grid-template-columns: 1fr; gap: 32px; }
  .diffs__grid { grid-template-columns: repeat(2, 1fr); }
  .diff:nth-child(2) { border-right: none; }
  .stats-strip__grid { grid-template-columns: repeat(3, 1fr); }
  .stats-strip__cell:nth-child(3) { border-right: none; }
  .news__grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__line { display: none; }
  .products-edit__thumbs { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .achievements__row { grid-template-columns: repeat(3, 1fr); }
  .site-header__nav { display: none; }
  .site-header__top .site-header__logo { display: flex; }
  .contact__row { grid-template-columns: 1fr; }
  .site-header__socials .site-header__sicon { display: none; }
  .site-header__utility { display: none; }
  .site-header__menu-toggle { display: flex; }
}
@media (max-width: 560px) {
  .diffs__grid,
  .stats-strip__grid,
  .process,
  .site-footer__inner { grid-template-columns: 1fr; text-align: center; }
  .site-footer__brand img { margin: 0 auto; }
  .site-footer__social { justify-content: center; }
  .site-footer__col ul { align-items: center; }
  .site-footer__contact li { justify-content: center; }
  .site-footer__legal { flex-direction: column; align-items: center; text-align: center; }
  .products-edit__thumbs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 32px;
    padding-top: 20px;
  }
  .products-edit__thumbs::-webkit-scrollbar { display: none; }
  .products-edit__thumb {
    flex: 0 0 50%;
    border-bottom: none;
  }
  .products-edit__thumb::before { top: -20px; }
  .stats-strip__cell { border-right: none; border-bottom: 1px solid var(--gray-100); padding-bottom: 24px; }
  .diff { border-right: none; border-bottom: 1px solid var(--gray-100); padding-bottom: 24px; }
  .hero { min-height: 100svh; }
  .hero__title { font-size: 40px; }
}

.diffs__image-block {
  position: relative;
  margin-top: 72px;
  width: 100%;
  height: 440px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--navy, #191C36);
}

.diffs__image-block > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.diffs__watermark {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 110px;
  height: 80px;
  background: var(--blue-400);
  border-radius: 20px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.diffs__watermark img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.diffs__image-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(25, 28, 54, 0.85) 0%, rgba(25, 28, 54, 0.65) 42%, rgba(25, 28, 54, 0.06) 100%);
    pointer-events: none;
}

.diffs__image-content {
  position: absolute;
  left: 48px;
  bottom: 44px;
  z-index: 2;
  max-width: 520px;
  color: #fff;
}

.diffs__image-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #829ECF;
}

.diffs__image-content h3 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
}

.diffs__image-content p {
  margin: 0;
  max-width: 440px;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 768px) {
  .diffs__image-block {
    height: 520px;
    margin-top: 48px;
    border-radius: 22px;
  }

  .diffs__image-block::after {
    background:
      linear-gradient(
        180deg,
        rgba(25, 28, 54, 0.08) 0%,
        rgba(25, 28, 54, 0.78) 100%
      );
  }

  .diffs__image-content {
    left: 24px;
    right: 24px;
    bottom: 28px;
    max-width: none;
  }
}

.cadeia-fria {
      background: url(assets/cadeia_fria.svg);
    background-size: 48px;
    background-repeat: no-repeat;
    background-position-x: right 30px;
    background-position-y: 30px;
}

.rota {
      background: url(assets/rota.svg);
    background-size: 48px;
    background-repeat: no-repeat;
    background-position-x: right 30px;
    background-position-y: 30px;
}

.fabrica {
      background: url(assets/fabrica.svg);
    background-size: 48px;
    background-repeat: no-repeat;
    background-position-x: right 30px;
    background-position-y: 30px;
}

.brasil {
      background: url(assets/brasil.svg);
    background-size: 48px;
    background-repeat: no-repeat;
    background-position-x: right 30px;
    background-position-y: 30px;
}

/* =========================================================
   Produtos: imagem no lugar do SVG
   ========================================================= */

.products-edit__visual--white {
  background: var(--white);
  color: var(--navy-900);
}

.products-edit__image-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 00px 0px;
}

.products-edit__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  transition: transform 700ms var(--ease-out), filter 700ms var(--ease-out);
}

.products-edit__visual:hover .products-edit__photo {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.02);
}

.products-edit__visual--white .products-edit__pill {
  background: var(--blue-400);
  color: var(--navy-900);
}

@media (max-width: 768px) {
  .products-edit__image-wrap {
    padding: 82px 0px 0px;
  }
}

/* =========================================================
   PROCESSO / TIMELINE VERTICAL
   ========================================================= */

.process-timeline {
  position: relative;
  margin-top: 110px;
  padding: 40px 0 20px;
}

/* Linha central da timeline */
.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(130, 158, 207, 0.4) 12%,
    rgba(25, 28, 54, 0.16) 50%,
    rgba(130, 158, 207, 0.4) 88%,
    transparent 100%
  );
  transform: translateX(-50%);
}

.process-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  margin-bottom: 96px;

  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.process-timeline__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ponto central */
.process-timeline__item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 15px;
  height: 15px;
  border: 4px solid var(--white, #fff);
  border-radius: 999px;
  background: var(--blue-light, #829ECF);
  box-shadow: 0 0 0 1px rgba(130, 158, 207, 0.45);
  transform: translate(-50%, -50%);
}

/* Card de conteúdo */
.process-timeline__content {
  position: relative;
  min-height: 280px;
  padding: 38px;
  border: 1px solid rgba(25, 28, 54, 0.08);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(25, 28, 54, 0.06);
}

.process-timeline__number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--blue-light, #829ECF);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.process-timeline__icon {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 46px;
  height: 46px;
  opacity: 0.55;
}

.process-timeline__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.process-timeline__content h3 {
  max-width: 360px;
  margin: 0 0 18px;
  color: var(--navy, #191C36);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.process-timeline__content p {
  max-width: 420px;
  margin: 0;
  color: rgba(25, 28, 54, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

/* Imagem */
.process-timeline__media {
  height: 320px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--blue-dark, #191C36);
  box-shadow: 0 28px 80px rgba(25, 28, 54, 0.12);
}

.process-timeline__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 1.1s ease,
    filter 1.1s ease;
}

.process-timeline__item.is-visible .process-timeline__media img {
  transform: scale(1.03);
}

/* Alternância esquerda/direita */
.process-timeline__item--left .process-timeline__content {
  grid-column: 1;
}

.process-timeline__item--left .process-timeline__media {
  grid-column: 3;
}

.process-timeline__item--right .process-timeline__content {
  grid-column: 3;
}

.process-timeline__item--right .process-timeline__media {
  grid-column: 1;
  grid-row: 1;
}

/* Entrada lateral alternada */
.process-timeline__item--left {
  transform: translate(-38px, 42px);
}

.process-timeline__item--right {
  transform: translate(38px, 42px);
}

.process-timeline__item.is-visible {
  transform: translate(0, 0);
}

/* Responsivo */
@media (max-width: 900px) {
  .process-timeline {
    margin-top: 72px;
    padding-left: 26px;
  }

  .process-timeline::before {
    left: 7px;
    transform: none;
  }

  .process-timeline__item,
  .process-timeline__item--left,
  .process-timeline__item--right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    margin-bottom: 64px;
    transform: translateY(34px);
  }

  .process-timeline__item::before {
    left: -26px;
    top: 38px;
    transform: none;
  }

  .site-footer__col {
    display: none;
}

  .process-timeline__content,
  .process-timeline__media {
    grid-column: auto;
    grid-row: auto;
  }

  .process-timeline__content {
    min-height: auto;
    padding: 30px;
    border-radius: 24px;
  }

  .process-timeline__media {
    height: 260px;
    border-radius: 24px;
  }

  .process-timeline__number {
    margin-bottom: 30px;
  }

  .process-timeline__icon {
    top: 28px;
    right: 28px;
    width: 38px;
    height: 38px;
  }
}

/* --- Scroll reveal --------------------------------------------------------- */
.reveal {
  opacity: 0;
  --tx: 0px; --ty: 32px;
  transform: translate(var(--tx), var(--ty));
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal--from-left  { --tx: -28px; --ty: 0px; }
.reveal--from-right { --tx:  28px; --ty: 0px; }
.reveal.is-visible  { opacity: 1; transform: translate(0, 0); }

@media (max-width: 960px) {
 .seal__disc {
    width: 90px;
    height: 90px;
}

}