/* ==========================================================================
   Fabbri Bebidas — folha de estilo
   Paleta herdada do site original: marrom #942600, laranja #FE4809,
   verde-oliva #7A9400, cinza #333 e o fundo âmbar de bolhas.
   ========================================================================== */

:root {
  --marrom: #942600;
  --marrom-escuro: #6E1B00;
  --laranja: #FE4809;
  --laranja-claro: #FFB088;
  --ambar: #F7A21B;
  --oliva: #7A9400;
  --oliva-escuro: #5F7300;
  --cinza: #333333;
  --cinza-2: #666666;
  --cinza-3: #999999;
  --linha: #E6E0D4;
  --creme: #FFF8EE;
  --branco: #FFFFFF;
  --erro-claro: #FFB3C1;

  --font-display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-serif: "Instrument Serif", "Georgia", "Times New Roman", serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --shadow-card: 0 30px 60px -24px rgba(51, 51, 51, .45);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
[id] { scroll-margin-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--cinza);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure, dl, dd { margin: 0; }
button { font: inherit; color: inherit; }

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

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--cinza); color: var(--branco); padding: 10px 16px;
  border-radius: var(--radius); text-decoration: none; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

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

.container {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Tipografia
   -------------------------------------------------------------------------- */

.eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  letter-spacing: .01em;
  color: var(--laranja);
  margin-bottom: 14px;
}
.eyebrow--claro { color: var(--laranja-claro); }

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--marrom);
  margin-bottom: 22px;
  text-wrap: balance;
}
.h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: 1.05em;
  letter-spacing: 0;
  color: var(--laranja);
}
.section--marrom .h2, .section--escuro .h2 { color: var(--branco); }
.section--marrom .h2 em, .section--escuro .h2 em { color: var(--laranja-claro); }

.split__copy p + p { margin-top: 1em; }
.split__copy p { color: var(--cinza-2); max-width: 56ch; }
.section--marrom .split__copy p,
.section--escuro p { color: rgba(255, 255, 255, .85); }

.lead-claro { font-size: 1.15rem; max-width: 52ch; }

/* --------------------------------------------------------------------------
   Botões
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 26px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1rem; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--block { width: 100%; }

.btn--marrom { background: var(--marrom); color: var(--branco); border-color: var(--marrom); }
.btn--marrom:hover { background: var(--laranja); border-color: var(--laranja); }

.btn--branco { background: var(--branco); color: var(--marrom); border-color: var(--branco); }
.btn--branco:hover { background: var(--laranja); border-color: var(--laranja); color: var(--branco); }

.btn--outline-marrom { background: transparent; color: var(--marrom); border-color: var(--marrom); }
.btn--outline-marrom:hover { background: var(--marrom); color: var(--branco); }

/* --------------------------------------------------------------------------
   Topbar (borda superior marrom como no site original)
   -------------------------------------------------------------------------- */

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--branco);
  border-top: 5px solid var(--marrom);
  border-bottom: 1px solid var(--linha);
  transition: box-shadow .3s;
}
.topbar.is-scrolled { box-shadow: 0 10px 30px -18px rgba(51, 51, 51, .5); }

.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 84px;
}
.brand img { width: 124px; height: auto; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; gap: 26px; }
.nav__list a {
  position: relative; text-decoration: none; font-weight: 600; font-size: .95rem;
  letter-spacing: .02em; padding: 6px 0; color: var(--cinza);
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--laranja); transition: right .3s var(--ease);
}
.nav__list a:hover::after, .nav__list a.is-active::after { right: 0; }
.nav__cta { min-height: 44px; padding: 0 20px; font-size: .9rem; }

.burger {
  display: none; width: 48px; height: 48px; border: 0; background: transparent;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px; cursor: pointer;
  border-radius: var(--radius);
}
.burger span { display: block; width: 26px; height: 2px; background: var(--cinza); transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero: fundo âmbar de bolhas do site original
   -------------------------------------------------------------------------- */

.hero {
  position: relative; overflow: hidden;
  background-color: var(--ambar);
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 18%, rgba(255,255,255,0) 82%, rgba(255,255,255,.9) 100%),
    url("../assets/images/buuble1.jpg");
  background-size: 100% 100%, cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--marrom);
  padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 7vw, 96px);
}

.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.8rem, 6.4vw, 5.6rem);
  line-height: .98; text-transform: uppercase; letter-spacing: .01em;
  color: var(--marrom);
  margin: 0 0 24px; text-wrap: balance;
}
.hero__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none;
  color: var(--branco); font-size: 1.06em; letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(148, 38, 0, .35);
}
.hero__lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 46ch; color: var(--marrom-escuro); margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Garrafa única, grande, sobre o fundo */
.hero__eyebrow { color: var(--marrom); }
.hero__lead { color: #4A1200; }
.hero__figure {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px;
  justify-self: center; width: min(100%, 420px);
}
.hero__figure::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 120%; aspect-ratio: 1;
  transform: translate(-50%, -52%); border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.55), rgba(255,255,255,0) 68%);
  z-index: 0;
}
.hero__bottle {
  position: relative; z-index: 1;
  width: min(62%, 300px); height: auto;
  filter: drop-shadow(0 30px 28px rgba(110, 27, 0, .38));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero__caption {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; gap: 16px; width: 100%; max-width: 360px;
  padding: 10px 14px; background: rgba(255,255,255,.85); border: 1px solid rgba(148,38,0,.25);
  border-radius: var(--radius); color: var(--marrom);
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem;
}
.hero__caption span:last-child { color: var(--cinza-2); font-family: var(--font-serif); font-style: italic; text-transform: none; letter-spacing: 0; font-size: .95rem; font-weight: 400; }

/* Bolhas animadas */
.bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.bubble {
  position: absolute; bottom: -80px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.75), rgba(255,255,255,.12) 55%, transparent 70%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
  animation: rise var(--dur, 14s) linear infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}
@keyframes rise {
  0%   { transform: translate3d(0, 0, 0) scale(.7); opacity: 0; }
  8%   { opacity: .9; }
  50%  { transform: translate3d(var(--drift, 10px), -55vh, 0) scale(1); }
  100% { transform: translate3d(calc(var(--drift, 10px) * -1), -120vh, 0) scale(1.1); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Ticker (cinza da barra de copyright original)
   -------------------------------------------------------------------------- */

.ticker {
  overflow: hidden; background: var(--cinza); color: var(--branco);
  border-top: 3px solid var(--laranja);
}
.ticker__track {
  display: flex; width: max-content; white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker__track span {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: .1em;
  font-size: .95rem; padding: 14px 0;
}
.ticker__track span::after {
  content: "\2022"; color: var(--laranja); margin: 0 26px;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Seções
   -------------------------------------------------------------------------- */

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--branco { background: var(--branco); }
.section--creme { background: var(--creme); }
.section--marrom {
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(254, 72, 9, .28), transparent 60%),
    var(--marrom);
  color: var(--branco);
}
.section--escuro {
  background:
    radial-gradient(70% 50% at 0% 0%, rgba(148, 38, 0, .55), transparent 60%),
    var(--cinza);
  color: var(--branco);
}

.split {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 7vw, 96px); align-items: center;
}
.split--reverse { grid-template-columns: .8fr 1.2fr; }
.split__copy .btn { margin-top: 30px; }

.section__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: 44px;
}
.section__head .h2 { margin-bottom: 0; }

/* Tabela da casa (formato de tabela nutricional) */
.ficha {
  width: 100%; border-collapse: collapse;
  background: var(--branco); color: var(--cinza);
  border: 2px solid var(--cinza);
  box-shadow: 8px 8px 0 var(--marrom);
  font-size: .98rem;
}
.ficha caption {
  text-align: left; padding: 14px 16px 10px;
  border-bottom: 8px solid var(--cinza);
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.ficha caption strong {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.6rem; line-height: 1; letter-spacing: .02em; color: var(--marrom);
}
.ficha caption span { font-family: var(--font-serif); font-style: italic; color: var(--cinza-2); font-size: 1.05rem; }
.ficha th, .ficha td { padding: 11px 16px; border-bottom: 1px solid var(--linha); vertical-align: top; }
.ficha th { text-align: left; font-weight: 600; width: 44%; }
.ficha td { text-align: right; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: .03em; text-transform: uppercase; }
.ficha tbody tr:last-child th, .ficha tbody tr:last-child td { border-bottom: 4px solid var(--cinza); }
.ficha tfoot td { text-align: left; font-family: var(--font-body); font-weight: 400; font-size: .8rem; text-transform: none; color: var(--cinza-3); border: 0; padding-top: 8px; }

/* Groselha */
.groselha__figure {
  position: relative; justify-self: center;
  background: var(--branco); padding: 18px 18px 14px; border-radius: 6px;
  box-shadow: var(--shadow-card); transform: rotate(2deg); max-width: 380px; width: 100%;
}
.groselha__figure img { width: 100%; }
.groselha__figure figcaption {
  margin-top: 10px; font-family: var(--font-serif); font-style: italic; color: var(--cinza-2); font-size: 1rem;
  text-align: center;
}

.dayparts { display: grid; gap: 0; margin-top: 30px; border-top: 1px solid rgba(255,255,255,.25); }
.dayparts__item {
  display: grid; grid-template-columns: 170px 1fr; gap: 20px; align-items: baseline;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.25);
}
.dayparts dt {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 1.05rem; color: var(--laranja-claro);
}
.dayparts dd { color: rgba(255,255,255,.88); }

/* Produtos */
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1.5px solid var(--linha); background: var(--branco); border-radius: 999px;
  padding: 9px 16px; font-size: .9rem; font-weight: 600; cursor: pointer; min-height: 40px;
  transition: background .2s, color .2s, border-color .2s;
}
.chip:hover { border-color: var(--laranja); color: var(--laranja); }
.chip.is-active { background: var(--marrom); color: var(--branco); border-color: var(--marrom); }

.products {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
}
.product {
  display: flex; flex-direction: column;
  background: var(--branco); border: 1px solid var(--linha); border-radius: 6px; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product:hover { transform: translateY(-6px); box-shadow: 0 30px 40px -24px rgba(51,51,51,.35); }
.product.is-hidden { display: none; }

.product__media {
  position: relative; aspect-ratio: 4 / 4.2; display: grid; place-items: center; padding: 26px;
  background:
    radial-gradient(60% 45% at 50% 100%, rgba(247, 162, 27, .35), transparent 70%),
    var(--creme);
}
.product__media::before {
  content: ""; position: absolute; left: 0; top: 0; width: 6px; height: 100%; background: var(--marrom);
}
.product__media img {
  max-height: 100%; width: auto; height: 100%; object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(51,51,51,.22));
  transition: transform .5s var(--ease);
}
.product:hover .product__media img { transform: translateY(-4px) scale(1.03); }

.product__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product__cat { font-family: var(--font-serif); font-style: italic; color: var(--laranja); font-size: 1rem; }
.product__name { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 1.35rem; line-height: 1.1; letter-spacing: .02em; color: var(--marrom); }
.product__spec { color: var(--cinza-2); font-size: .92rem; margin-bottom: 14px; }
.product__cta {
  margin-top: auto; align-self: flex-start;
  background: transparent; border: 1.5px solid var(--marrom); color: var(--marrom); border-radius: var(--radius);
  padding: 10px 16px; min-height: 44px; font-weight: 600; font-size: .9rem; cursor: pointer;
  transition: background .2s, color .2s;
}
.product__cta:hover { background: var(--marrom); color: var(--branco); }
.products__empty { margin-top: 24px; color: var(--cinza-2); font-style: italic; font-family: var(--font-serif); font-size: 1.2rem; }

/* História */
.historia__head {
  display: grid; grid-template-columns: 300px 1fr; gap: clamp(32px, 5vw, 64px); align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.fundadores {
  background: var(--branco); padding: 12px 12px 10px; border-radius: 4px; transform: rotate(-2deg);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.7);
}
.fundadores img { border-radius: 2px; filter: sepia(.25) contrast(1.05); }
.fundadores figcaption { margin-top: 8px; text-align: center; font-family: var(--font-serif); font-style: italic; color: var(--cinza-2); font-size: .95rem; }

.timeline { position: relative; display: grid; gap: 0; max-width: 900px; }
.timeline::before {
  content: ""; position: absolute; left: 118px; top: 8px; bottom: 8px; width: 1px;
  background: rgba(255,255,255,.25);
}
.timeline__item {
  display: grid; grid-template-columns: 96px 1fr; gap: 44px; padding: 22px 0;
  position: relative;
}
.timeline__item::before {
  content: ""; position: absolute; left: 113px; top: 34px; width: 11px; height: 11px; border-radius: 50%;
  background: var(--cinza); border: 2px solid rgba(255,255,255,.6);
}
.timeline__item--mark::before, .timeline__item--now::before { background: var(--laranja); border-color: var(--laranja); box-shadow: 0 0 0 6px rgba(254,72,9,.22); }
.timeline__year {
  font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; line-height: 1; color: var(--branco);
  text-align: right; letter-spacing: .02em; padding-top: 2px;
}
.timeline__item--mark .timeline__year, .timeline__item--now .timeline__year { color: var(--laranja); }
.timeline__body h3 { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 1.5rem; margin-bottom: 6px; color: var(--laranja-claro); }
.timeline__body p { max-width: 62ch; }

/* Contato */
.contato { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.contato__info > p { color: var(--cinza-2); max-width: 52ch; }
.contato__list { font-style: normal; display: grid; gap: 18px; margin: 30px 0; }
.contato__row { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; }
.contato__row strong { display: block; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; color: var(--marrom); }
.contato__row span { color: var(--cinza-2); }
.contato__row a { color: var(--cinza); text-decoration-color: var(--laranja); text-underline-offset: 3px; }
.ico { width: 24px; height: 24px; fill: none; stroke: var(--marrom); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }

.map { position: relative; border: 2px solid var(--cinza); border-radius: 6px; overflow: hidden; box-shadow: 8px 8px 0 var(--laranja); }
.map iframe { display: block; width: 100%; height: 280px; border: 0; filter: saturate(.8); }
.map__link {
  position: absolute; right: 10px; bottom: 10px; background: var(--cinza); color: var(--branco);
  text-decoration: none; font-size: .85rem; font-weight: 600; padding: 8px 12px; border-radius: var(--radius);
}

.form {
  background: var(--branco); border: 2px solid var(--cinza); border-radius: 6px; padding: clamp(22px, 3vw, 36px);
  box-shadow: 10px 10px 0 var(--marrom);
  display: grid; gap: 16px;
}
.form__title { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; text-transform: uppercase; line-height: 1; letter-spacing: .02em; color: var(--marrom); }
.form__hint { font-family: var(--font-serif); font-style: italic; color: var(--laranja); font-size: 1.1rem; margin-top: -6px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: .9rem; }
.field input, .field textarea {
  font: inherit; color: var(--cinza); background: var(--creme);
  border: 1.5px solid var(--linha); border-radius: var(--radius); padding: 12px 14px; min-height: 48px; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--marrom); box-shadow: 0 0 0 3px rgba(148,38,0,.15); }
input[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: var(--laranja) !important; border-width: 2px; background-color: #FFF1EA;
}
.news__row input[aria-invalid="true"] { border-color: var(--erro-claro) !important; background-color: rgba(255,179,193,.12); }
.field-row { display: grid; grid-template-columns: 1fr 88px; gap: 12px; }
.form__status { min-height: 1.4em; font-size: .92rem; color: var(--cinza-2); }
.form__status.is-ok { color: var(--oliva-escuro); }
.form__status.is-error { color: var(--marrom); }

/* --------------------------------------------------------------------------
   Rodapé (verde-oliva do site original + barra cinza)
   -------------------------------------------------------------------------- */

.footer { background: var(--oliva); color: var(--branco); }
.footer__grid {
  display: grid; grid-template-columns: 1.1fr 1.2fr .6fr; gap: clamp(32px, 5vw, 72px);
  padding: clamp(48px, 6vw, 72px) 0;
}
.footer__brand img { width: 120px; background: var(--branco); padding: 8px 10px; border-radius: 4px; margin-bottom: 16px; }
.footer__brand p { color: rgba(255,255,255,.9); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tags li { font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; padding: 5px 11px; color: var(--branco); }

.news__title { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 1.35rem; letter-spacing: .04em; line-height: 1; margin-bottom: 14px; }
.news__row { display: grid; grid-template-columns: 1fr 1.3fr auto; gap: 10px; }
.news__row input {
  font: inherit; min-height: 50px; padding: 0 14px; border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,.45); background: rgba(255,255,255,.12); color: var(--branco);
}
.news__row input::placeholder { color: rgba(255,255,255,.75); }
.news__row input:focus { outline: none; border-color: var(--branco); }
.news .btn--branco { color: var(--oliva-escuro); }
.news .btn--branco:hover { color: var(--branco); }
.news .form__status { color: rgba(255,255,255,.85); }
.news .form__status.is-ok { color: var(--branco); }
.news .form__status.is-error { color: var(--erro-claro); }

.footer__nav { display: grid; gap: 10px; align-content: start; }
.footer__nav a { text-decoration: none; color: var(--branco); font-weight: 600; }
.footer__nav a:hover { color: var(--cinza); }

.footer__bar { background: var(--cinza); font-size: .85rem; color: rgba(255,255,255,.75); }
.footer__bar-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding: 18px 0; }

/* Voltar ao topo (laranja com hover cinza, como o original) */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 48px; height: 48px; border-radius: var(--radius); display: grid; place-items: center;
  background: var(--laranja); color: var(--branco); box-shadow: 0 10px 24px -10px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .3s, transform .3s var(--ease), background .2s;
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--cinza); }
.to-top svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* --------------------------------------------------------------------------
   Reveal
   -------------------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal--delay { transition-delay: .15s; }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsivo
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__nav { grid-column: 1 / -1; grid-auto-flow: column; justify-content: start; gap: 24px; }
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { margin-inline: auto; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .groselha__figure { order: 2; }
  .historia__head { grid-template-columns: 1fr; }
  .fundadores { max-width: 320px; }
  .contato { grid-template-columns: 1fr; }

  .burger { display: flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--branco); border-bottom: 1px solid var(--linha);
    padding: 8px var(--gutter) 20px;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform .3s var(--ease), opacity .3s, visibility 0s .3s;
    box-shadow: 0 30px 40px -30px rgba(51,51,51,.5);
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; transition: transform .3s var(--ease), opacity .3s; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list a { display: block; padding: 14px 0; border-bottom: 1px solid var(--linha); font-size: 1.05rem; }
  .nav__cta { margin-top: 16px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .products { grid-template-columns: 1fr; }
  .dayparts__item { grid-template-columns: 1fr; gap: 6px; }
  .timeline::before { left: 8px; }
  .timeline__item { grid-template-columns: 1fr; gap: 6px; padding-left: 32px; }
  .timeline__item::before { left: 3px; top: 30px; }
  .timeline__year { text-align: left; font-size: 1.8rem; }
  .news__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__nav { grid-auto-flow: row; }
  .ficha caption { flex-direction: column; gap: 2px; }
  .ficha th { width: 50%; }
  .hero__bottle { width: 58%; }
  .hero__caption { flex-direction: column; gap: 2px; text-align: center; }
  .to-top { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .bubble, .ticker__track { animation: none; }
  .ticker__track { width: auto; flex-wrap: wrap; }
  .hero__bottle { animation: none; }
  .product, .product__media img, .btn { transition: none; }
}
