/* ══════════════════════════════════════════════
   THE COOK FACTORY — style.css
   ══════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  /* Palette */
  --c-brown-dark:    #2A1200;
  --c-brown-mid:     #6B3A1F;
  --c-brown-warm:    #C17836;
  --c-pink:          #EBA5B7;
  --c-pink-dark:     #E1B5C2;
  --c-cream:         #FEF8FA;
  --c-cream-warm:    #FDF0F5;
  --c-cream-deep:    #F2D5E3;
  --c-off-white:     #FFFFFF;
  --c-text:          #2A1200;
  --c-text-mid:      #6B4A30;
  --c-text-light:    #F5EDE0;

  /* Type */
  --f-display:  'Bebas Neue', sans-serif;
  --f-serif:    'Cormorant Garamond', Georgia, serif;
  --f-sans:     'DM Sans', system-ui, sans-serif;

  /* Layout */
  --max-w:      1240px;
  --pad-x:      clamp(1.25rem, 5vw, 2.5rem);

  /* Radius */
  --r-sm:  0.5rem;
  --r-md:  1rem;
  --r-lg:  1.75rem;
  --r-xl:  2.5rem;

  /* Shadow */
  --sh-sm:  0 2px 14px rgba(42, 18, 0, 0.07);
  --sh-md:  0 8px 36px rgba(42, 18, 0, 0.12);
  --sh-lg:  0 24px 64px rgba(42, 18, 0, 0.16);

  /* Motion */
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 0.6, 1);
}


/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  background: var(--c-cream);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: 0; background: none; cursor: pointer; font: inherit; color: inherit; }
svg { flex-shrink: 0; }


/* ─── LAYOUT ─── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}


/* ─── TYPOGRAPHY UTILITIES ─── */
.section-kicker {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-brown-warm);
  margin-bottom: 0.9rem;
}
.section-kicker--light { color: var(--c-pink); }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.0;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--c-brown-dark);
}
.section-title em {
  font-style: italic;
  font-family: var(--f-serif);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-pink-dark);
}

.section-header {
  max-width: 640px;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.section-header.--center { text-align: center; margin-inline: auto; }

.section-desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-text-mid);
  max-width: 52ch;
}


/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 9999px;
  padding: 0.85rem 1.85rem;
  white-space: nowrap;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background-color 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: 0.55rem 1.35rem; font-size: 0.82rem; }
.btn--lg { padding: 1.05rem 2.2rem;  font-size: 0.95rem; }

.btn--primary {
  background: #EDA4B7;
  color: var(--c-brown-dark);
  box-shadow: 0 4px 20px rgba(237, 164, 183, 0.35);
}
.btn--primary:hover {
  background: #E48FA5;
  box-shadow: 0 8px 30px rgba(237, 164, 183, 0.5);
}

.btn--secondary {
  background: #EDA4B7;
  color: var(--c-brown-dark);
  border: 1.5px solid #EDA4B7;
}
.btn--secondary:hover {
  background: #E48FA5;
  border-color: #E48FA5;
}

.btn--outline-light {
  background: #EDA4B7;
  color: var(--c-brown-dark);
  border: 1.5px solid #EDA4B7;
  backdrop-filter: blur(6px);
}
.btn--outline-light:hover {
  background: #E48FA5;
  color: var(--c-brown-dark);
  border-color: #E48FA5;
}


/* ─── REVEAL ANIMATION ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}


/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-cream);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.header.is-scrolled {
  background: rgba(254, 248, 250, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(42, 18, 0, 0.08), 0 4px 24px rgba(42, 18, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 96px;
  gap: 2rem;
}

/* Logo */
.header__logo img {
  height: 110px;
  width: auto;
  object-fit: contain;
}

/* Nav */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-brown-dark);
  background: #ECA9BC;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav__link:hover {
  background: #E1B5C2;
  color: var(--c-brown-dark);
}

/* CTA in header */
.header__cta {
  flex-shrink: 0;
  background: #EDA4B7;
  color: var(--c-brown-dark);
  padding: 0.55rem 1.35rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s var(--ease);
}
.header__cta:hover { background: #E48FA5; transform: translateY(-1px); }

/* Hamburger — hidden on desktop, visible on mobile at the right */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  flex-shrink: 0;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--c-brown-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.25s;
  transform-origin: center;
}
.nav-toggle.is-open span { background: var(--c-brown-dark); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  background: var(--c-cream);
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

/* Text side */
.hero__kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-brown-warm);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-family: var(--f-display);
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  line-height: 0.93;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--c-brown-dark);
  margin-bottom: 1.5rem;
}
.hero__headline em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: #ECA3B7;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-text-mid);
  max-width: 46ch;
  margin-bottom: 2rem;
}

/* Metrics */
.hero__metrics {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.metric {
  display: flex;
  flex-direction: column;
}
.metric strong {
  font-family: var(--f-display);
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  color: var(--c-brown-dark);
  line-height: 1;
}
.metric span {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--c-text-mid);
  margin-top: 0.2rem;
}
.metric__sep {
  width: 1px;
  height: 2.2rem;
  background: var(--c-cream-deep);
  flex-shrink: 0;
}

/* Image stack */
.hero__visual { position: relative; }

.hero__img-stack {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 540px;
  margin-left: auto;
}

.hero__img-main {
  width: 88%;
  height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.hero__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__img-accent {
  position: absolute;
  bottom: -2rem;
  left: -1.5rem;
  width: 42%;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 4px solid var(--c-cream);
  box-shadow: var(--sh-md);
}
.hero__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Wave */
.hero__wave {
  display: block;
  line-height: 0;
  margin-top: -1px;
  margin-bottom: -5px;
}
.hero__wave svg {
  display: block;
  width: 100%;
}


/* ══════════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════════ */
.products {
  background: #E1B5C2;
  padding-block: clamp(4.5rem, 9vw, 8rem);
  margin-top: -3px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-off-white);
  box-shadow: var(--sh-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

/* overlay removido — botões de hover retirados a pedido do cliente */

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--c-brown-dark);
  color: var(--c-cream);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  z-index: 1;
}
.product-card__badge--soon { background: var(--c-brown-warm); }

.product-card--soon .product-card__media img {
  filter: brightness(0.92);
}

.product-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
}
.product-card__body h3 {
  font-family: var(--f-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-brown-dark);
  margin-bottom: 0.65rem;
}
.product-card__body p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-text-mid);
}


/* ══════════════════════════════════════════════
   WHY US
   ══════════════════════════════════════════════ */
.why-us {
  background: var(--c-cream);
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

/* Depoimentos em colunas animadas */
.testimonials__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-height: 680px;
  overflow: hidden;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.testimonials__col {
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@keyframes scrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.testimonials__track--1 { animation: scrollUp 28s linear infinite; }
.testimonials__track--2 { animation: scrollUp 22s linear infinite; }
.testimonials__track--3 { animation: scrollUp 25s linear infinite; }

.testimonial-card {
  background: var(--c-off-white);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-cream-deep);
  flex-shrink: 0;
}

.testimonial-card__quote {
  color: var(--c-pink);
  margin-bottom: 0.85rem;
  opacity: 0.7;
}

.testimonial-card p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-text-mid);
  margin-bottom: 1rem;
}

.testimonial-card__name {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-brown-warm);
}

@media (max-width: 860px) {
  .testimonials__wrap { grid-template-columns: repeat(2, 1fr); }
  .testimonials__col--3 { display: none; }
}
@media (max-width: 560px) {
  .testimonials__wrap { grid-template-columns: 1fr; }
  .testimonials__col:last-child { display: none; }
}

/* Gallery grid — 3 columns, 2 rows. Wide items span 2 cols. */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1rem;
}

/* Layout:
   Row 1: [wide item - col 1-1] [item2] [item3 stacked below item2 → no, use auto-placement]
   Actually:
   col1 (row1+row2 tall) | col2 (row1) | col3 (row1)
                           col2 (row2, wide item) →
*/
.gallery__item {
  border-radius: var(--r-md);
  overflow: hidden;
}

/* Item 1: tall on left, spans both rows */
.gallery__item:nth-child(1) {
  grid-row: span 2;
}

/* Item 4: wide bottom right, spans 2 cols */
.gallery__item--wide:last-child {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }


/* ══════════════════════════════════════════════
   HOW TO ORDER
   ══════════════════════════════════════════════ */
.how-to {
  background: #E1B5C2;
  padding-block: clamp(4.5rem, 9vw, 8rem);
  position: relative;
  overflow: hidden;
}

.how-to .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3.5rem, 7vw, 8rem);
  align-items: start;
  position: relative;
}

.how-to__inner { display: flex; flex-direction: column; }

.how-to__header .section-title { color: var(--c-brown-dark); }
.how-to__header .section-desc  { color: var(--c-brown-mid); }

.how-to__steps {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 1.75rem;
  padding-bottom: 2.5rem;
  position: relative;
}

/* Connecting line */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc(1.75rem / 2 + 0.75rem - 1px); /* center of number */
  top: 3.2rem;
  bottom: 0;
  width: 1px;
  background: rgba(42, 18, 0, 0.2);
}

.step__number {
  flex-shrink: 0;
  font-family: var(--f-display);
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--c-brown-dark);
  opacity: 0.4;
  min-width: 2.5rem;
  padding-top: 0.1rem;
}

.step__content h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-brown-dark);
  margin-bottom: 0.65rem;
}
.step__content p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-brown-mid);
}

/* Visual side */
.how-to__visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/5;
  position: sticky;
  top: 6rem;
  max-height: 600px;
}
.how-to__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ══════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════ */
.cta-section {
  background: var(--c-cream-warm);
  padding-block: clamp(5rem, 10vw, 9rem);
}

.cta-section__inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.cta-section__headline {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.0;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--c-brown-dark);
  margin-bottom: 1.5rem;
}
.cta-section__headline em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: #ECA3B7;
  letter-spacing: 0;
}

.cta-section__body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--c-text-mid);
  margin-bottom: 2.5rem;
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}


.cta-section__note {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--c-text-mid);
  opacity: 0.65;
}


/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: var(--c-brown-dark);
  color: var(--c-cream);
  padding-block: 3.5rem 2rem;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 237, 224, 0.1);
  margin-bottom: 1.75rem;
}

.footer__logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
}
.footer__brand p {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(245, 237, 224, 0.88);
}

.footer__col-title {
  font-family: var(--f-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-pink);
  margin-bottom: 0.85rem;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__nav a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 237, 224, 0.88);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--c-cream); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__contact a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 237, 224, 0.88);
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--c-pink); }
.footer__contact span {
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(245, 237, 224, 0.88);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 237, 224, 0.88);
  transition: color 0.2s;
}
.footer__social-link:hover { color: var(--c-pink); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(245, 237, 224, 0.45);
}
.footer__credits a {
  color: rgba(245, 237, 224, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__credits a:hover { color: rgba(245, 237, 224, 0.75); }


/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

/* Tablet landscape */
@media (max-width: 1100px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px;
  }
  .gallery__item:nth-child(1) { grid-row: span 1; }
  .gallery__item--wide:last-child { grid-column: span 1; }
}

/* Tablet portrait */
@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__sub { margin-inline: auto; }
  .hero__metrics { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__img-stack {
    max-width: 400px;
    margin-inline: auto;
  }
  .hero__img-accent { left: auto; right: -1rem; }

  .products__grid {
    grid-template-columns: 1fr 1fr;
  }
  .products__grid .product-card:last-child {
    grid-column: span 2;
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }

  .how-to .container {
    grid-template-columns: 1fr;
  }
  .how-to__visual {
    position: static;
    max-height: 420px;
    aspect-ratio: 16/9;
  }
}

/* Mobile */
@media (max-width: 640px) {
  /* Header: logo left — hamburger right */
  .header__inner { justify-content: space-between; }
  .nav-toggle    { display: flex; margin-left: auto; }
  .header__cta   { display: none; }
  .header__nav   { flex: unset; }

  .header__nav {
    position: fixed;
    inset: 0;
    background: var(--c-cream);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .header__nav.is-open { transform: translateX(0); }

  .header__nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .nav__link {
    font-family: var(--f-display);
    font-size: 2.2rem;
    letter-spacing: 0.06em;
  }

  /* Products */
  .products__grid {
    grid-template-columns: 1fr;
  }
  .products__grid .product-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  /* Why */
  .why-us__grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
  }
  .gallery__item:nth-child(1) { grid-row: span 1; }
  .gallery__item--wide:last-child { grid-column: span 1; }

  /* CTA actions */
  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-section__actions .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    gap: 2rem;
  }
}


/* ══════════════════════════════════════════════
   WHATSAPP FLUTUANTE
   ══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: waComeIn 0.6s var(--ease) 2s both;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes waComeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════
   LIVRO DE RECLAMAÇÕES
   ══════════════════════════════════════════════ */
.footer__reclamacoes {
  display: inline-flex;
  align-items: center;
}


/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--c-brown-dark);
  color: var(--c-cream);
  padding: 1.25rem var(--pad-x);
  box-shadow: 0 -4px 32px rgba(42, 18, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease);
}
.cookie-banner:not([hidden]) {
  transform: translateY(0);
}
/* hidden attr prevents display but we animate via transform,
   so remove display:none when not hidden */
.cookie-banner[hidden] { display: none; }

.cookie-banner__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 0;
}
.cookie-banner__text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: var(--c-cream);
}
.cookie-banner__text p {
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245, 237, 224, 0.7);
}
.cookie-banner__text a {
  color: var(--c-pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__text a:hover { color: var(--c-pink-dark); }

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s;
  white-space: nowrap;
}
.cookie-banner__btn:hover { transform: translateY(-1px); }

.cookie-banner__btn--accept {
  background: var(--c-cream);
  color: var(--c-brown-dark);
}
.cookie-banner__btn--accept:hover { background: var(--c-cream-warm); }

.cookie-banner__btn--reject {
  background: transparent;
  color: rgba(245, 237, 224, 0.65);
  border: 1px solid rgba(245, 237, 224, 0.25);
}
.cookie-banner__btn--reject:hover {
  color: var(--c-cream);
  border-color: rgba(245, 237, 224, 0.5);
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; justify-content: center; }
}
