:root {
  --brand-orange: #F59200;
  --brand-brown: #733C14;
  --container-max: 1280px;
  --container-pad-x: 64px;
  --container-pad-x-mobile: 20px;
  --mobile-baseline: 360px;
  --font-sans: 'Alexandria', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  color-scheme: light;
}

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }

/* Skip link — accessible navigation shortcut */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--brand-brown);
  color: #fff;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  color: #1a1a1a;
  background: #fff;
}

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

@media (max-width: 768px) {
  .container { padding: 0 var(--container-pad-x-mobile); }
}

a { text-decoration: none; color: inherit; }

/* ───────── Scroll reveal system ───────── */

.reveal {
  opacity: 0;
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal--up    { transform: translate3d(0, 28px, 0); }
.reveal--down  { transform: translate3d(0, -28px, 0); }
.reveal--left  { transform: translate3d(-40px, 0, 0); }
.reveal--right { transform: translate3d(40px, 0, 0); }
.reveal--scale { transform: scale(0.96); }
.reveal--pop {
  transform: translate3d(0, 24px, 0) scale(0.92);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) var(--reveal-delay, 0ms);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--up,
  .reveal--down,
  .reveal--left,
  .reveal--right,
  .reveal--scale,
  .reveal--pop {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.site-header {
  background: var(--brand-orange);
  width: 100%;
}

.header-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 15px var(--container-pad-x);
  display: flex;
  align-items: center;
  gap: 46px;
}

@media (max-width: 768px) {
  .header-inner { padding: 15px var(--container-pad-x-mobile); }
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  height: 80px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-item {
  position: relative;
  color: var(--brand-brown);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-item:hover::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .nav-item::after {
    transition: none;
  }
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 14px 28px 14px 16px;
  color: #fff;
  font-size: 16px;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.whatsapp-btn:hover {
  background: #fff;
  color: var(--brand-orange);
}

.whatsapp-btn:hover .whatsapp-icon {
  border-color: var(--brand-orange);
}

.whatsapp-btn:hover .whatsapp-icon svg { fill: var(--brand-orange); }

.whatsapp-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-icon svg {
  width: 38px;
  height: 38px;
  fill: #fff;
  transition: fill 0.2s ease;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-shrink: 0;
  margin-left: auto;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle-line {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--brand-brown);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1),
              opacity 0.2s ease,
              width 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--brand-orange);
  z-index: 100;
  padding: 96px 24px 32px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1),
              visibility 0s linear 0.5s;
  visibility: hidden;
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1),
              visibility 0s linear 0s;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-brown);
  cursor: pointer;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  transform: rotate(-45deg);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease;
}

.mobile-menu-close svg { width: 24px; height: 24px; }

.mobile-menu-close:hover { background: rgba(115, 60, 20, 0.1); }
.mobile-menu-close:active { background: rgba(115, 60, 20, 0.18); }

.mobile-menu.is-open .mobile-menu-close {
  opacity: 1;
  transform: rotate(0);
  transition-delay: 0.1s;
}

body.menu-open { overflow: hidden; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 8px;
}

.mobile-nav-item {
  display: block;
  padding: 20px 4px;
  font-size: 24px;
  font-weight: var(--fw-semibold);
  color: var(--brand-brown);
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(115, 60, 20, 0.18);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav-item:first-child { border-top: 1px solid rgba(115, 60, 20, 0.18); }

.mobile-menu.is-open .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.15s + var(--i) * 0.06s);
}

.mobile-whatsapp {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 16px 24px;
  color: var(--brand-orange);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

.mobile-menu.is-open .mobile-whatsapp {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.15s + 5 * 0.06s);
}

.mobile-whatsapp-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-whatsapp-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--brand-orange);
}

/* ───────── Hero ───────── */

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
  background: #fff url('assets/slice_1.webp') right center / auto 100% no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 50px;
  padding-left: max(var(--container-pad-x), calc((100vw - var(--container-max)) / 2 + var(--container-pad-x)));
  padding-right: 0;
}

.hero-text {
  flex: 0 0 475px;
  max-width: 475px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.hero-carousel {
  flex: 1;
  min-width: 0;
}

.hero-heading {
  margin: 0;
  font-size: 36px;
  line-height: 1.3;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  letter-spacing: -0.01em;
}

.hero-accent { color: var(--brand-orange); }

.hero-sub {
  margin: -10px 0 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--brand-brown);
  font-weight: var(--fw-regular);
  max-width: 460px;
}

.hero-sub strong { font-weight: var(--fw-semibold); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-orange);
  color: #fff;
  padding: 24px 100px;
  border-radius: 999px;
  font-weight: var(--fw-semibold);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 4px 14px rgba(245, 146, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 146, 0, 0.35);
  background: #e08700;
}

.btn-primary:active { transform: translateY(0); }

/* ───────── Carousel ───────── */

.card-stack {
  position: relative;
  width: 519px;
  height: 538px;
}

.product-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 519px;
  height: 538px;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(76, 44, 18, 0.18);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.5s ease,
              box-shadow 0.6s ease;
  transform-origin: center center;
  will-change: transform;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.product-card[data-pos="0"] {
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 3;
}

.product-card[data-pos="1"] {
  transform: translate3d(40px, 20px, 0) scale(0.97);
  z-index: 2;
  box-shadow: 0 12px 32px rgba(76, 44, 18, 0.14);
}

.product-card[data-pos="2"] {
  transform: translate3d(80px, 40px, 0) scale(0.94);
  z-index: 1;
  box-shadow: 0 8px 22px rgba(76, 44, 18, 0.12);
}

.product-card.is-flying {
  transition: transform 0.55s cubic-bezier(0.45, 0, 0.55, 1),
              opacity 0.45s ease;
  transform: translate3d(560px, 0, 0) scale(0.94);
  opacity: 0;
}

/* ───────── Features bar ───────── */

.features-bar {
  background: var(--brand-brown);
  padding: 30px 0;
}

.features-bar-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border-radius: 999px;
  padding: 9px 28px 9px 9px;
  white-space: nowrap;
  cursor: default;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}

.feature-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px -10px rgba(0, 0, 0, 0.22);
}

.feature-icon {
  width: 31px;
  height: 31px;
  display: block;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-badge:hover .feature-icon {
  transform: rotate(-10deg) scale(1.1);
}

.feature-text {
  font-size: 18px;
  font-weight: var(--fw-regular);
  color: var(--brand-brown);
  line-height: 1.2;
}

/* ───────── Banner ───────── */

.banner {
  width: 100%;
  line-height: 0;
}

.banner-image {
  display: block;
  width: 100%;
  height: auto;
}

/* ───────── Products grid ───────── */

.products {
  background: #EDEDED;
  padding: 100px 0;
}

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

.products-title {
  text-align: center;
  font-size: 34px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.products-sub {
  text-align: center;
  font-size: 15px;
  font-weight: var(--fw-regular);
  color: var(--brand-brown);
  opacity: 0.75;
  margin: 0 0 48px;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.product-tile {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - 48px) / 3);
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  text-decoration: none;
  isolation: isolate;
}

.product-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.product-overlay-text {
  color: #fff;
  font-size: 20px;
  font-weight: var(--fw-semibold);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.product-tile:hover .product-overlay,
.product-tile:focus-visible .product-overlay {
  opacity: 1;
}

.product-tile:hover .product-img,
.product-tile:focus-visible .product-img {
  transform: scale(1.06);
}

.product-tile:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 4px;
}

.products-cta-wrap {
  display: flex;
  justify-content: center;
}

.products-cta {
  padding: 20px 64px;
  font-size: 16px;
  letter-spacing: 0.08em;
}

/* ───────── Audiences ───────── */

.audiences {
  background: #fff;
  padding: 100px 0;
}

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

.audiences-title {
  text-align: center;
  font-size: 34px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 60px;
}

.audiences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.audience-card {
  background: #fff;
  border: 1px solid rgba(115, 60, 20, 0.14);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.5s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 146, 0, 0.35);
  box-shadow: 0 24px 40px -22px rgba(76, 44, 18, 0.2);
}

.audience-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 8px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.audience-card:hover .audience-icon {
  transform: rotate(-6deg) scale(1.06);
}

.audience-icon img {
  width: 60px;
  height: 60px;
  display: block;
}

.audience-card-title {
  margin: 0;
  font-size: 26px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.audience-desc {
  margin: 0;
  font-size: 18px;
  font-weight: var(--fw-regular);
  line-height: 1.55;
  color: var(--brand-brown);
  max-width: 380px;
}

.audience-btn {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 24px 100px;
  font-size: 18px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  margin-top: 12px;
}

.audience-btn.is-filled {
  background: var(--brand-orange);
  color: #fff;
  border: 2px solid var(--brand-orange);
}

.audience-btn.is-filled:hover {
  background: #e08700;
  border-color: #e08700;
  transform: translateY(-1px);
}

.audience-btn.is-outlined {
  background: transparent;
  color: var(--brand-orange);
  border: 2px solid var(--brand-orange);
}

.audience-btn.is-outlined:hover {
  background: var(--brand-orange);
  color: #fff;
  transform: translateY(-1px);
}

.audience-photo {
  border-radius: 24px;
  overflow: hidden;
  background: #f2f2f2;
  min-height: 240px;
}

.audience-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.audience-photo:hover img {
  transform: scale(1.05);
}

/* ───────── Reasons ───────── */

.reasons {
  background: #fff;
  padding: 0 0 100px;
}

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

.reasons-title {
  text-align: center;
  font-size: 34px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 60px;
}

.reasons-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

.reason-card {
  flex: 0 0 260px;
  width: 260px;
  background: #fff;
  border: 1px solid rgba(115, 60, 20, 0.12);
  border-radius: 24px;
  padding: 36px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Orange bloom — warm halo emerging from behind the icon on hover */
.reason-card::before {
  content: '';
  position: absolute;
  top: -25%;
  left: -30%;
  right: -30%;
  height: 60%;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(245, 146, 0, 0.28),
    rgba(245, 146, 0, 0) 65%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
  z-index: -1;
}

.reason-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 146, 0, 0.45);
  box-shadow:
    0 24px 40px -20px rgba(76, 44, 18, 0.18),
    0 8px 16px -8px rgba(245, 146, 0, 0.22);
}

.reason-card:hover::before { opacity: 1; }

.reason-card:hover .reason-icon {
  transform: translateY(-4px) scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .reason-card,
  .reason-card::before,
  .reason-icon {
    transition: none !important;
  }
  .reason-card:hover,
  .reason-card:hover .reason-icon {
    transform: none;
  }
}

.reason-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reason-icon img {
  width: 64px;
  height: 64px;
  display: block;
}

.reason-title {
  margin: 0;
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.reason-desc {
  margin: -5px 0 0 0;
  font-size: 15px;
  font-weight: var(--fw-regular);
  color: var(--brand-brown);
  opacity: 0.8;
  line-height: 1.5;
}

/* ───────── Testimonials ───────── */

.testimonials {
  background: #352E27;
  padding: 100px 0;
  color: #fff;
}

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

.testimonials-title {
  text-align: center;
  color: #fff;
  font-size: 34px;
  font-weight: var(--fw-bold);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 60%),
    #3F362E;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease,
    border-color 0.4s ease,
    background-color 0.4s ease;
}

/* Bloom halo — warm glow from behind when hovered */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: -35%;
  left: -25%;
  right: -25%;
  height: 75%;
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(245, 146, 0, 0.22),
    rgba(245, 146, 0, 0) 65%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: -1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 146, 0, 0.28);
  box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.5);
  background-color: #473C33;
}

.testimonial-card:hover::before { opacity: 1; }

.testimonial-stars {
  display: flex;
  gap: 5px;
}

.testimonial-stars .star {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F5B800'><path d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}

/* Cascading twinkle on hover */
.testimonial-card:hover .star {
  animation: star-twinkle 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover .star:nth-child(1) { animation-delay: 0ms; }
.testimonial-card:hover .star:nth-child(2) { animation-delay: 70ms; }
.testimonial-card:hover .star:nth-child(3) { animation-delay: 140ms; }
.testimonial-card:hover .star:nth-child(4) { animation-delay: 210ms; }
.testimonial-card:hover .star:nth-child(5) { animation-delay: 280ms; }

@keyframes star-twinkle {
  0%   { transform: scale(1) rotate(0); filter: brightness(1); }
  40%  { transform: scale(1.3) rotate(-6deg); filter: brightness(1.4); }
  70%  { transform: scale(1.08) rotate(4deg); filter: brightness(1.15); }
  100% { transform: scale(1) rotate(0); filter: brightness(1); }
}

.testimonial-quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #fff;
  font-weight: var(--fw-regular);
  flex: 1;
}

.testimonial-divider {
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.14);
}

.testimonial-author {
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: var(--fw-regular);
}

.stats-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 72px;
}

.stat {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  font-size: 52px;
  font-weight: var(--fw-bold);
  color: var(--brand-orange);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat-plus,
.stat-slash { display: inline-block; }

.stat-label {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: var(--fw-regular);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card:hover .star { animation: none; }
}

/* ───────── How it works ───────── */

.how-it-works {
  background: #fff;
  padding: 100px 0;
}

.how-it-works-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.how-left {
  flex: 0 0 auto;
  width: 400px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
  text-align: left;
}

.how-selo {
  width: 402px;
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-selo:hover {
  transform: rotate(-3deg) scale(1.03);
}

.how-title {
  margin: 0;
  font-size: 30px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.how-cta {
  padding: 20px 64px;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: none;
}

.how-divider {
  width: 1px;
  background: rgba(245, 146, 0, 0.35);
  align-self: stretch;
  flex-shrink: 0;
}

/* Line reveal — draws top-to-bottom on scroll */
.reveal.is-line {
  opacity: 1;
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal.is-line.is-revealed {
  transform: scaleY(1);
}

.how-right {
  flex: 0 0 auto;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step {
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: default;
}

.step-icon {
  width: 127px;
  height: 127px;
  border: 3px solid var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Liquid fill — orange rises from bottom on hover */
.step-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-orange);
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}

.step-number {
  font-size: 40px;
  font-weight: var(--fw-bold);
  color: var(--brand-orange);
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: color 0.35s ease 0.15s;
}

.step:hover .step-icon {
  transform: scale(1.05);
}

.step:hover .step-icon::before {
  transform: translateY(0);
}

.step:hover .step-number {
  color: #fff;
}

.step-text {
  display: flex;
  flex-direction: column;
}

.step-title {
  margin: 0;
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.step-sub {
  margin: 4px 0 0;
  font-size: 15px;
  color: var(--brand-brown);
  opacity: 0.75;
  line-height: 1.5;
  font-weight: var(--fw-regular);
}

@media (prefers-reduced-motion: reduce) {
  .step:hover .step-icon,
  .step:hover .step-icon::before,
  .step:hover .step-number,
  .how-selo:hover {
    transform: none;
    transition: none;
  }
}

/* ───────── About ───────── */

.about {
  background: #fff;
  padding: 0 0 100px;
}

.about-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}

.about-content {
  flex: 0 0 auto;
  width: 532px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-title {
  margin: 0;
  font-size: 36px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.about-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--brand-brown);
  font-weight: var(--fw-regular);
}

.about-stats {
  display: flex;
  gap: 16px;
}

.about-stat {
  flex: 1;
  min-width: 0;
  padding: 20px 14px;
  background: #352E27;
  border-radius: 14px;
  text-align: center;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    background-color 0.35s ease;
  cursor: default;
}

.about-stat:hover {
  transform: translateY(-4px);
  background-color: #40372F;
  box-shadow: 0 14px 26px -10px rgba(0, 0, 0, 0.32);
}

.about-stat-number {
  font-size: 30px;
  font-weight: var(--fw-bold);
  color: var(--brand-orange);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.about-stat-label {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
  font-weight: var(--fw-regular);
}

.about-images {
  flex: 0 0 auto;
  width: 569px;
  max-width: 100%;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.55s ease;
}

.about-img:hover {
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .about-stat:hover,
  .about-img:hover {
    transform: none;
    transition: none;
  }
}

/* ───────── Blog ───────── */

.blog {
  background: #EDEDED;
  padding: 100px 0;
}

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

.blog-title {
  text-align: center;
  font-size: 34px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 55px;
}

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

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -18px rgba(76, 44, 18, 0.2);
}

.blog-img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  padding: 14px;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-content {
  padding: 4px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date {
  font-size: 12px;
  color: var(--brand-brown);
  opacity: 0.55;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  display: block;
  margin-bottom: 10px;
}

.blog-card-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.blog-excerpt {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--brand-brown);
  opacity: 0.72;
  flex: 1;
}

.blog-link {
  position: relative;
  display: inline-block;
  align-self: flex-start;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: #1E8FE0;
  letter-spacing: 0.01em;
}

.blog-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-link::after {
  transform: scaleX(1);
}

.blog-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.blog-cta {
  padding: 20px 64px;
  font-size: 16px;
  letter-spacing: 0.08em;
}

@media (prefers-reduced-motion: reduce) {
  .blog-card:hover,
  .blog-card:hover .blog-img,
  .blog-card:hover .blog-link::after {
    transform: none;
    transition: none;
  }
}

/* ───────── CTA — Warm invitation ───────── */

.cta {
  background: var(--brand-orange);
  padding: 60px 0;
  position: relative;
  overflow: visible;
}

.cta-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
  position: relative;
  min-height: 260px;
}

.cta-person-img {
  position: absolute;
  left: var(--container-pad-x);
  bottom: -60px;
  width: 340px;
  height: auto;
  z-index: 1;
  display: block;
}

.cta-content {
  padding-left: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-height: 260px;
  color: #fff;
}

.cta-title {
  margin: 0;
  font-size: 30px;
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.cta-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  font-weight: var(--fw-regular);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 36px 15px 32px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.cta-btn--wa {
  padding-left: 12px;
}

.cta-btn:hover {
  background: #fff;
  color: var(--brand-orange);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -10px rgba(0, 0, 0, 0.22);
}

.cta-btn-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-btn-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  transition: fill 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .cta-btn:hover {
    transform: none;
    transition: none;
  }
}

/* ───────── Products page — hero ───────── */

.products-hero {
  background: #fff;
  padding: 130px 0;
}

.products-hero-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.products-hero-title {
  margin: 0;
  font-size: 46px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.products-hero-sub {
  margin: 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--brand-brown);
  font-weight: var(--fw-regular);
}

.products-hero-sub strong {
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
}

.products-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.products-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 64px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  border: 2px solid var(--brand-orange);
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.products-hero-btn.is-filled {
  background: var(--brand-orange);
  color: #fff;
}

.products-hero-btn.is-filled:hover {
  background: #e08700;
  border-color: #e08700;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(245, 146, 0, 0.5);
}

.products-hero-btn.is-outlined {
  background: transparent;
  color: var(--brand-orange);
}

.products-hero-btn.is-outlined:hover {
  background: var(--brand-orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(245, 146, 0, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .products-hero-btn:hover {
    transform: none;
    transition: none;
  }
}

/* ───────── Products page — list/grid ───────── */

.product-list {
  background: #EDEDED;
  padding: 100px 0 140px;
}

.product-list-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
}

/* Top toolbar — Buscar | Produtos | Filtrar */
.product-list-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.product-list-title {
  margin: 0;
  font-size: 32px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  letter-spacing: -0.01em;
  text-align: center;
}

.toolbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1.5px solid var(--brand-brown);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-brown);
  font-family: inherit;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.toolbar-btn:hover {
  background: var(--brand-brown);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(76, 44, 18, 0.35);
}

.toolbar-btn--search { justify-self: start; }
.toolbar-btn--filter { justify-self: end; }

.toolbar-btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Category pills */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
}

.cat-pill {
  padding: 9px 20px;
  border: 1.5px solid var(--brand-brown);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-brown);
  font-family: inherit;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cat-pill:hover {
  background: rgba(245, 146, 0, 0.1);
  color: var(--brand-orange);
  border-color: var(--brand-orange);
  transform: translateY(-1px);
}

.cat-pill.is-active {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}

.cat-pill.is-active:hover {
  background: #e08700;
  border-color: #e08700;
  color: #fff;
}

/* Product items grid */
.product-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 40px;
}

.product-item {
  flex: 0 0 calc((100% - 80px) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.product-item-link {
  width: 100%;
  display: block;
  padding: 22px;
  background: #0000000D;
  border-radius: 26px;
  text-decoration: none;
  transition: background-color 0.4s ease;
}

.product-item.is-active .product-item-link,
.product-item:hover .product-item-link {
  background: #F59200;
}

.product-item-img-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}

.product-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-item-title {
  margin: 0;
  font-size: 28px;
  font-weight: var(--fw-medium);
  color: var(--brand-brown);
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.2;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-item-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 52px;
  background: var(--brand-brown);
  color: #fff;
  border-radius: 999px;
  font-size: 18px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background-color 0.35s ease;
}

.product-item.is-active .product-item-cta,
.product-item:hover .product-item-cta {
  background: var(--brand-orange);
}

@media (prefers-reduced-motion: reduce) {
  .cat-pill:hover,
  .toolbar-btn:hover {
    transform: none;
    transition: none;
  }
}

/* ───────── Quem Somos — Heritage story ───────── */

.about-us {
  background: #EDEDED;
  padding: 100px 0;
}

.about-us-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.about-us-image {
  flex: 0 0 441px;
  width: 441px;
  max-width: 100%;
}

.about-us-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 40px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.6s ease;
}

.about-us-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 24px 48px -22px rgba(76, 44, 18, 0.28);
}

.about-us-content {
  flex: 0 0 603px;
  width: 603px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-us-title {
  margin: 0 0 6px;
  font-size: 48px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.about-us-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--brand-brown);
  font-weight: var(--fw-regular);
}

.about-us-text strong {
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
}

@media (prefers-reduced-motion: reduce) {
  .about-us-image:hover img {
    transform: none;
    transition: none;
  }
}

/* ───────── Quem Somos — Missão/Visão/Valores/Diferencial/Curiosidades ───────── */

.mvv {
  background: #fff;
  padding: 100px 0;
}

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

.mvv-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.mvv-card {
  flex: 0 0 485px;
  max-width: 485px;
  background: #fff;
  border: 1px solid rgba(115, 60, 20, 0.14);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.5s ease;
}

.mvv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 146, 0, 0.4);
  box-shadow: 0 22px 40px -22px rgba(76, 44, 18, 0.2);
}

.mvv-icon {
  width: 56px;
  height: 56px;
  display: block;
  flex-shrink: 0;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mvv-card:hover .mvv-icon {
  transform: rotate(360deg) scale(1.06);
}

.mvv-card-title {
  margin: 0;
  font-size: 26px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.mvv-card-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--brand-brown);
  font-weight: var(--fw-regular);
}

@media (prefers-reduced-motion: reduce) {
  .mvv-card:hover,
  .mvv-card:hover .mvv-icon {
    transform: none;
    transition: none;
  }
}

/* ───────── Quem Somos — Timeline (Heritage passage — infinite carousel) ───────── */

.timeline {
  background: #fff;
  padding: 0 0 150px;
  overflow: hidden;
}

.timeline-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto 60px;
  padding: 0 var(--container-pad-x);
}

.timeline-title {
  margin: 0;
  text-align: center;
  font-size: 40px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Full-width scroller — edge-to-edge */
.timeline-scroller {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.timeline-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 0 15px;
  animation: timeline-marquee 70s linear infinite;
}

.timeline-line {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 54px;
  height: 1px;
  background: rgba(115, 60, 20, 0.22);
  z-index: 0;
}

.timeline-scroller:hover .timeline-track {
  animation-play-state: paused;
}

@keyframes timeline-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 15px), 0, 0); }
}

/* Horizontal line variant — draws from left on reveal */
.reveal.is-line-h {
  opacity: 1;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}
.reveal.is-line-h.is-revealed {
  transform: scaleX(1);
}

.timeline-item {
  flex: 0 0 180px;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  scroll-snap-align: start;
  position: relative;
  z-index: 1;
}

.timeline-year {
  font-size: 16px;
  font-weight: var(--fw-semibold);
  color: var(--brand-brown);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--brand-orange);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px #fff;
  margin-bottom: 20px;
  position: relative;
}

.timeline-image {
  width: 180px;
  height: 180px;
  border-radius: 22px;
  overflow: hidden;
  background: #2a2420;
  filter: sepia(0.85) brightness(0.82) contrast(0.95);
  transition:
    filter 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s ease;
  margin-bottom: 18px;
}

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

.timeline-item:hover .timeline-image {
  filter: none;
  transform: scale(1.04);
  box-shadow: 0 22px 40px -22px rgba(76, 44, 18, 0.35);
}

.timeline-caption {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--brand-brown);
  font-weight: var(--fw-regular);
  max-width: 180px;
}

@media (prefers-reduced-motion: reduce) {
  .timeline-track { animation: none; }
  .timeline-item:hover .timeline-image {
    transform: none;
    transition: none;
  }
}

/* ───────── Blog list page — Editorial reader ───────── */

.blog-list {
  background: #fff;
  padding: 100px 0 130px;
}

.blog-list-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
}

.blog-list-title {
  margin: 0 0 60px;
  text-align: center;
  font-size: 40px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.blog-list-items {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.blog-post {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Skip render of below-fold posts until they approach viewport */
.blog-post:not(:first-child) {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.blog-post-link {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  background: #1a1a1a;
}

.blog-post-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-post-link:hover img,
.blog-post-link:focus-visible img {
  transform: scale(1.04);
}

.blog-post-date {
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--brand-brown);
  opacity: 0.6;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  margin-top: 6px;
}

.blog-post-title {
  margin: 0;
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.blog-post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-title a:hover,
.blog-post-title a:focus-visible {
  color: var(--brand-orange);
}

.blog-post-excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--brand-brown);
  font-weight: var(--fw-regular);
}

@media (prefers-reduced-motion: reduce) {
  .blog-post-link:hover img {
    transform: none;
    transition: none;
  }
}

/* ───────── Blog single post page ───────── */

.blog-single {
  background: #fff;
  padding: 80px 0 120px;
}

.blog-single-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.blog-single-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--brand-brown);
  line-height: 1.4;
}

.blog-single-breadcrumb a {
  color: var(--brand-brown);
  opacity: 0.7;
  text-decoration: none;
  font-weight: var(--fw-medium);
  transition: opacity 0.25s ease, color 0.25s ease;
}

.blog-single-breadcrumb a:hover {
  opacity: 1;
  color: var(--brand-orange);
}

.blog-single-breadcrumb .breadcrumb-sep {
  opacity: 0.4;
  font-weight: var(--fw-bold);
}

.blog-single-breadcrumb [aria-current="page"] {
  color: var(--brand-brown);
  font-weight: var(--fw-semibold);
  opacity: 1;
}

.blog-single-title {
  margin: 100px 0 60px;
  text-align: center;
  font-size: 32px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.blog-single-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 60px;
  background: #1a1a1a;
}

.blog-single-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-single-date {
  display: block;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--brand-brown);
  opacity: 0.6;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.blog-single-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog-single-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--brand-brown);
  font-weight: var(--fw-regular);
}

/* ───────── Contact page ───────── */

.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;
}

.contact-page {
  background: #fff;
  padding: 100px 0 140px;
}

.contact-page-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
}

.contact-page-inner--narrow {
  max-width: 760px;
  padding: 0 var(--container-pad-x-mobile);
}

.contact-page-inner + .contact-page-inner {
  margin-top: 100px;
}

.contact-title {
  font-family: 'Alexandria', sans-serif;
  font-size: 48px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 56px;
  row-gap: 20px;
  margin-bottom: 56px;
}

.contact-info-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--brand-brown);
  font-size: 16px;
  font-weight: var(--fw-medium);
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.28s ease, transform 0.28s ease;
}

a.contact-info-item:hover {
  color: var(--brand-orange);
  transform: translateY(-1px);
}

a.contact-info-item:hover .contact-info-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(245, 146, 0, 0.35);
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background-color: var(--brand-orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 3px 8px rgba(245, 146, 0, 0.22);
}

.contact-info-icon::before {
  content: '';
  width: 18px;
  height: 18px;
  background-color: #fff;
  mask: var(--icon) no-repeat center / contain;
  -webkit-mask: var(--icon) no-repeat center / contain;
}

.contact-form {
  display: block;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  grid-template-areas:
    "nome     assunto"
    "telefone mensagem"
    "email    mensagem"
    "cidade   mensagem";
  column-gap: 16px;
  row-gap: 16px;
}

.contact-form-input--nome     { grid-area: nome; }
.contact-form-input--assunto  { grid-area: assunto; }
.contact-form-input--telefone { grid-area: telefone; }
.contact-form-input--email    { grid-area: email; }
.contact-form-input--cidade   { grid-area: cidade; }
.contact-form-textarea        { grid-area: mensagem; }

.contact-form-input {
  width: 100%;
  border: 1.5px solid rgba(115, 60, 20, 0.22);
  background: transparent;
  padding: 18px 20px;
  font-family: 'Alexandria', sans-serif;
  font-size: 15px;
  font-weight: var(--fw-regular);
  color: var(--brand-brown);
  outline: none;
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: rgba(115, 60, 20, 0.45);
  font-weight: var(--fw-regular);
}

.contact-form-input:hover,
.contact-form-textarea:hover {
  border-color: rgba(115, 60, 20, 0.42);
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(245, 146, 0, 0.12);
}

.contact-form-textarea {
  width: 100%;
  border: 1.5px solid rgba(115, 60, 20, 0.22);
  background: transparent;
  padding: 18px 20px;
  font-family: 'Alexandria', sans-serif;
  font-size: 15px;
  font-weight: var(--fw-regular);
  color: var(--brand-brown);
  outline: none;
  border-radius: 10px;
  resize: none;
  min-height: 100%;
  align-self: stretch;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-disclaimer {
  margin: 28px 0 20px;
  font-size: 13px;
  color: var(--brand-brown);
  line-height: 1.6;
  font-weight: var(--fw-regular);
  text-align: center;
}

.contact-form-disclaimer a {
  color: var(--brand-brown);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: var(--fw-medium);
  transition: color 0.25s ease;
}

.contact-form-disclaimer a:hover {
  color: var(--brand-orange);
}

.contact-form-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 2px solid var(--brand-orange);
  background: #fff;
  color: var(--brand-orange);
  font-family: 'Alexandria', sans-serif;
  font-size: 16px;
  font-weight: var(--fw-semibold);
  padding: 18px 42px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.contact-form-submit:hover {
  transform: translateY(-2px);
  background: var(--brand-orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(245, 146, 0, 0.28);
}

.contact-form-submit:active {
  transform: translateY(0);
}

.contact-form-submit:focus-visible {
  outline: 2px solid var(--brand-brown);
  outline-offset: 3px;
}

.location-title {
  font-family: 'Alexandria', sans-serif;
  font-size: 40px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  text-align: center;
}

.location-map {
  width: 100%;
  aspect-ratio: 16 / 6;
  border-radius: 18px;
  overflow: hidden;
  background: #f3eeea;
  box-shadow: 0 8px 32px rgba(115, 60, 20, 0.12);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ───────── Product single page ───────── */

.product-single {
  background: #fff;
  padding: 50px 0 100px;
}

.product-single-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
}

/* Breadcrumb */
.breadcrumb { margin-bottom: 40px; }

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--brand-brown);
}

.breadcrumb a {
  color: var(--brand-brown);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.25s ease, color 0.25s ease;
  font-weight: var(--fw-medium);
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--brand-orange);
}

.breadcrumb-sep {
  color: var(--brand-brown);
  opacity: 0.4;
  font-weight: var(--fw-bold);
}

.breadcrumb [aria-current="page"] {
  color: var(--brand-brown);
  font-weight: var(--fw-semibold);
}

/* Main product layout */
.product-single-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-single-left {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Product image */
.product-single-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 48px;
  overflow: hidden;
  background: #1a1a1a;
}

.product-single-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Accordions */
.product-accordions {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid rgba(115, 60, 20, 0.14);
  padding: 18px 0;
}

.accordion-item:first-child { padding-top: 0; }
.accordion-item:last-child { border-bottom: none; }

.accordion-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  list-style: none;
  outline: none;
  letter-spacing: -0.01em;
}

.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::marker { content: ""; }

.accordion-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--brand-orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-orange);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              background-color 0.3s ease,
              color 0.3s ease;
}

.accordion-icon svg {
  width: 18px;
  height: 18px;
}

.accordion-item[open] .accordion-icon {
  transform: rotate(-180deg);
  background: var(--brand-orange);
  color: #fff;
}

.accordion-item summary:hover .accordion-icon {
  background: rgba(245, 146, 0, 0.1);
}

.accordion-content {
  padding: 14px 0 6px 58px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--brand-brown);
  opacity: 0.85;
}

.accordion-content p {
  margin: 0;
}

/* Right column */
.product-single-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product-single-title {
  margin: 0;
  font-size: 54px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Flavors section */
.product-flavors {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flavors-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  letter-spacing: -0.01em;
}

.flavors-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flavors-icon svg {
  width: 16px;
  height: 16px;
}

.flavors-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flavors-list li {
  font-size: 17px;
  font-weight: var(--fw-bold);
  color: var(--brand-brown);
  letter-spacing: 0.01em;
  padding: 4px 0;
}

/* Buttons */
.product-single-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.product-single-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  border: 2px solid var(--brand-orange);
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.product-single-btn.is-filled {
  background: var(--brand-orange);
  color: #fff;
}

.product-single-btn.is-filled:hover {
  background: #e08700;
  border-color: #e08700;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(245, 146, 0, 0.5);
}

.product-single-btn.is-outlined {
  background: transparent;
  color: var(--brand-orange);
}

.product-single-btn.is-outlined:hover {
  background: var(--brand-orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(245, 146, 0, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .product-single-btn:hover,
  .accordion-item[open] .accordion-icon {
    transform: none;
    transition: none;
  }
}

/* ───────── Footer — Settled rest ───────── */

.footer {
  background: #2A2420;
  color: #fff;
  padding: 100px 0 40px;
}

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

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.3fr;
  gap: 64px;
}

.footer-title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--brand-orange);
  letter-spacing: -0.01em;
}

.footer-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  font-weight: var(--fw-regular);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav a {
  position: relative;
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-nav a:hover {
  color: var(--brand-orange);
}

.footer-nav a:hover::after {
  transform: scaleX(1);
}

.footer-contacts {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--brand-orange);
}

.footer-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  background-color: var(--brand-orange);
  mask: var(--icon) no-repeat center / contain;
  -webkit-mask: var(--icon) no-repeat center / contain;
  display: inline-block;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-social:hover {
  background: var(--brand-orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 48px 0 28px;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  margin: 0 0 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  font-weight: var(--fw-regular);
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .footer-social:hover,
  .footer-nav a:hover::after {
    transform: none;
    transition: none;
  }
}

/* Carousel dots — hidden on desktop */
.carousel-dots { display: none; }
.carousel-dot {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1024px) {
  .header-inner { padding: 15px 32px; gap: 24px; }
  .nav { gap: 24px; }
  .nav-item { font-size: 15px; }
  .whatsapp-btn { padding: 12px 20px 12px 12px; font-size: 14px; }
  .logo { height: 64px; }
}

@media (max-width: 1200px) {
  .hero-heading { font-size: 32px; }
  .card-stack { width: 440px; height: 456px; }
  .product-card { width: 440px; height: 456px; }
  .product-card[data-pos="1"] { transform: translate3d(34px, 18px, 0) scale(0.97); }
  .product-card[data-pos="2"] { transform: translate3d(68px, 36px, 0) scale(0.94); }
  .product-card.is-flying { transform: translate3d(480px, 0, 0) scale(0.94); }
}

@media (max-width: 1024px) {
  .hero { padding: 60px 0; }
  .hero-inner { gap: 40px; }
  .hero-text { flex: 0 0 400px; max-width: 400px; }
  .hero-heading { font-size: 28px; }
  .card-stack { width: 360px; height: 376px; }
  .product-card { width: 360px; height: 376px; }
  .product-card[data-pos="1"] { transform: translate3d(28px, 14px, 0) scale(0.97); }
  .product-card[data-pos="2"] { transform: translate3d(56px, 28px, 0) scale(0.94); }
  .product-card.is-flying { transform: translate3d(400px, 0, 0) scale(0.94); }
}

@media (max-width: 768px) {
  .header-inner { padding: 15px var(--container-pad-x-mobile); }
  .nav { display: none; }
  .whatsapp-btn { display: none; }
  .menu-toggle { display: flex; }
  .logo { height: 56px; }

  .products { padding: 40px 0; }
  .products-inner { padding: 0 var(--container-pad-x-mobile); }
  .products-title { font-size: 24px; margin-bottom: 10px; }
  .products-sub { font-size: 13px; margin-bottom: 28px; }
  .products-grid { gap: 12px; margin-bottom: 32px; }
  .product-tile {
    flex: 0 0 calc((100% - 12px) / 2);
    border-radius: 16px;
  }
  .product-overlay { display: none; }
  .products-cta { padding: 16px 40px; font-size: 13px; }

  .audiences { padding: 40px 0; }
  .audiences-inner { padding: 0 var(--container-pad-x-mobile); }
  .audiences-title { font-size: 24px; margin-bottom: 40px; }
  .audiences-grid { grid-template-columns: 1fr; gap: 16px; }
  /* Card always above its paired photo on mobile */
  .audiences-grid > :nth-child(3) { order: 4; }
  .audiences-grid > :nth-child(4) { order: 3; }
  .audience-card { padding: 28px 24px; border-radius: 20px; gap: 14px; }
  .audience-icon { width: 52px; height: 52px; }
  .audience-icon img { width: 52px; height: 52px; }
  .audience-card-title { font-size: 18px; }
  .audience-desc { font-size: 14px; }
  .audience-btn { padding: 14px 24px; font-size: 13px; }
  .audience-photo { aspect-ratio: 16 / 10; min-height: 0; border-radius: 20px; }

  .reasons { padding: 40px 0; }
  .reasons-inner { padding: 0 var(--container-pad-x-mobile); }
  .reasons-title { font-size: 24px; margin-bottom: 32px; }
  .reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .reason-card {
    flex: unset;
    width: auto;
    padding: 24px 12px 22px;
    border-radius: 20px;
    gap: 14px;
  }
  .reason-icon { width: 52px; height: 52px; }
  .reason-icon img { width: 52px; height: 52px; }
  .reason-title { font-size: 16px; }
  .reason-desc { font-size: 13px; line-height: 1.45; }

  .testimonials { padding: 48px 0; }
  .testimonials-inner { padding: 0 var(--container-pad-x-mobile); }
  .testimonials-title { font-size: 24px; margin-bottom: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 48px; }
  .testimonial-card { padding: 24px 22px; gap: 14px; border-radius: 20px; }
  .testimonial-stars .star { width: 16px; height: 16px; }
  .testimonial-quote { font-size: 14px; line-height: 1.5; }
  .testimonial-author { font-size: 12px; }
  .stats-row { gap: 18px; }
  .stat { min-width: 0; flex: 1; }
  .stat-number { font-size: 32px; letter-spacing: -0.03em; }
  .stat-label { font-size: 11px; margin-top: 6px; line-height: 1.3; }

  .blog { padding: 40px 0; }
  .blog-inner { padding: 0 var(--container-pad-x-mobile); }
  .blog-title { font-size: 24px; margin-bottom: 32px; }
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-card { border-radius: 16px; }
  .blog-img-wrap { padding: 10px; }
  .blog-img { border-radius: 12px; }
  .blog-content { padding: 2px 18px 22px; }
  .blog-card-title { font-size: 16px; }
  .blog-excerpt { font-size: 13px; }
  .blog-link { font-size: 13px; }
  .blog-cta-wrap { margin-top: 32px; }
  .blog-cta { padding: 16px 40px; font-size: 13px; }

  .cta {
    padding: 40px 0 0;
    overflow: hidden;
  }
  .cta-inner {
    padding: 0 var(--container-pad-x-mobile);
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cta-content {
    padding: 0 0 24px;
    min-height: 0;
    align-items: center;
    gap: 14px;
  }
  .cta-title { font-size: 22px; line-height: 1.25; }
  .cta-text { font-size: 14px; line-height: 1.5; }
  .cta-buttons {
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
  }
  .cta-btn {
    padding: 12px 22px;
    font-size: 13px;
    gap: 8px;
  }
  .cta-btn--wa { padding-left: 8px; }
  .cta-btn-icon { width: 28px; height: 28px; }
  .cta-btn-icon svg { width: 13px; height: 13px; }
  .cta-person-img {
    position: static;
    left: auto;
    bottom: auto;
    width: 200px;
    margin: 0;
    order: 2;
  }
  .cta-content { order: 1; }

  .footer { padding: 48px 0 28px; }
  .footer-inner { padding: 0 var(--container-pad-x-mobile); }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-title { font-size: 18px; margin-bottom: 16px; }
  .footer-desc { font-size: 13px; }
  .footer-nav { gap: 10px; }
  .footer-nav a { font-size: 13px; }
  .footer-contact { font-size: 13px; }
  .footer-divider { margin: 32px 0 22px; }
  .footer-bottom p { font-size: 11px; }

  .about { padding: 40px 0; }
  .about-inner {
    flex-direction: column;
    padding: 0 var(--container-pad-x-mobile);
    gap: 32px;
    align-items: stretch;
  }
  .about-content { width: 100%; gap: 20px; }
  .about-title { font-size: 26px; }
  .about-text { font-size: 14px; line-height: 1.55; }
  .about-stats { gap: 10px; }
  .about-stat { padding: 14px 8px; border-radius: 12px; }
  .about-stat-number { font-size: 20px; }
  .about-stat-label { font-size: 10px; margin-top: 4px; }
  .about-images {
    width: 100%;
    max-width: 100%;
  }

  .products-hero { padding: 48px 0; }
  .products-hero-inner { padding: 0 var(--container-pad-x-mobile); gap: 22px; }
  .products-hero-title { font-size: 28px; line-height: 1.2; }
  .products-hero-sub { font-size: 14px; }
  .products-hero-buttons { gap: 10px; width: 100%; }
  .products-hero-btn { padding: 14px 28px; font-size: 13px; flex: 1; min-width: 140px; }

  .product-list { padding: 48px 0 56px; }
  .product-list-inner { padding: 0 var(--container-pad-x-mobile); }
  .product-list-top {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "title title"
      "search filter";
    gap: 14px;
    margin-bottom: 24px;
  }
  .product-list-title { grid-area: title; font-size: 24px; }
  .toolbar-btn--search { grid-area: search; justify-self: stretch; }
  .toolbar-btn--filter { grid-area: filter; justify-self: stretch; }
  .toolbar-btn { padding: 10px 16px; font-size: 12px; justify-content: center; }
  .toolbar-btn-icon { width: 14px; height: 14px; }

  .category-pills { gap: 6px; margin-bottom: 28px; }
  .cat-pill { padding: 6px 12px; font-size: 11px; }

  .about-us { padding: 40px 0; }
  .about-us-inner {
    flex-direction: column;
    padding: 0;
    gap: 24px;
    align-items: stretch;
  }
  .about-us-image {
    flex: unset;
    width: 360px;
    max-width: 100%;
    margin: 0 auto;
  }
  .about-us-image img { border-radius: 28px; }
  .about-us-content {
    flex: unset;
    width: 100%;
    padding: 0 var(--container-pad-x-mobile);
    gap: 14px;
  }
  .about-us-title { font-size: 28px; margin-bottom: 4px; }
  .about-us-text { font-size: 13px; line-height: 1.6; }

  .blog-single { padding: 32px 0 56px; }
  .blog-single-inner { padding: 0 var(--container-pad-x-mobile); }
  .blog-single-breadcrumb ol { font-size: 12px; gap: 6px; }
  .blog-single-title { font-size: 22px; margin: 48px 0 32px; line-height: 1.25; }
  .blog-single-hero { border-radius: 16px; margin-bottom: 32px; }
  .blog-single-date { font-size: 11px; margin-bottom: 20px; }
  .blog-single-body { gap: 14px; }
  .blog-single-body p { font-size: 14px; line-height: 1.7; }

  .blog-list { padding: 48px 0 64px; }
  .blog-list-inner { padding: 0 var(--container-pad-x-mobile); }
  .blog-list-title { font-size: 28px; margin-bottom: 40px; }
  .blog-list-items { gap: 48px; }
  .blog-post { gap: 10px; }
  .blog-post-link { border-radius: 18px; }
  .blog-post-title { font-size: 17px; }
  .blog-post-excerpt { font-size: 13px; line-height: 1.55; }
  .blog-post-date { font-size: 11px; }

  .timeline { padding: 48px 0; }
  .timeline-inner {
    margin: 0 auto 32px;
    padding: 0 var(--container-pad-x-mobile);
  }
  .timeline-title { font-size: 28px; }
  .timeline-scroller {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .timeline-scroller::-webkit-scrollbar { display: none; }
  .timeline-track {
    gap: 16px;
    padding: 0 var(--container-pad-x-mobile);
    animation: none;
  }
  .timeline-line {
    left: var(--container-pad-x-mobile);
    right: var(--container-pad-x-mobile);
    top: 48px;
  }
  .timeline-item {
    flex: 0 0 160px;
    width: 160px;
    scroll-snap-align: start;
  }
  .timeline-image { width: 160px; height: 160px; border-radius: 18px; }
  .timeline-caption { font-size: 12px; max-width: 160px; }
  .timeline-year { font-size: 14px; margin-bottom: 16px; }
  .timeline-dot { margin-bottom: 16px; }

  /* Hide duplicates on mobile (manual scroll, no need for marquee loop) */
  .timeline-track > article[aria-hidden="true"] { display: none; }

  .mvv { padding: 40px 0; }
  .mvv-inner { padding: 0 var(--container-pad-x-mobile); }
  .mvv-grid { gap: 14px; }
  .mvv-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 28px 24px;
    gap: 14px;
    border-radius: 20px;
  }
  .mvv-icon { width: 48px; height: 48px; }
  .mvv-card-title { font-size: 20px; }
  .mvv-card-text { font-size: 15px; }

  .product-single { padding: 24px 0 48px; }
  .product-single-inner { padding: 0 var(--container-pad-x-mobile); }
  .breadcrumb { margin-bottom: 24px; font-size: 12px; }
  .breadcrumb ol { gap: 6px; font-size: 12px; }
  .product-single-main { grid-template-columns: 1fr; gap: 24px; }
  .product-single-left,
  .product-single-right { display: contents; }
  .product-single-img-wrap { order: 1; }
  .product-single-title { order: 2; }
  .product-flavors { order: 3; }
  .product-single-buttons { order: 4; margin-top: 4px; }
  .product-accordions { order: 5; margin-top: 12px; }
  .product-single-img-wrap { border-radius: 32px; }
  .product-single-title { font-size: 28px; line-height: 1.15; }
  .flavors-label { font-size: 16px; gap: 12px; }
  .flavors-icon { width: 30px; height: 30px; }
  .flavors-icon svg { width: 13px; height: 13px; }
  .flavors-list li { font-size: 14px; }
  .product-single-btn { padding: 14px 32px; font-size: 13px; }
  .accordion-item summary { font-size: 15px; gap: 14px; }
  .accordion-icon { width: 34px; height: 34px; }
  .accordion-icon svg { width: 14px; height: 14px; }
  .accordion-content { padding-left: 48px; font-size: 13px; }

  .product-items { gap: 16px 12px; }
  .product-item {
    flex: 0 0 calc((100% - 12px) / 2);
    padding: 0;
    gap: 14px;
  }
  .product-item-link { padding: 12px; border-radius: 18px; }
  .product-item-img-wrap { border-radius: 14px; }
  .product-item-title { font-size: 16px; min-height: 2.4em; }
  .product-item-cta { padding: 8px 28px; font-size: 13px; }

  .how-it-works { padding: 40px 0; }
  .how-it-works-inner {
    flex-direction: column;
    align-items: center;
    padding: 0 var(--container-pad-x-mobile);
    gap: 32px;
  }
  .how-left {
    gap: 24px;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  .how-selo { width: 240px; }
  .how-title { font-size: 22px; }
  .how-cta { padding: 16px 40px; font-size: 13px; }
  .how-divider {
    width: 100%;
    height: 1px;
    align-self: stretch;
    transform-origin: left center;
  }
  .reveal.is-line {
    transform-origin: left center;
    transform: scaleX(0);
  }
  .reveal.is-line.is-revealed {
    transform: scaleX(1);
  }
  .how-right {
    gap: 20px;
    width: fit-content;
    max-width: 100%;
    align-items: stretch;
  }
  .step { gap: 16px; }
  .step-icon { width: 72px; height: 72px; border-width: 2px; }
  .step-number { font-size: 22px; }
  .step-title { font-size: 16px; }
  .step-sub { font-size: 13px; }

  .features-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 12px;
  }
  .feature-badge {
    padding: 7px 10px 7px 6px;
    justify-content: flex-start;
    gap: 6px;
  }
  .feature-icon { width: 24px; height: 24px; }
  .feature-text {
    font-size: 12px;
    letter-spacing: -0.005em;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero { padding: 40px 0; background-size: 180% auto; background-position: right bottom; }
  .hero-inner {
    flex-direction: column;
    gap: 20px;
    text-align: left;
    padding: 0;
  }
  .hero-text {
    flex: 1;
    max-width: 100%;
    width: 100%;
    padding: 0 var(--container-pad-x-mobile);
    gap: 15px;
  }
  .hero-heading { font-size: 26px; line-height: 1.25; margin: 0; }
  .hero-sub { font-size: 15px; margin: -5px 0 0 0; }
  .btn-primary { padding: 16px 40px; font-size: 13px; }

  /* ───────── Mobile carousel: stage-lit full-bleed snap ───────── */
  .hero-carousel {
    width: 100%;
    display: block;
    overflow: visible;
    padding-bottom: 0;
  }

  .card-stack {
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px max(0px, calc(50% - 150px));
    scroll-padding-inline: max(0px, calc(50% - 150px));
    margin: 0;
  }
  .card-stack::-webkit-scrollbar { display: none; }

  .product-card,
  .product-card[data-pos] {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 300px;
    width: 300px;
    height: 310px;
    border-radius: 40px;
    scroll-snap-align: center;
    transform: scale(0.9);
    opacity: 0.55;
    filter: saturate(0.88);
    box-shadow: none;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.45s ease,
                filter 0.45s ease;
    z-index: auto;
    cursor: grab;
  }

  .product-card.is-active,
  .product-card[data-pos].is-active {
    transform: scale(1);
    opacity: 1;
    filter: saturate(1);
    box-shadow: none;
    z-index: 2;
  }

  .product-card.is-flying,
  .product-card[data-pos].is-flying {
    transform: scale(0.9);
    opacity: 0.55;
  }

  /* Dots — "theatre curtain" pill indicator */
  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 0 20px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(115, 60, 20, 0.22);
    transition: background 0.35s ease,
                width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.35s ease;
  }

  .carousel-dot:hover { background: rgba(115, 60, 20, 0.38); }
  .carousel-dot:active { transform: scale(0.92); }

  .carousel-dot.is-active {
    background: var(--brand-orange);
    width: 32px;
  }

  /* Contact page — mobile */
  .contact-page { padding: 48px 0 72px; }
  .contact-page-inner { padding: 0 var(--container-pad-x-mobile); }
  .contact-page-inner + .contact-page-inner { margin-top: 56px; }

  .contact-title { font-size: 32px; margin: 0 0 28px; }

  .contact-info {
    flex-direction: column;
    align-items: flex-start;
    column-gap: 0;
    row-gap: 14px;
    margin-bottom: 36px;
  }
  .contact-info-item { font-size: 14px; gap: 12px; text-align: left; }
  .contact-info-icon { width: 34px; height: 34px; }
  .contact-info-icon::before { width: 16px; height: 16px; }

  .contact-form-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "nome"
      "assunto"
      "telefone"
      "email"
      "cidade"
      "mensagem";
    column-gap: 0;
    row-gap: 12px;
  }
  .contact-form-input { padding: 14px 16px; font-size: 14px; }
  .contact-form-textarea {
    padding: 14px 16px;
    font-size: 14px;
    min-height: 160px;
  }
  .contact-form-disclaimer { margin: 24px 0 20px; font-size: 12px; }
  .contact-form-submit {
    padding: 16px 36px;
    font-size: 14px;
  }

  .location-title { font-size: 28px; margin: 0 0 20px; text-align: center; }
  .location-map {
    aspect-ratio: 4 / 5;
    border-radius: 14px;
  }
}
