/* ════════════════════════════════════════════════════════════════
   GELOX V2 — TESTE INTERNO
   Mantém os tokens da V1, evolui o motion e adiciona a progress rail.
   ════════════════════════════════════════════════════════════════ */

:root {
  --grafite: #14181C;
  --branco-tecnico: #F8FAFB;
  --azul-gelox: #10227D;
  --ciano-frio: #00BBF1;
  --cinza: #A8B2BB;
  --verde-whats: #25D366;

  --grafite-soft: #1a2035;
  --azul-glow: rgba(49, 60, 114, 0.4);
  --ciano-glow: rgba(0, 187, 241, 0.3);

  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  background: var(--branco-tecnico);
  color: var(--grafite);
  line-height: 1.5;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--ciano-frio);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--azul-gelox);
  margin-bottom: 1rem;
  display: inline-block;
}
.eyebrow--light { color: var(--ciano-frio); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title--light { color: var(--branco-tecnico); }

.text-accent { color: var(--ciano-frio); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.btn--primary { background: var(--verde-whats); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,0.35); }
.btn--ghost-light { background: transparent; color: var(--branco-tecnico); border: 1px solid rgba(248,250,251,0.3); }
.btn--ghost-light:hover { border-color: var(--ciano-frio); color: var(--ciano-frio); }
.btn--light { background: var(--branco-tecnico); color: var(--grafite); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.2); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--sm { padding: 0.55rem 1rem; font-size: 0.78rem; }

/* ════════════════════ HEADER ════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(16, 34, 125, 0.15);
  backdrop-filter: blur(4px);
  min-height: 70px;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.header.is-scrolled {
  background: rgba(16, 34, 125, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.header__logo { justify-self: start; }
.header__logo-img {
  height: 54px;
  width: auto;
  display: block;
}
.header__nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.84rem;
  color: rgba(248,250,251,0.9);
  white-space: nowrap;
}
.header__nav a { transition: color 0.2s; position: relative; }
.header__nav a:hover { color: #00BBF1; }
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
}
.header__social { color: var(--branco-tecnico); opacity: 0.8; transition: opacity 0.2s, color 0.2s; }
.header__social:hover { opacity: 1; color: #00BBF1; }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.header__burger span { width: 22px; height: 2px; background: var(--branco-tecnico); transition: transform 0.3s, opacity 0.3s; }
.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: 0; right: 0;
  width: min(78vw, 320px);
  height: 100vh;
  background: var(--grafite);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99;
}
.nav-mobile.is-aberto { transform: translateX(0); }
.nav-mobile a { color: var(--branco-tecnico); font-size: 1.05rem; }

@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__actions { display: none; }
  .header__burger { display: flex; }
  .header__inner { grid-template-columns: 1fr auto; }
}

/* ════════════════════ HERO ════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, #080e1a 0%, #0d1640 55%, #060b1a 100%);
  overflow: hidden;
  padding: 7rem 2rem 4rem;
}

/* iPad e tablet — remove espaço vazio do 100vh */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 6rem 2rem 4rem;
    align-items: flex-start;
  }
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,187,241,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,187,241,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__layers { position: absolute; inset: 0; pointer-events: none; }
.hero__layer { position: absolute; border-radius: 50%; filter: blur(70px); }
.hero__layer--back {
  width: 700px; height: 700px; right: -180px; top: -120px;
  background: rgba(16, 34, 125, 0.6);
  will-change: transform;
}
.hero__layer--mid {
  width: 450px; height: 450px; right: 80px; bottom: -120px;
  background: rgba(0, 187, 241, 0.18);
  will-change: transform;
}

.hero__container {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.hero__inner {
  max-width: 620px;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--branco-tecnico);
  margin-bottom: 1.3rem;
}
.hero__subtitle {
  font-size: 1.08rem;
  color: rgba(248,250,251,0.72);
  max-width: 480px;
  margin-bottom: 2.2rem;
}
.hero__cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(248,250,251,0.12);
  padding-top: 1.8rem;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-number {
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ciano-frio);
  line-height: 1;
}
.hero__stat-unit { font-family: var(--font-mono); color: var(--ciano-frio); font-size: 1rem; }
.hero__stat-label { font-size: 0.78rem; color: rgba(248,250,251,0.55); margin-top: 0.3rem; }

.hero__product {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: none;
}
@media (min-width: 1024px) {
  .hero__product { display: block; }
}

.hero__product-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, var(--azul-glow), transparent 70%);
  filter: blur(20px);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.hero__product-img { position: relative; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4)); }

.hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(20,24,28,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(61,214,245,0.25);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  color: var(--branco-tecnico);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.hero__badge strong { display: block; font-size: 0.82rem; }
.hero__badge small { color: var(--cinza); font-size: 0.7rem; }
.hero__badge-icon { font-size: 1.2rem; }
.hero__badge--1 { top: -10px; left: -40px; animation: float-badge 5s ease-in-out infinite; }
.hero__badge--2 { bottom: 20px; right: -50px; animation: float-badge 5s ease-in-out infinite 1.2s; }
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ════════════════════ SOBRE ════════════════════ */
.sobre { padding: 7rem 2rem; background: var(--branco-tecnico); }
.sobre__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sobre__media { position: relative; }
.sobre__media-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(20,24,28,0.25);
  aspect-ratio: 5/6;
}
.sobre__tag {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--branco-tecnico);
  border-radius: 12px;
  padding: 0.9rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 16px 32px rgba(20,24,28,0.18);
}
.sobre__tag-icon { font-size: 1.3rem; }

.sobre__text { color: var(--cinza); font-size: 1.02rem; margin-bottom: 2.2rem; }
.sobre__text strong { color: var(--grafite); }

.sobre__credentials { display: flex; flex-direction: column; gap: 1rem; }
.credential-card {
  background: var(--branco-tecnico);
  border: 1px solid rgba(124,133,144,0.18);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.credential-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(20,24,28,0.12);
  border-color: var(--azul-gelox);
}
.credential-card__icon { font-size: 1.4rem; margin-right: 0.6rem; }
.credential-card strong { font-family: var(--font-display); }
.credential-card p { color: var(--cinza); font-size: 0.9rem; margin-top: 0.3rem; }

@media (max-width: 880px) {
  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__tag { position: static; margin-top: 1rem; width: fit-content; }
}

/* ════════════════════ PROCESSO (seção nova V2) ════════════════════ */
.processo {
  background: var(--grafite);
  padding: 7rem 2rem;
  position: relative;
}
.processo__inner { max-width: 1100px; margin: 0 auto; }
.processo__inner > .eyebrow,
.processo__inner > .section-title { text-align: center; display: block; }
.processo__inner > .section-title { margin: 0 auto 4rem; max-width: 700px; }

.processo__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.processo__timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--azul-gelox), var(--ciano-frio));
  opacity: 0.3;
}
.processo__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.4;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.processo__step.is-visible { opacity: 1; transform: translateY(0); }
.processo__step-marker {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grafite-soft);
  border: 2px solid rgba(61,214,245,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-spring);
  position: relative;
  z-index: 1;
}
.processo__step.is-visible .processo__step-marker {
  border-color: var(--ciano-frio);
  box-shadow: 0 0 24px rgba(61,214,245,0.35);
}
.processo__step-num { font-family: var(--font-mono); color: var(--ciano-frio); font-size: 0.78rem; letter-spacing: 0.1em; }
.processo__step-content h3 { font-family: var(--font-display); color: var(--branco-tecnico); font-size: 1.15rem; margin: 0.3rem 0 0.5rem; }
.processo__step-content p { color: var(--cinza); font-size: 0.88rem; max-width: 220px; }

@media (max-width: 880px) {
  .processo__timeline { grid-template-columns: 1fr; gap: 2.5rem; }
  .processo__timeline::before { display: none; }
}

/* ════════════════════ PRODUTOS ════════════════════ */
.produtos { padding: 7rem 2rem; background: var(--branco-tecnico); }
.produtos__inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.produtos__inner > .section-title { max-width: 600px; margin: 0 auto 3.5rem; }
.produtos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  text-align: left;
}
.product-card {
  position: relative;
  background: var(--branco-tecnico);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(124,133,144,0.15);
  box-shadow: 0 4px 16px rgba(20,24,28,0.06);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 56px rgba(20,24,28,0.18);
}
.product-card__badge {
  position: absolute;
  top: -12px; right: 1.6rem;
  background: var(--verde-whats);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
}
.product-card__media {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
  height: 225px;
  align-items: center;
}
.product-card__media img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.product-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; }
.product-card p { color: var(--cinza); font-size: 0.9rem; margin-bottom: 1.2rem; }
.product-card__link { color: var(--azul-gelox); font-weight: 600; font-size: 0.9rem; }

@media (max-width: 880px) {
  .produtos__grid { grid-template-columns: 1fr; }
}
@media (min-width: 881px) and (max-width: 1100px) {
  .produtos__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Catálogo em carrossel para tablet e mobile (≤ 1100px) ── */
@media (max-width: 1100px) {
  /* Esconde o grid e ativa estrutura de carrossel */
  .produtos__grid {
    display: flex;
    gap: 1.4rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 0.2rem 1.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    text-align: left;
    grid-template-columns: unset;
  }
  .produtos__grid::-webkit-scrollbar { display: none; }
  .product-card {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
  }
  /* Setas e dots do catálogo */
  .produtos__carrossel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .produtos__nav {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--branco-tecnico);
    border: 1px solid rgba(124,133,144,0.25);
    color: var(--grafite);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
  }
  .produtos__nav:hover { background: var(--azul-gelox); color: #fff; border-color: var(--azul-gelox); }
  .produtos__nav:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
  .produtos__dots {
    display: flex;
    gap: 0.4rem;
  }
  .produtos__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(124,133,144,0.35);
    border: none; cursor: pointer; padding: 0;
    transition: background 0.25s, transform 0.25s;
  }
  .produtos__dot.is-active { background: var(--azul-gelox); transform: scale(1.3); }
}
@media (min-width: 1101px) {
  /* Desktop: esconde os controles de carrossel */
  .produtos__carrossel-nav { display: none; }
}

/* ════════════════════ LINHA SABORIZADA (carrossel) ════════════════════ */
.saborizados { padding: 7rem 2rem; background: #00091f; overflow: hidden; }
.saborizados__inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.saborizados__inner > .section-title { max-width: 640px; margin: 0 auto 1rem; color: var(--branco-tecnico); }
.saborizados__intro {
  color: var(--cinza);
  max-width: 540px;
  margin: 0 auto 3rem;
  font-size: 0.96rem;
}

.saborizados__carrossel {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  width: 100%;
  min-width: 0; /* evita overflow do flex */
}

.saborizados__track-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.saborizados__track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.2rem 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.saborizados__track::-webkit-scrollbar { display: none; }

.sabor-card {
  position: relative;
  flex: 0 0 255px; /* largura fixa, não estica */
  width: 255px;
  scroll-snap-align: start;
  background: var(--branco-tecnico);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(124,133,144,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s;
}
.sabor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(0,0,0,0.28);
  border-color: var(--ciano-frio);
}
.sabor-card__media {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 255px;
  background: var(--grafite);
  padding: 1rem;
}
.sabor-card img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.sabor-card__info {
  padding: 1rem 1.1rem 1.2rem;
  text-align: left;
}
.sabor-card__info strong {
  display: block;
  font-family: var(--font-display);
  color: var(--grafite);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.sabor-card__info span {
  font-family: var(--font-mono);
  color: var(--cinza);
  font-size: 0.78rem;
}
.sabor-card__badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  background: var(--verde-whats);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  z-index: 2;
}

.saborizados__nav {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grafite-soft);
  border: 1px solid rgba(124,133,144,0.25);
  color: var(--branco-tecnico);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.saborizados__nav:hover {
  background: var(--azul-gelox);
  border-color: var(--azul-gelox);
  transform: scale(1.06);
}
.saborizados__nav:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.saborizados__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.saborizados__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(124,133,144,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.saborizados__dot.is-active {
  background: var(--ciano-frio);
  transform: scale(1.3);
}

/* ── Mobile: card se adapta à largura disponível ── */
@media (max-width: 600px) {
  .saborizados__nav { display: none; }
  /* Card ocupa ~80% da tela = 1 visível por vez, sem vazar */
  .sabor-card {
    flex: 0 0 calc(80vw - 2rem);
    width: calc(80vw - 2rem);
  }
  .sabor-card__media { height: calc(80vw - 2rem); }
}

/* ════════════════════ DIFERENCIAIS (tabs) ════════════════════ */
.diferenciais { background: var(--grafite); padding: 7rem 2rem; }
.diferenciais__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.diferenciais__inner > .section-title { margin-bottom: 3rem; }

.diferenciais__tabs {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.diferenciais__tab {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--grafite-soft);
  border: 1px solid rgba(124,133,144,0.2);
  color: var(--cinza);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.75rem 1.3rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.diferenciais__tab:hover { color: var(--branco-tecnico); border-color: var(--ciano-frio); }
.diferenciais__tab.is-active {
  background: var(--azul-gelox);
  color: var(--branco-tecnico);
  border-color: var(--azul-gelox);
}
.diferenciais__tab-icon { font-size: 1.1rem; }

.diferenciais__panels { position: relative; min-height: 140px; }
.diferenciais__panel {
  display: none;
  animation: panel-in 0.45s var(--ease-out);
}
.diferenciais__panel.is-active { display: block; }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.diferenciais__panel h3 { font-family: var(--font-display); color: var(--branco-tecnico); font-size: 1.4rem; margin-bottom: 0.8rem; }
.diferenciais__panel p { color: var(--cinza); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ════════════════════ PÚBLICO-ALVO ════════════════════ */
.publico { padding: 6rem 2rem; background: var(--branco-tecnico); }
.publico__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.publico__inner > .section-title { margin-bottom: 3rem; }
.publico__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.publico__card {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  background: var(--branco-tecnico);
  border: 1px solid rgba(124,133,144,0.15);
  border-radius: 14px;
  padding: 1.6rem 0.8rem;
  font-size: 0.85rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.publico__card:hover { transform: translateY(-6px); box-shadow: 0 16px 30px rgba(20,24,28,0.1); border-color: var(--azul-gelox); }
.publico__card span { font-size: 1.8rem; }

@media (max-width: 880px) { .publico__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 881px) and (max-width: 1100px) { .publico__grid { grid-template-columns: repeat(3, 1fr); } }

/* ════════════════════ CTA MEIO ════════════════════ */
.cta-meio {
  background: #0a1660;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Imagem de gelo como fundo com parallax */
.cta-meio__bg {
  position: absolute;
  inset: -30% 0;
  background-image: url('img/bg-gelo.png');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Animação de entrada dos elementos */
.cta-meio__stat,
.cta-meio__divider,
.cta-meio__quote {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.cta-meio__divider { transition-delay: 0.15s; }
.cta-meio__quote   { transition-delay: 0.3s; }

.cta-meio.is-visible .cta-meio__stat,
.cta-meio.is-visible .cta-meio__divider,
.cta-meio.is-visible .cta-meio__quote {
  opacity: 1;
  transform: translateY(0);
}
.cta-meio__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}
.cta-meio__stat {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.cta-meio__num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--branco-tecnico);
  line-height: 1;
  letter-spacing: -0.03em;
}
.cta-meio__num small {
  font-size: 0.45em;
  color: var(--ciano-frio);
  letter-spacing: 0.05em;
}
.cta-meio__sublabel {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: rgba(248,250,251,0.65);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.cta-meio__divider {
  width: 1px;
  height: 120px;
  background: rgba(248,250,251,0.2);
  align-self: center;
}
.cta-meio__quote {
  border: none;
  padding: 0;
}
.cta-meio__quote p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--branco-tecnico);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}
.cta-meio__quote cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ciano-frio);
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.cta-meio__quote cite small {
  display: block;
  color: rgba(248,250,251,0.5);
  font-size: 0.72rem;
}
@media (max-width: 880px) {
  .cta-meio__inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-meio__divider { width: 60px; height: 1px; }
}

/* ════════════════════ CONTATO FINAL ════════════════════ */
.contato { background: var(--grafite); padding: 7rem 2rem; text-align: center; }
.contato__inner { max-width: 600px; margin: 0 auto; }
.contato__inner > .section-title { margin-bottom: 2.2rem; }
.contato__garantias { display: flex; justify-content: center; gap: 1.6rem; flex-wrap: wrap; margin-top: 2.5rem; color: var(--cinza); font-size: 0.88rem; }

/* ════════════════════ RODAPÉ ════════════════════ */
/* ════════════════════ FORMULÁRIO DE PEDIDO ════════════════════ */
.formulario {
  background: var(--grafite);
  padding: 7rem 2rem;
}
.formulario__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.formulario__sub {
  color: var(--cinza);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.formulario__lista {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
}
.formulario__lista li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--branco-tecnico);
  font-size: 0.95rem;
}
.formulario__lista svg { flex-shrink: 0; }

/* Card branco do formulário */
.formulario__card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.formulario__card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--grafite);
  margin-bottom: 0.3rem;
}
.formulario__card-sub {
  color: var(--cinza);
  font-size: 0.85rem;
  margin-bottom: 1.8rem;
}

/* Campos */
.campo {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.campo label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grafite);
}
.campo label span {
  font-weight: 400;
  color: var(--cinza);
}
.campo input,
.campo select,
.campo textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(124,133,144,0.25);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--grafite);
  background: #f4f7fb;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.campo select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237C8590' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.campo input:focus,
.campo select:focus,
.campo textarea:focus {
  border-color: #10227D;
  box-shadow: 0 0 0 3px rgba(49,60,114,0.1);
  background: #fff;
}
.campo textarea { resize: vertical; min-height: 80px; }

/* Botão enviar */
.formulario__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.formulario__btn:hover {
  background: #1fb955;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.formulario__aviso {
  text-align: center;
  font-size: 0.75rem;
  color: var(--cinza);
  margin-top: 0.8rem;
}

/* Responsivo */
@media (max-width: 1024px) {
  .formulario__inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 880px) {
  .formulario__card { padding: 1.8rem; }
}

.footer { background: #0a1660; padding: 4rem 2rem 2rem; }
.footer__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer__logo { font-family: var(--font-display); font-weight: 700; color: var(--branco-tecnico); font-size: 1.3rem; }
.footer__logo-img { height: 48px; width: auto; display: block; margin-bottom: 0.6rem; }
.footer__col p { color: var(--cinza); font-size: 0.88rem; margin-top: 0.6rem; }
.footer__col strong { color: var(--branco-tecnico); font-size: 0.92rem; }
.footer__socials { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.6rem; }
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cinza);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer__social-link:hover { color: #00BBF1; }
.footer__social-link svg { flex-shrink: 0; }
.footer__copy {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(248,250,251,0.08);
  padding-top: 1.5rem;
  color: var(--cinza);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__priv-link {
  color: var(--cinza);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__priv-link:hover { color: #00BBF1; }

/* ════════════════════ BANNER DE COOKIES (LGPD) ════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: #0f1624;
  border-top: 1px solid rgba(0,187,241,0.2);
  padding: 1.2rem 2rem;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s;
}
.cookie-banner.is-oculto {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__texto {
  flex: 1;
  min-width: 260px;
}
.cookie-banner__texto strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.cookie-banner__texto p {
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}
.cookie-banner__texto strong { color: #fff; }
.cookie-banner__acoes {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn--recusar {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn--recusar:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.cookie-btn--aceitar {
  background: #00BBF1;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,187,241,0.3);
}
.cookie-btn--aceitar:hover { box-shadow: 0 6px 18px rgba(0,187,241,0.45); }
.cookie-banner__link {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  text-decoration: underline;
  flex-basis: 100%;
  margin-top: -0.5rem;
}
.cookie-banner__link:hover { color: #00BBF1; }
@media (max-width: 880px) {
  .cookie-banner { padding: 1.2rem 1.2rem 1.5rem; }
  .cookie-banner__acoes { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  .footer__copy { justify-content: center; text-align: center; }
}

@media (max-width: 880px) { .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ════════════════════ WHATSAPP FLUTUANTE ════════════════════ */
.whats-float {
  position: fixed;
  bottom: 1.6rem; right: 1.6rem;
  width: 58px; height: 58px;
  background: var(--verde-whats);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 150;
}
.whats-float__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--verde-whats);
  animation: pulse-whats 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse-whats {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ════════════════════ SCROLL REVEAL GENÉRICO ════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ════════════════════ ANIMAÇÕES GLOBAIS — FADE IN DESKTOP ════════════════════ */


/* Aplica fade nos títulos e blocos principais */
.section-title,
.eyebrow,
.sobre__content,
.sobre__media,
.credential-card,
.processo__step,
.product-card,
.publico__card,
.depoimento-card,
.formulario__card,
.formulario__texto,
.cta-meio__stat,
.cta-meio__quote {
  /* já tem transição própria ou herda do .fade-in via JS */
}

/* ════════════════════ DEPOIMENTOS ════════════════════ */
.depoimentos {
  background: var(--branco-tecnico);
  padding: 7rem 2rem;
}
.depoimentos__inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.depoimentos__inner > .section-title {
  margin-bottom: 3rem;
}
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  text-align: left;
  margin-bottom: 2rem;
}
.depoimento-card {
  background: #fff;
  border: 1px solid rgba(124,133,144,0.12);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  box-shadow: 0 4px 20px rgba(20,24,28,0.06);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.depoimento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(20,24,28,0.12);
}
.depoimento-card__estrelas {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 2px;
}
.depoimento-card__texto {
  font-size: 0.92rem;
  color: #3a3f4a;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.depoimento-card__autor {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid rgba(124,133,144,0.1);
  padding-top: 1rem;
}
.depoimento-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10227D, #00BBF1);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.depoimento-card__autor strong {
  display: block;
  font-size: 0.88rem;
  color: var(--grafite);
}
.depoimento-card__autor span {
  font-size: 0.78rem;
  color: var(--cinza);
}
.depoimentos__nota {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--cinza);
  font-size: 0.8rem;
}
@media (max-width: 1024px) {
  .depoimentos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .depoimentos__grid { grid-template-columns: 1fr; }
}

/* ════════════════════ MAPA ════════════════════ */
.contato__mapa {
  max-width: 900px;
  margin: 3rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
}
.contato__mapa-label {
  background: rgba(20,45,108,0.95);
  padding: 0.75rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
}
.contato__mapa-frame {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: saturate(0.8) brightness(0.9);
}

/* ════════════════════ RODAPÉ NOVO ════════════════════ */
.footer { background: #0a1660; padding: 3rem 0 0; }
.footer__cols {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer__col p { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 0.6rem; }
.footer__col strong { color: #fff; font-size: 0.9rem; display: block; margin-bottom: 0.8rem; }
.footer__col a { display: block; color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 0.4rem; text-decoration: none; transition: color 0.2s; }
.footer__col a:hover { color: #00BBF1; }

.footer__mapa { width: 100%; height: 320px; overflow: hidden; display: block; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__mapa iframe { width: 100%; height: 100%; display: block; }

.footer__social-bar { display: flex; justify-content: center; gap: 1.5rem; padding: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__social-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; transition: background 0.25s, color 0.25s, transform 0.25s; }
.footer__social-icon:hover { background: #00BBF1; border-color: #00BBF1; color: #fff; transform: translateY(-3px); }

.footer__copy { max-width: 1180px; margin: 0 auto; padding: 1.4rem 2rem; color: rgba(255,255,255,0.35); font-size: 0.8rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer__priv-link { color: rgba(255,255,255,0.35); font-size: 0.8rem; text-decoration: none; transition: color 0.2s; }
.footer__priv-link:hover { color: #00BBF1; }

@media (max-width: 1024px) { .footer__cols { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .footer__cols { grid-template-columns: 1fr; } .footer__mapa { height: 220px; } .footer__copy { justify-content: center; text-align: center; } }

/* ════════════════════ MENU DROPDOWN PRODUTOS ════════════════════ */
.nav-dropdown { position: relative; }
.nav-dropdown__btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.92rem;
  color: rgba(248,250,251,0.9);
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0; transition: color 0.2s;
}
.nav-dropdown__btn:hover { color: #00BBF1; }
.nav-dropdown__btn svg { transition: transform 0.25s; }
.nav-dropdown:hover .nav-dropdown__btn svg { transform: rotate(180deg); }

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  transform: translateX(-50%);
  background: #10227D;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown__menu a:hover {
  background: rgba(0,187,241,0.15);
  color: #00BBF1;
}

/* Mobile grupo */
.nav-mobile__grupo { display: flex; flex-direction: column; gap: 0.3rem; }
.nav-mobile__grupo-titulo {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: #00BBF1; text-transform: uppercase; padding: 0.5rem 0 0.2rem;
}
.nav-mobile__sub {
  padding-left: 1rem !important;
  font-size: 0.9rem !important;
  color: rgba(248,250,251,0.7) !important;
}

/* ════════════════════ LINHA SABORIZADA 1KG ════════════════════ */
.saborizado-1kg {
  background: #001857;
  padding: 7rem 2rem;
  text-align: center;
}
.saborizado-1kg__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.saborizado-1kg__sub {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 0.96rem;
  line-height: 1.6;
  text-align: center;
}
.saborizado-1kg__aviso {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.78rem;
  margin-top: 1rem; margin-bottom: 1.5rem;
  font-style: italic; text-align: center;
  max-width: 480px;
}
/* Dots do carrossel 1kg — centralizado */
#saborDots1kg {
  margin: 0.8rem auto 0;
}

/* ════════════════════ CARROSSEL HERO ════════════════════ */
.hero__carrossel {
  position: relative;
  width: 380px;
  max-width: 100%;
}
.hero__carrossel-track {
  position: relative;
  width: 100%;
}
.hero__carrossel-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.hero__carrossel-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.hero__carrossel-slide img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
}
/* Dots do carrossel hero */
.hero__carrossel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.hero__carrossel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero__carrossel-dot.is-active {
  background: #00BBF1;
  transform: scale(1.4);
}
@media (max-width: 1024px) {
  .hero__carrossel { width: 280px; }
}

/* ── Hero pill de localização ── */
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,187,241,0.1);
  border: 1px solid rgba(0,187,241,0.3);
  color: var(--ciano-frio);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

/* ── Hero segmentos ── */
.hero__segmentos {
  display: flex;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 2.2rem;
}
.hero__seg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.65rem 1.1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  font-size: 0;
}
.hero__seg:last-child { border-right: none; }
.hero__seg span { font-size: 1.3rem; }
.hero__seg small {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
}
@media (max-width: 480px) {
  .hero__segmentos { display: none; }
}

/* ── CSS do botão na seção saborizados 200ml ── */
.saborizados__cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.saborizados__cta-texto {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


/* WhatsApp no header — retângulo compacto igual pedido */
.header__whats-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: 8px !important;
  padding: 0.35rem 0.8rem !important;
  opacity: 1 !important;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s !important;
}
.header__whats-btn:hover {
  border-color: #25D366 !important;
  color: #25D366 !important;
}
.header__whats-label {
  font-size: 0.78rem;
  font-weight: 600;
}

/* ════════════════════ LIGHTBOX UNIFICADO ════════════════════ */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox-overlay.is-open { opacity: 1; visibility: visible; }

.lightbox-content {
  display: flex; flex-direction: column; align-items: center;
  max-width: 88vw; max-height: 88vh; position: relative;
}
.lightbox-img {
  max-width: 80vw; max-height: 78vh;
  object-fit: contain; border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  opacity: 0; transition: opacity 0.35s ease;
  display: block;
}
.lightbox-img.lb-visible { opacity: 1; }

.lightbox-legenda {
  margin-top: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}
.lightbox-contador {
  position: absolute;
  top: 1rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

/* Setas */
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2001;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }
.lightbox-prev:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.08); }

/* X fechar */
.lightbox-close {
  position: fixed; top: 1rem; right: 1.4rem;
  color: rgba(255,255,255,0.7); font-size: 2rem; line-height: 1;
  background: none; border: none; cursor: pointer; z-index: 2001;
  transition: color 0.2s;
}
.lightbox-close:hover { color: #fff; }

/* Cursor zoom-in nos cards */
.product-card__media,
.sabor-card__media { cursor: zoom-in; }

@media (max-width: 600px) {
  .lightbox-overlay {
    padding: 0;
    flex-direction: column;
    justify-content: center;
  }
  .lightbox-content {
    max-width: 100vw;
    max-height: 80vh;
    padding: 0 3rem;
  }
  .lightbox-img {
    max-width: calc(100vw - 6rem);
    max-height: 60vh;
    width: auto;
    height: auto;
    border-radius: 8px;
  }
  .lightbox-prev { left: 0.3rem; }
  .lightbox-next { right: 0.3rem; }
  .lightbox-prev,
  .lightbox-next { width: 34px; height: 34px; font-size: 0.9rem; }
  .lightbox-contador { position: static; transform: none; margin-bottom: 0.5rem; text-align: center; }
}

/* ── Seções saborizados: padding menor no mobile para não comprimir o carrossel ── */
@media (max-width: 600px) {
  .saborizados { padding: 4rem 1rem; }
  .saborizado-1kg { padding: 4rem 1rem; }
  .saborizados__inner,
  .saborizado-1kg__inner { padding: 0; }
}
