/* Fruta Norte — componentes */

/* ——— Masthead (home: header + badge + hero) ——— */
.site-masthead {
  position: relative;
}

.site-masthead--home .hero {
  position: relative;
  z-index: 5;
}

/* ——— Site header / nav ——— */
.site-header {
  position: relative;
  z-index: var(--z-nav);
  background: var(--color-header-purple);
  box-shadow: var(--shadow-md);
}

.site-header--inner {
  position: sticky;
  top: 0;
}

.site-header--home {
  z-index: 10;
}

.site-header--home:has(.nav.is-open) {
  z-index: var(--z-overlay);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  min-height: var(--header-height);
  gap: var(--space-2);
  position: relative;
}

/* ——— Home header: logo início + redes + logo centro + CTA + menu ——— */
.site-header--home .site-header__inner {
  justify-content: space-between;
  gap: var(--space-3);
}

.site-header--home .site-header__left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-3);
  flex: 1 1 0;
  min-width: 0;
  z-index: 1;
}

.site-header--home .site-header__right {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex: 1 1 0;
  min-width: 0;
  justify-content: flex-end;
  z-index: 1;
}

.site-header__logo-inicio {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
  margin-right: 50px;
}

.site-header__logo-inicio:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.site-header__logo-inicio img {
  display: block;
  height: clamp(1.75rem, 4.5vw, 2.65rem);
  width: auto;
  max-width: min(42vw, 11rem);
  object-fit: contain;
}

.site-header__logo-centro {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  z-index: var(--z-masthead-badge);
  width: var(--masthead-badge-size);
  max-width: min(46vw, var(--masthead-badge-size));
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.site-header__logo-centro img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.site-header__logo-centro:hover {
  transform: translateX(-50%) scale(1.03);
}

.site-header__logo-centro:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 4px;
  border-radius: var(--radius-md);
}

.site-header--home .site-header__social--bar {
  display: flex;
  flex-shrink: 0;
}

.site-header--home .site-header__social--bar a {
  width: auto;
  height: auto;
  border: none;
  padding: 0;
}

.site-header--home .site-header__social--bar img {
  width: clamp(1.75rem, 4.2vw, 2.35rem);
  height: clamp(1.75rem, 4.2vw, 2.35rem);
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.site-header--home .site-header__cta--bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.55rem, 1.8vw, 0.6875rem);
  padding-inline: clamp(var(--space-2), 2vw, var(--space-4));
  margin-right: 50px;
}

.site-header--home .site-header__lang--bar {
  display: flex;
  flex-shrink: 0;
  font-size: clamp(0.55rem, 1.8vw, 0.6875rem);
}

.site-header--home .nav .site-header__social a {
  width: auto;
  height: auto;
  border: none;
}

.site-header--home .nav .site-header__social img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.site-header__spacer {
  flex: 1 1 auto;
  min-width: var(--space-2);
  pointer-events: none;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--color-white);
  text-decoration: none;
  text-shadow: 2px 2px 0 var(--color-purple-dark);
  white-space: nowrap;
}

.logo--compact {
  color: var(--color-orange-soft);
  text-shadow: none;
  font-size: clamp(1.05rem, 2.8vw, 1.45rem);
}

.logo--compact:hover {
  color: var(--color-yellow-light);
}

.site-header__inner>.logo {
  flex-shrink: 0;
}

.logo:hover {
  color: var(--color-yellow-light);
}

.logo:focus-visible {
  outline-color: var(--color-yellow);
}

.site-header__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.site-header__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 2px solid var(--color-orange-soft);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast);
}

.site-header__social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-yellow-light);
  transform: scale(1.06);
}

.site-header__social img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-header__social--bar {
  display: none;
}

@media (min-width: 900px) {
  .site-header__social--bar {
    display: flex;
  }
}

.site-header__cta {
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white) !important;
  background: var(--gradient-header-cta);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.site-header__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.site-header__cta--bar {
  display: none;
}

@media (min-width: 900px) {
  .site-header__cta--bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.site-header__lang {
  display: none;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-header__lang--bar {
  display: none;
}

@media (min-width: 900px) {
  .site-header__lang--bar {
    display: flex;
  }
}

.site-header__lang a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.site-header__lang a:hover {
  color: var(--color-yellow-light);
}

.site-header__lang-disabled {
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
}

.site-header__lang-sep {
  color: rgba(255, 255, 255, 0.4);
  user-select: none;
}

.site-header__lang a.is-active {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header__badge {
  display: none;
}

.nav__extras {
  display: none;
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav.is-open .nav__extras {
  display: block;
}

@media (min-width: 900px) {
  .nav__extras {
    display: none !important;
  }
}

.nav__extras .site-header__social {
  justify-content: center;
  margin-bottom: var(--space-4);
}

.nav__extras .site-header__cta {
  display: flex !important;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
  margin-bottom: var(--space-4);
  justify-content: center;
}

.nav__extras .site-header__lang {
  display: flex !important;
  justify-content: center;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-orange-soft);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

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

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

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

/* Home: ícone hamburger.png com transição para “X” */
.nav-toggle--with-icon {
  position: relative;
}

.nav-toggle__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 22px;
}

.nav-toggle__img {
  display: block;
  width: 28px;
  height: auto;
  grid-area: 1 / 1;
  transition: opacity var(--transition-base);
}

.nav-toggle__bars {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav-toggle--with-icon .nav-toggle__bars .nav-toggle__bar {
  width: 26px;
}

.nav-toggle--with-icon[aria-expanded="true"] .nav-toggle__img {
  opacity: 0;
  pointer-events: none;
}

.nav-toggle--with-icon[aria-expanded="true"] .nav-toggle__bars {
  opacity: 1;
  pointer-events: auto;
}

.nav-toggle--with-icon[aria-expanded="true"] .nav-toggle__bars .nav-toggle__bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle--with-icon[aria-expanded="true"] .nav-toggle__bars .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle--with-icon[aria-expanded="true"] .nav-toggle__bars .nav-toggle__bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-header--home .nav-toggle {
    display: flex;
  }
}

.nav {
  display: none;
}

.nav.is-open {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--color-header-purple);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
}

.site-header--home>.nav.is-open {
  padding: 0;
}

.site-header--home>.nav.is-open .nav__panel {
  padding-block: var(--space-4);
}

/* Home: drawer lateral (gradiente, 17vw) */
.site-header--home > .nav.nav--drawer {
  display: none;
}

.site-header--home > .nav.nav--drawer.is-open {
  display: block;
  position: fixed;
  inset: 0 0 0 auto;
  left: auto;
  top: 0;
  right: 0;
  width: 17vw;
  height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  background: var(--nav-drawer-gradient);
  box-shadow: var(--shadow-md);
  z-index: 1;
  overflow-x: hidden;
  overflow-y: auto;
}

.site-header--home > .nav.nav--drawer .nav__panel {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-2) var(--space-6)  var(--space-6);
  min-height: 100%;
  max-width: none;
  width: 100%;
  margin: 0;
  color: #ffffff;
}

.site-header--home > .nav.nav--drawer .nav__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.site-header--home > .nav.nav--drawer .nav__logo {
  display: block;
  flex: 0 1 auto;
  line-height: 0;
}

.site-header--home > .nav.nav--drawer .nav__logo img {
  width: 88px;
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header--home > .nav.nav--drawer .nav__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: calc(var(--space-1) * -1) 0 0 calc(var(--space-2) * -1);
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  color: #ffffff;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.site-header--home > .nav.nav--drawer .nav__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header--home > .nav.nav--drawer .nav__close:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
}

.site-header--home > .nav.nav--drawer .nav__list--grouped {
  gap: var(--space-6);
}

.site-header--home > .nav.nav--drawer .nav__group {
  list-style: none;
}

.site-header--home > .nav.nav--drawer .nav__group-title {
  display: block;
  margin: 0 0 var(--space-2);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.site-header--home > .nav.nav--drawer .nav__sub {
  list-style: none;
  margin: 0;
  padding: 0 0 0 var(--space-2);
}

.site-header--home > .nav.nav--drawer .nav__sub > li {
  margin: 0;
}

.site-header--home > .nav.nav--drawer .nav__sub .nav__link {
  padding: var(--space-2) var(--space-2);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
  hyphens: auto;
  color: #ffffff;
  border-radius: var(--radius-sm);
}

.site-header--home > .nav.nav--drawer .nav__sub .nav__link:hover,
.site-header--home > .nav.nav--drawer .nav__sub .nav__link:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.site-header--home > .nav.nav--drawer .nav__sub .nav__link--active {
  background: rgba(0, 0, 0, 0.18);
  color: #ffffff;
}

.site-header--home > .nav.nav--drawer .nav__sub .nav__link--active:hover {
  background: rgba(0, 0, 0, 0.24);
  color: #ffffff;
}

.site-header--home > .nav.nav--drawer .nav__finder {
  margin-top: auto;
  padding: var(--space-4) var(--space-2) 0;
  text-decoration: none;
  color: #ffffff;
  display: block;
}

.site-header--home > .nav.nav--drawer .nav__finder-title,
.site-header--home > .nav.nav--drawer .nav__finder-text {
  margin: 0;
  color: #ffffff;
}

.site-header--home > .nav.nav--drawer .nav__finder-title {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.site-header--home > .nav.nav--drawer .nav__finder-text {
  margin-top: var(--space-1);
  font-size: 0.8rem;
  font-weight: 700;
}

.site-header--home > .nav.nav--drawer .nav__finder img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-top: var(--space-2);
}

@media (min-width: 900px) {
  .nav {
    display: block;
    position: static;
    background: transparent;
    padding: 0;
    box-shadow: none;
    margin-left: var(--space-2);
  }

  .site-header--home > .nav.nav--drawer {
    display: none;
    position: fixed;
    inset: 0 0 0 auto;
    width: 17vw;
    margin-left: 0;
    background: var(--nav-drawer-gradient);
    padding: 0;
    box-shadow: var(--shadow-md);
  }

  .site-header--home > .nav.nav--drawer.is-open {
    display: block;
  }
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

@media (min-width: 900px) {
  .nav__list {
    flex-direction: row;
    align-items: center;
    gap: var(--space-1);
  }

  .site-header--home .nav.nav--drawer .nav__list--grouped {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-6);
  }
}

.nav__link {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav__link:hover {
  color: var(--color-yellow-light);
  background: rgba(255, 255, 255, 0.08);
}

.nav__link--active {
  background: var(--color-magenta);
  color: var(--color-white);
}

.nav__link--active:hover {
  color: var(--color-white);
  background: #a0144b;
}

#inicio,
#sobre,
#produtos,
#contato,
#contato-title,
#a-fruta-norte,
#sobre-a-fruta-norte,
#de-onde-vem-o-acai,
#qualidade,
#sobre-onde-encontrar,
#linha-500g,
#linha-1kg,
#linha-3-6kg,
#linha-5kg,
#linha-10kg {
  scroll-margin-top: calc(var(--header-height) + var(--space-8));
}

/* ——— Botões ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast),
    box-shadow var(--transition-fast), color var(--transition-fast);
}

.btn:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: var(--shadow-colored);
}

.btn--primary:hover {
  background: var(--color-orange-hover);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 3px solid var(--color-white);
}

.btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-purple);
}

.btn--dark {
  background: var(--color-purple);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-purple-dark);
  color: var(--color-white);
}

/* ——— Divisores de seção — ondas PNG ——— */
/* ——— Divisores de seção — ONDAS SVG REFACTOR (SEAMLESS TILING) ——— */
.section-divider {
  position: relative;
  overflow: hidden;
}

.section-divider--waves {
  width: 100%;
  height: 139px;
  line-height: 0;
  z-index: var(--z-section-divider-waves);
  margin-top: -120px;
  margin-bottom: -70px;
  pointer-events: none;
}

/* Divisor acima da seção "Sobre": abaixo da onda fixa */
.section-divider--waves-order-1 {
  z-index: 120;
}

/* Ajuste de empilhamento para transição após "Apresentação" */
.section-divider--waves-order-5 {
  z-index: 135;
}

/* Ondas entre rodapé e Contato: acima de .section--contato (z-index 146); invadem a faixa inferior do contato */
.section-divider--waves-order-4 {
  z-index: 147;
  margin-top: clamp(-245px, calc(-20vw - 50px), -218px);
}

/* Ondas entre Produtos e Contato: acima do bloco .section--produtos (z-index 140) */
.section-divider--waves-before-contato {
  z-index: 145;
}

.section-divider--flip {
  transform: rotate(180deg);
}

.section-divider__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  background-size: 1600px 140px;
  /* Ciclo fixo para garantir continuidade */
  animation: wave-scroll linear infinite;
}

/* Camada 1: #fcaf21 - Médio-Longo (2 ondas / 1600px) */
.section-divider__wave--1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 140' preserveAspectRatio='none'%3E%3Cpath fill='%23fcaf21' d='M0,70 C150,70 250,20 400,20 C550,20 650,70 800,70 C950,70 1050,120 1200,120 C1350,120 1450,70 1600,70 V140 H0 Z'/%3E%3C/svg%3E");
  animation-duration: 30s;
  z-index: 5;
}

/* Camada 2: #eb1241 */
.section-divider__wave--2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 140' preserveAspectRatio='none'%3E%3Cpath fill='%23eb1241' d='M0,80 C150,80 250,35 400,35 C550,35 650,80 800,80 C950,80 1050,115 1200,115 C1350,115 1450,80 1600,80 V140 H0 Z'/%3E%3C/svg%3E");
  animation-duration: 45s;
  animation-direction: reverse;
  z-index: 4;
}

/* Camada 3: #913c8e */
.section-divider__wave--3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 140' preserveAspectRatio='none'%3E%3Cpath fill='%23913c8e' d='M0,60 C150,60 250,10 400,10 C550,10 650,60 800,60 C950,60 1050,100 1200,100 C1350,100 1450,60 1600,60 V140 H0 Z'/%3E%3C/svg%3E");
  animation-duration: 40s;
  z-index: 3;
}

/* Camada 4: #faebc8 */
.section-divider__wave--4 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 140' preserveAspectRatio='none'%3E%3Cpath fill='%23faebc8' d='M0,100 C150,100 250,45 400,45 C550,45 650,100 800,100 C950,100 1050,130 1200,130 C1350,130 1450,100 1600,100 V140 H0 Z'/%3E%3C/svg%3E");
  animation-duration: 55s;
  z-index: 2;
}

/* Camada 5: #cfdd3a */
.section-divider__wave--5 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 140' preserveAspectRatio='none'%3E%3Cpath fill='%23cfdd3a' d='M0,50 C150,50 250,0 400,0 C550,0 650,50 800,50 C950,50 1050,140 1200,140 C1350,140 1450,50 1600,50 V140 H0 Z'/%3E%3C/svg%3E");
  animation-duration: 85s;
  animation-direction: reverse;
  z-index: 1;
}

@keyframes wave-scroll {
  from {
    background-position-x: 0;
  }

  to {
    background-position-x: -1600px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-divider__wave {
    animation: none;
  }
}

/* ——— Acessibilidade ——— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Hero / carrossel ——— */
.hero {
  position: relative;
  color: var(--color-white);
}

.hero.hero--home {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero--home .hero__carousel {
  display: flex;
  flex-direction: column;
  min-height: 720px;
}

.hero__carousel {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.hero__slides {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: inherit;
}

.hero--home .hero__slides {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero__slide--video {
  overflow: hidden;
  max-width: 100%;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.hero__slide--image {
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 1024px) {
  .hero--home .hero__carousel,
  .hero__carousel {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .hero.hero--home {
    width: 100%;
    margin-bottom: 24px;
  }

  .hero--home .hero__carousel,
  .hero__carousel {
    min-height: clamp(460px, 80vh, 760px);
    aspect-ratio: 9 / 16;
  }

  .hero__slides,
  .hero__slide {
    height: 100%;
  }

  .hero__video {
    object-position: center top;
  }
}

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

.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(61, 26, 74, 0.88) 0%,
      rgba(92, 45, 110, 0.55) 45%,
      rgba(217, 79, 43, 0.35) 100%);
}

.hero__slide--vivid .hero__slide-bg::after {
  background: linear-gradient(180deg,
      rgba(15, 8, 25, 0.25) 0%,
      rgba(63, 35, 79, 0.35) 100%);
}

.hero__slide-bg--g1 {
  background-color: #2a1035;
  background-image: radial-gradient(circle at 20% 30%, #e91e8c 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, #00e5ff 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, #ffeb3b 0%, transparent 35%),
    linear-gradient(125deg, #5c1a4a 0%, #1a237e 50%, #c2185b 100%);
}

.hero__slide-bg--g2 {
  background-color: #1a0a24;
  background-image: radial-gradient(circle at 70% 40%, #ff5722 0%, transparent 42%),
    radial-gradient(circle at 15% 70%, #7c4dff 0%, transparent 38%),
    linear-gradient(160deg, #880e4f 0%, #004d40 55%, #f57f17 100%);
}

.hero__slide-bg--g3 {
  background-color: #12081c;
  background-image: radial-gradient(circle at 50% 10%, #ff4081 0%, transparent 50%),
    radial-gradient(circle at 10% 40%, #18ffff 0%, transparent 45%),
    linear-gradient(95deg, #4a148c 0%, #b71c1c 100%);
}

.hero__slide-bg--g4 {
  background-color: #1b0d28;
  background-image: radial-gradient(circle at 85% 75%, #cddc39 0%, transparent 40%),
    radial-gradient(circle at 30% 25%, #e040fb 0%, transparent 42%),
    linear-gradient(200deg, #311b92 0%, #d84315 100%);
}

.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  min-height: min(78vh, 600px);
  padding-block: var(--space-8);
  padding-inline: var(--space-4);
  max-width: var(--container-max);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .hero__visual {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    padding-inline: var(--space-8);
  }
}

.hero__product {
  flex: 0 1 auto;
  width: min(42vw, 220px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(12px 18px 24px rgba(0, 0, 0, 0.45));
  transform: rotate(-8deg);
}

@media (min-width: 768px) {
  .hero__product {
    width: min(36vw, 280px);
  }
}

.hero__headline {
  flex: 1 1 280px;
  text-align: center;
  max-width: 20ch;
}

@media (min-width: 768px) {
  .hero__headline {
    text-align: left;
  }
}

.hero__title--brush {
  font-family: var(--font-hero-brush);
  font-size: clamp(2.5rem, 8vw, 4.75rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
  color: var(--color-white);
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
  letter-spacing: 0.02em;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(85vh, 640px);
  padding-block: var(--space-12);
  padding-inline: var(--space-4);
  max-width: var(--container-max);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .hero__content {
    padding-inline: var(--space-8);
  }
}

.hero__tag {
  display: inline-block;
  align-self: flex-start;
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-4);
  background: var(--color-magenta);
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  margin-bottom: var(--space-4);
  text-shadow: 3px 3px 0 var(--color-purple-dark);
  max-width: 14ch;
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  max-width: 36ch;
  margin-bottom: var(--space-8);
  opacity: 0.95;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero__btn-prev,
.hero__btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-hero-controls);
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1;
  transition: color var(--transition-fast), transform var(--transition-fast);
  pointer-events: auto;
  touch-action: manipulation;
}

.hero__btn-prev {
  left: var(--space-2);
}

.hero__btn-next {
  right: var(--space-2);
}

@media (min-width: 768px) {
  .hero__btn-prev {
    left: var(--space-6);
  }

  .hero__btn-next {
    right: var(--space-6);
  }
}

.hero__btn-prev:hover,
.hero__btn-next:hover {
  color: var(--color-yellow-light);
  transform: translateY(-50%) scale(1.12);
}

.hero__btn-prev:focus-visible,
.hero__btn-next:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

  .hero__btn-prev:hover,
  .hero__btn-next:hover {
    transform: translateY(-50%);
  }
}

.hero__dots {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-hero-controls);
  display: flex;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast),
    border-color var(--transition-fast);
}

.hero__dot[aria-current="true"] {
  background: var(--color-white);
  border-color: var(--color-white);
  transform: scale(1.35);
}

.hero__dot:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
}

/* ——— Seções genéricas ——— */
.section {
  padding-block: var(--space-12);
}

.section--cream {
  background: var(--color-bg);
}

.section--sobre {
  position: relative;
  z-index: 130;
  min-height: 88vh;
  background: #faf2dc;
  padding-block: 0 var(--space-12);
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--produtos {
  position: relative;
  z-index: 140;
  padding-block: 0;
  padding-bottom: 100px;
}

.sobre__top-wave {
  position: relative;
  z-index: 140;
  width: 100%;
  height: clamp(36px, 5vw, 72px);
  background-image: url("../assets/images/onda-fixa.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center top;
  margin-top: clamp(-28px, -3vw, -12px);
  margin-bottom: clamp(var(--space-4), 3vw, var(--space-8));
}

.produtos__top-wave {
  position: relative;
  z-index: 140;
  width: 100%;
  height: clamp(36px, 5vw, 72px);
  background-image: url("../assets/images/onda-fixa.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center top;
  margin-top: clamp(-28px, -3vw, -12px);
  
}

.produtos__container {
  width: 100%;
  max-width: none;
  padding-inline: 50px;
}

.produtos__body {
  background: #faf2dc;
  padding-block: 0 var(--space-12);
}

.produtos__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.produtos__title {
  margin-bottom: var(--space-3);
  color: #ed2f59;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.produtos__subtitle {
  max-width: 760px;
  margin-inline: auto;
  color: #ed2f59;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
}

.section--contato {
  position: relative;
  z-index: 146;
  padding-block: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: clamp(640px, 92vh, 1200px);
  margin-bottom: 40px;
}

.contato__top-wave {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 100%;
  height: clamp(36px, 5vw, 72px);
  background-image: url("../assets/images/onda-fixa.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center top;
  margin-top: clamp(-28px, -3vw, -12px);
}

.contato__body {
  background: #faf2dc;
  padding-top: 0;
  /* Espaço extra para as ondas do rodapé invadirem por cima da área creme, sem encostar no formulário */
  padding-bottom: calc(var(--space-12) + clamp(44px, 9vw, 100px) + 48px);
  position: relative;
  z-index: 1;
  overflow: visible;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contato__container {
  flex: 0 0 auto;
  text-align: center;
}

.contato__header {
  margin-bottom: var(--space-6);
}

.contato__title {
  margin-bottom: var(--space-3);
  color: #ed2f59;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.65rem, 3.8vw, 2.75rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.contato__subtitle {
  max-width: 760px;
  margin-inline: auto;
  color: #ed2f59;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
}

.contato__split {
  --contato-img-bleed: clamp(72px, 10vw, 160px);
  --contato-figure-shift-down: clamp(56px, 9vw, 120px);
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, min(46vw, 520px)) min(min(92vw, 420px), 100%) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  gap: clamp(0.5rem, 1.5vw, 1.25rem);
  align-items: stretch;
  align-content: stretch;
  margin-top: var(--space-2);
  position: relative;
  z-index: 2;
  padding-left: 0;
  padding-right: var(--space-4);
  text-align: start;
}

@media (min-width: 768px) {
  .contato__split {
    padding-right: max(var(--space-8), calc((100vw - var(--container-max)) / 2 + var(--space-8)));
  }
}

.contato__figure {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 3;
  margin: 0;
  margin-top: calc(-1 * var(--contato-img-bleed) + var(--contato-figure-shift-down));
  padding: 0;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  min-height: 0;
  height: calc(100% + var(--contato-img-bleed));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.contato__figure-img {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: 0;
  object-fit: contain;
  object-position: left bottom;
}

.contato__form-column {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  justify-self: center;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contato__split-spacer {
  grid-column: 3;
  grid-row: 1;
  min-width: 0;
}

.contato__form-wrap {
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
}

.contato__form.form {
  max-width: none;
  margin-inline: 0;
}

.contato__form .form__group {
  margin-bottom: var(--space-3);
}

.contato__form .form__group input:not(.contato__attachments-input),
.contato__form .form__group textarea,
.contato__form .form__group select {
  padding: 6px 10px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.contato__form .form__group input:not(.contato__attachments-input)::placeholder,
.contato__form .form__group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}

.contato__form .form__group textarea {
  min-height: 88px;
}

.contato__form .form__checkbox {
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.contato__consent-label {
  margin-bottom: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-purple-dark);
  cursor: pointer;
}

.contato__consent-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contato__consent-link:hover,
.contato__consent-link:focus-visible {
  color: var(--color-purple);
}

.contato__form-wrap .form-status {
  margin-bottom: var(--space-3);
  padding: var(--space-3);
  font-size: 0.875rem;
}

.contato__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
}

.contato__attachments-label {
  display: block;
  margin-bottom: var(--space-1);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text, #1a1a1a);
}

.contato__attachments-input {
  position: fixed !important;
  top: 0 !important;
  left: -9999px !important;
  width: 1px !important;
  max-width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%) !important;
  white-space: nowrap;
  border: 0 !important;
}

.contato__attachments-hint {
  margin: var(--space-1) 0 var(--space-2);
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(26, 26, 26, 0.72);
}

.contato__attachments-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contato__attachments-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contato__attachments-item:last-child {
  border-bottom: none;
}

.contato__attachments-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contato__attachments-remove {
  flex-shrink: 0;
  padding: 0.25rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #b42318;
  background: transparent;
  border: 1px solid rgba(180, 35, 24, 0.35);
  border-radius: var(--radius-sm, 4px);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.contato__attachments-remove:hover {
  background: rgba(180, 35, 24, 0.08);
}

.contato__attachments-remove:focus-visible {
  outline: 2px solid rgba(180, 35, 24, 0.45);
  outline-offset: 2px;
}

.contato__form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: stretch;
  margin-top: var(--space-2);
}

.contato__form-actions .contato__attach-btn {
  flex: 1 1 140px;
}

.contato__form-actions .contato__submit {
  flex: 1 1 160px;
}

.contato__attach-btn {
  margin-top: 0;
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #2d6a4f;
  background: #fff;
  border: 2px solid #4bba79;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast);
}

.contato__attach-btn:hover {
  background: rgba(75, 186, 121, 0.12);
}

.contato__attach-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(75, 186, 121, 0.35);
}

.contato__submit {
  width: 100%;
  margin-top: 0;
  padding: var(--space-2) var(--space-6);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  background-color: #4bba79;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(75, 186, 121, 0.35);
  transition: background-color var(--transition-fast), transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.contato__submit:hover {
  background-color: #3da066;
  box-shadow: 0 6px 18px rgba(75, 186, 121, 0.45);
}

.contato__submit:active {
  transform: translateY(1px);
}

.contato__submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(75, 186, 121, 0.45), 0 4px 14px rgba(75, 186, 121, 0.35);
}

.contato__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.produtos__content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 32px);
}

.produto-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 468px;
  border-radius: 22px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 18px 20px 116px;
  margin-bottom: 50px;
  overflow: visible;
  box-shadow: 0 10px 26px rgba(48, 17, 44, 0.2);
}

.produto-card--banana {
  background-image: url("../assets/images/box-banana.png");
}

.produto-card--morango {
  background-image: url("../assets/images/box-morango.png");
}

.produto-card--tradicional {
  background-image: url("../assets/images/box-tradicional.png");
}

.produto-card__header {
  min-height: 122px;
  border-radius: 20px;
  padding: 0;
}

.produto-card__header strong {
  display: block;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.produto-card__description {
  margin-top: 8px;
  color: #fff;
  font-size: clamp(0.93rem, 1.25vw, 1.03rem);
  line-height: 1.45;
}

.produto-card__button {
  align-self: flex-start;
  border: 0;
  border-radius: 999px;
  background: #ef4b37;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.1;
  padding: 13px 18px;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.produto-card__button:hover,
.produto-card__button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.produto-card__button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.produto-card__pote {
  position: absolute;
  left: 50%;
  bottom: -84px;
  width: min(280px, 85%);
  transform: translateX(-50%);
  pointer-events: none;
}

.produto-card--placeholder {
  min-height: 468px;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.produto-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 999;
}

.produto-modal.is-open {
  display: flex;
}

.produto-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 10, 32, 0.7);
}

.produto-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: 88vh;
  overflow: auto;
  border-radius: 20px;
  background: #fff6e8;
  padding: 24px 22px 20px;
  z-index: 1;
}

.produto-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #5b2f61;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.produto-modal__title {
  margin: 0 26px 14px 0;
  color: #5b2f61;
  font-size: 1.5rem;
}

.produto-modal__content p {
  margin: 0 0 12px;
  color: #5b2f61;
  font-weight: 700;
}

.produto-modal__nutrition {
  color: #5b2f61;
}

.produto-modal__content .produto-modal__nutrition-title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.produto-modal__nutrition-serving {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0d8ad;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.produto-modal__content .produto-modal__nutrition-serving p {
  margin: 0 0 6px;
  font-weight: 600;
}

.produto-modal__nutrition-serving p:last-child {
  margin-bottom: 0;
}

.produto-modal__content .produto-modal__nutrition-subtitle {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.produto-modal__content .produto-modal__nutrition-legal {
  margin: 14px 0 0;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.45;
  color: #6a4a6f;
}

.produto-modal__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.produto-modal__table th,
.produto-modal__table td {
  border: 1px solid #f0d8ad;
  padding: 10px 12px;
  text-align: left;
  font-size: 0.95rem;
}

.produto-modal__table thead th {
  background: #ef4b37;
  color: #fff;
}

.produto-modal__table tbody tr:nth-child(even) {
  background: #fff4df;
}

.produto-modal__table--nutrition {
  table-layout: fixed;
}

.produto-modal__table--nutrition th:first-child,
.produto-modal__table--nutrition td:first-child {
  width: 46%;
  word-break: break-word;
  hyphens: auto;
}

.produto-modal__table--nutrition th:nth-child(2),
.produto-modal__table--nutrition td:nth-child(2) {
  width: 36%;
}

.produto-modal__table--nutrition th:last-child,
.produto-modal__table--nutrition td:last-child {
  width: 18%;
  text-align: right;
  white-space: nowrap;
}

.produto-modal__table--nutrition thead th {
  font-size: 0.78rem;
  line-height: 1.3;
  vertical-align: bottom;
}

.produto-modal__table--nutrition tbody td {
  font-size: 0.88rem;
  line-height: 1.35;
}

.produto-modal__th-vd {
  text-align: right;
}

.produto-modal__table-row--indent td:first-child {
  padding-left: 22px;
  font-size: 0.85rem;
}

.sobre__container {
  width: 100%;
  max-width: none;
  padding-inline: 50px;
}

.sobre__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.sobre__title {
  margin-bottom: var(--space-3);
  color: #ed2f59;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.sobre__subtitle {
  max-width: 760px;
  margin-inline: auto;
  color: #ed2f59;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
}

.sobre__content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: stretch;
  gap: clamp(var(--space-4), 2vw, var(--space-8));
  min-height: clamp(470px, 62vh, 680px);
}

.sobre__media {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  min-height: 100%;
}

.sobre__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sobre__text-wrap {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  min-height: 100%;
}

.sobre__text {
  height: 100%;
  max-height: clamp(430px, 58vh, 620px);
  overflow-y: auto;
  scroll-behavior: smooth;
  padding-right: var(--space-2);
  color: #000000;
  scrollbar-gutter: stable;
  scrollbar-width: auto;
  scrollbar-color: #f04c4e #f5e3b3;
}

.sobre__text::-webkit-scrollbar {
  width: 12px;
}

.sobre__text::-webkit-scrollbar-track {
  background: #f5e3b3;
  border-radius: 12px;
}

.sobre__text::-webkit-scrollbar-thumb {
  background: #f04c4e;
  border-radius: 12px;
}

.sobre__chapter {
  margin-bottom: var(--space-8);
  scroll-margin-top: calc(var(--header-height) + var(--space-8));
}

.sobre__chapter:last-child {
  margin-bottom: var(--space-2);
}

.sobre__chapter h3 {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: #4b1f48;
  margin-bottom: var(--space-3);
}

.sobre__chapter p {
  margin-bottom: var(--space-4);
}

.sobre__stores {
  display: grid;
  gap: var(--space-4);
}

.sobre__stores-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: #4b1f48;
}

.sobre__stores-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(75, 31, 72, 0.22);
  border-top-color: #4b1f48;
  border-radius: 50%;
  animation: sobre-stores-spin 0.8s linear infinite;
}

@keyframes sobre-stores-spin {
  to {
    transform: rotate(360deg);
  }
}

.sobre__stores-network {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  color: #4b1f48;
}

.sobre__stores-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.sobre__stores-item {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(75, 31, 72, 0.18);
  border-radius: 12px;
  padding: var(--space-3);
  display: grid;
  gap: 0.2rem;
}

.sobre__stores-name {
  font-weight: 700;
  color: #361234;
}

.sobre__stores-address {
  color: #4b1f48;
}

.sobre__stores-map {
  width: fit-content;
  text-decoration: none;
  font-weight: 700;
  color: #f04c4e;
}

.sobre__stores-map:hover {
  text-decoration: underline;
}

.sobre__stores-map:focus-visible {
  outline: 2px solid #f04c4e;
  outline-offset: 3px;
  border-radius: 4px;
}

.sobre__stores-empty {
  margin: 0;
  font-weight: 700;
  color: #4b1f48;
}

.sobre__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-self: center;
  width: 100%;
}

.sobre__nav-btn {
  width: 100%;
  height: 72px;
  min-height: 72px;
  padding: var(--space-3) var(--space-4);
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  display: grid;
  place-items: center;
  place-content: center;
  text-align: center;
  justify-items: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  box-shadow: none;
  transition: filter var(--transition-fast);
}

.sobre__nav-label {
  display: block;
  transform: translateY(7px);
}

.sobre__nav-btn--1 {
  background-image: url("../assets/images/bot1.png");
}

.sobre__nav-btn--2 {
  background-image: url("../assets/images/bot2.png");
}

.sobre__nav-btn--3 {
  background-image: url("../assets/images/bot3.png");
}

.sobre__nav-btn--4 {
  background-image: url("../assets/images/bot4.png");
}

.sobre__nav-btn:hover {
  filter: brightness(1.05);
}

.sobre__nav-btn:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .section--sobre {
    min-height: auto;
    padding-bottom: var(--space-8);
  }

  .sobre__content {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: var(--space-6);
  }

  .sobre__nav {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 72px;
    align-self: stretch;
  }

  .sobre__text-wrap {
    order: 2;
  }

  .sobre__text {
    max-height: clamp(280px, 40vh, 420px);
  }

  .sobre__media {
    order: 3;
    min-height: clamp(260px, 38vh, 420px);
  }
}

@media (max-width: 640px) {
  .site-header--home .site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "logo center menu"
      "social social social";
    align-items: center;
    gap: var(--space-2);
    row-gap: var(--space-3);
    padding-block: var(--space-2);
    min-height: calc(var(--header-height) + 28px);
  }

  .site-header--home .site-header__left,
  .site-header--home .site-header__right {
    display: contents;
  }

  .site-header__logo-inicio {
    grid-area: logo;
    margin-right: 0;
  }

  .site-header__logo-inicio img {
    max-width: min(34vw, 8rem);
  }

  .site-header--home .site-header__social--bar {
    grid-area: social;
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    width: 100%;
  }

  .site-header__logo-centro {
    grid-area: center;
    justify-self: center;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: clamp(78px, 24vw, 118px);
    max-width: none;
    z-index: 0;
  }

  .site-header__logo-centro:hover {
    transform: scale(1.02);
  }

  .site-header--home .nav-toggle {
    grid-area: menu;
    justify-self: end;
  }

  .site-header--home .site-header__cta--bar {
    display: none !important;
  }

  .site-header--home>.nav.nav--drawer.is-open {
    width: min(86vw, 340px);
  }

  .section--sobre {
    padding-bottom: var(--space-6);
  }

  .section--produtos {
    padding-bottom: clamp(132px, 24vw, 190px);
  }

  .section--contato {
    min-height: clamp(480px, 88vh, 860px);
    padding-bottom: var(--space-6);
  }

  .sobre__top-wave {
    height: clamp(28px, 10vw, 44px);
    margin-bottom: var(--space-4);
    /* margin-top: 30px; */
  }

  .produtos__top-wave {
    height: clamp(28px, 10vw, 44px);
    margin-bottom: var(--space-4);
    margin-top: 30px;
  }

  .contato__top-wave {
    height: clamp(28px, 10vw, 44px);
    margin-bottom: var(--space-4);
    margin-top: 30px;
  }

  .site-footer__top-wave {
    height: clamp(32px, 12vw, 56px);
    margin-top: 30px;
  }

  .sobre__header {
    margin-bottom: var(--space-6);
  }

  .sobre__title {
    font-size: clamp(1.7rem, 9.6vw, 2.45rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .produtos__title {
    font-size: clamp(1.7rem, 9.6vw, 2.45rem);
    line-height: 1.08;
    margin-top: var(--space-6);
    overflow-wrap: anywhere;
  }

  .contato__title {
    font-size: clamp(1.4rem, 7.4vw, 2rem);
    line-height: 1.08;
    margin-top: var(--space-6);
    overflow-wrap: anywhere;
  }

  .sobre__subtitle {
    font-size: 0.98rem;
  }

  .produtos__subtitle {
    font-size: 0.98rem;
  }

  .contato__subtitle {
    font-size: 0.98rem;
  }

  .contato__split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-6);
    padding-inline: var(--space-4);
    margin-top: var(--space-4);
  }

  .contato__split-spacer {
    display: none;
  }

  .contato__figure {
    grid-column: 1;
    grid-row: 2;
    margin-top: var(--space-2);
    justify-self: stretch;
    width: 100%;
    max-width: none;
    min-height: clamp(240px, 52vw, 360px);
    height: auto;
    display: flex;
    flex-direction: column;
    align-self: end;
    justify-content: flex-end;
  }

  .contato__figure-img {
    width: min(100%, 360px);
    flex: 0 0 auto;
    min-height: clamp(240px, 52vw, 360px);
    height: clamp(240px, 52vw, 360px);
    margin-inline: auto;
    object-fit: contain;
    object-position: center bottom;
    transform: translateY(37%);
  }

  .contato__form-column {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .contato__form-wrap {
    max-width: none;
    padding-inline: var(--space-1);
  }

  .contato__form .form__group input:not(.contato__attachments-input),
  .contato__form .form__group textarea,
  .contato__form .form__group select {
    padding: 10px 12px;
  }

  .contato__form-row {
    grid-template-columns: 1fr;
  }

  .contato__form-actions {
    flex-direction: column;
    gap: var(--space-2);
  }

  .contato__form-actions .contato__attach-btn,
  .contato__form-actions .contato__submit {
    flex: 1 1 auto;
    width: 100%;
  }

  .produtos__content {
    grid-template-columns: 1fr;
    row-gap: clamp(86px, 18vw, 112px);
  }

  .produto-card {
    min-height: 436px;
    padding-inline: 16px;
    padding-bottom: 102px;
    margin-bottom: 0;
  }

  .produto-card:last-child {
    margin-bottom: 0;
  }

  .produto-card__header {
    min-height: 112px;
    padding: 18px 14px 12px;
  }

  .produto-card__pote {
    width: min(240px, 80%);
  }

  .produto-card--placeholder {
    display: none;
  }

  .produto-modal__dialog {
    padding: 18px 16px;
  }

  .produto-modal__table th,
  .produto-modal__table td {
    padding: 8px;
    font-size: 0.85rem;
  }

  .produto-modal__table--nutrition th:first-child,
  .produto-modal__table--nutrition td:first-child {
    width: auto;
  }

  .produto-modal__table--nutrition th:nth-child(2),
  .produto-modal__table--nutrition td:nth-child(2) {
    width: auto;
  }

  .produto-modal__table--nutrition th:last-child,
  .produto-modal__table--nutrition td:last-child {
    width: 3.2rem;
  }

  .produto-modal__table--nutrition thead th {
    font-size: 0.68rem;
  }

  .produto-modal__table--nutrition tbody td {
    font-size: 0.78rem;
  }

  .produto-modal__content .produto-modal__nutrition-title {
    font-size: 0.92rem;
  }

  .produto-modal__nutrition-serving {
    font-size: 0.8rem;
  }

  .produto-modal__content .produto-modal__nutrition-subtitle {
    font-size: 0.75rem;
  }

  .produto-modal__content .produto-modal__nutrition-legal {
    font-size: 0.68rem;
  }

  .produto-modal__table-row--indent td:first-child {
    padding-left: 14px;
  }

  .sobre__nav {
    grid-template-columns: 1fr;
  }

  .sobre__nav-btn {
    height: 64px;
    min-height: 64px;
    font-size: 0.8rem;
  }

  .sobre__text {
    max-height: 320px;
  }

  .site-footer__body {
    text-align: center;
  }

  .site-footer__grid {
    justify-items: center;
    gap: var(--space-8);
  }

  .site-footer__nav-groups {
    justify-items: center;
  }

  .site-footer__title,
  .site-footer__group-title {
    text-align: center;
  }

  .site-footer__col--nav .site-footer__list {
    list-style: none;
    padding-left: 0;
    text-align: center;
  }

  .site-footer__list--contact {
    max-width: none;
    text-align: center;
  }

  .site-footer__finder {
    margin-inline: auto;
  }

  .site-footer__logos {
    align-items: center;
  }

  .site-footer__social {
    justify-content: center;
  }

  .site-footer__col--seal {
    justify-content: center;
  }
}

@media (max-width: 980px) and (min-width: 641px) {
  .produtos__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .produto-card {
    min-height: 448px;
  }

  .produto-card--placeholder {
    display: none;
  }
}

.section--white {
  background: var(--color-white);
}

.section--purple {
  background: var(--color-purple);
  color: var(--color-white);
}

.section--purple .section__title {
  color: var(--color-white);
  text-shadow: 2px 2px 0 var(--color-purple-dark);
}

.section--purple p {
  color: rgba(255, 255, 255, 0.92);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.section__eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-magenta);
  margin-bottom: var(--space-2);
}

.section--purple .section__eyebrow {
  color: var(--color-yellow);
}

.section__title {
  margin-bottom: var(--space-4);
}

.section__intro {
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

.section--purple .section__intro {
  color: rgba(255, 255, 255, 0.85);
}

/* ——— Grid de features / cards ——— */
.grid-3 {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-border);
  transition: transform var(--transition-base), border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-yellow);
  box-shadow: var(--shadow-colored);
}

@media (prefers-reduced-motion: reduce) {
  .feature-card:hover {
    transform: none;
  }
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-yellow-light), var(--color-yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-card h3 {
  color: var(--color-purple);
  margin-bottom: var(--space-3);
}

/* ——— Cards de produto ——— */
.product-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-purple-dark);
  transition: transform var(--transition-base);
}

.product-card:hover {
  transform: rotate(-1deg) scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .product-card:hover {
    transform: none;
  }
}

.product-card__visual {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg,
      var(--color-purple) 0%,
      var(--color-magenta) 50%,
      var(--color-orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-white);
  text-align: center;
  padding: var(--space-4);
}

.product-card__body {
  padding: var(--space-6);
}

.product-card__meta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: var(--space-2);
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  z-index: 148;
  background: transparent;
}

/* Corpo do rodapé: fundo vermelho só abaixo da onda (a onda fica sem bg por trás) */
.site-footer__body {
  background: #eb1241;
  color: #fff;
  padding-top: clamp(var(--space-4), 3vw, var(--space-8));
  padding-bottom: var(--space-12);
}

.site-footer__top-wave {
  position: relative;
  z-index: 2;
  width: 100%;
  height: clamp(40px, 6vw, 88px);
  background-color: transparent;
  background-image: url("../assets/images/wave-red.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center top;
  margin-top: clamp(-28px, -3vw, -12px);
  margin-bottom: 0;
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.site-footer__grid {
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.15fr 1fr 0.85fr;
    align-items: start;
  }
}

.site-footer__col {
  min-width: 0;  
}

.site-footer__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-4);
}

.site-footer__nav-groups {
  display: grid;
  gap: var(--space-5);
}

.site-footer__group-title {
  margin: 0 0 var(--space-2);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__list li {
  margin-bottom: var(--space-2);
}

.site-footer__list a {
  text-decoration: none;
  font-weight: 600;
}

.site-footer__col--nav .site-footer__list {
  list-style: disc;
  padding-left: 1.1rem;
}

.site-footer__col--nav .site-footer__list li {
  margin-bottom: var(--space-1);
}

.site-footer__col--nav .site-footer__list a {
  line-height: 1.2;
}

.site-footer__col--nav .site-footer__list li::marker {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__finder {
  display: block;
  margin-top: var(--space-6);
  text-decoration: none;
  width: fit-content;
}

.site-footer__finder-title {
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
}

.site-footer__finder-text {
  margin: var(--space-1) 0 var(--space-3);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.site-footer__finder img {
  display: block;
  width: min(160px, 100%);
  height: auto;
}

.site-footer__logos {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.site-footer__logo {
  display: block;
  width: min(240px, 100%);
  height: auto;
}

.site-footer__logo--branca {
  width: min(260px, 100%);
}

.site-footer__list--contact {
  max-width: 32ch;
}

.site-footer__list--contact li {
  font-weight: 600;
  line-height: 1.5;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.site-footer__social a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.site-footer__social img,
.site-footer__social svg {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.site-footer__col--seal {
  display: flex;
  align-self: end;
  align-items: flex-end;
  justify-content: flex-start;
}

.site-footer__seal {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
}

.site-footer__bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.875rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

/* ——— Página interna ——— */
.page-hero {
  background: linear-gradient(135deg, var(--color-purple-dark), var(--color-purple));
  color: var(--color-white);
  padding-block: var(--space-12);
  text-align: center;
}

.page-hero h1 {
  text-shadow: 3px 3px 0 var(--color-purple-dark);
  margin-bottom: var(--space-4);
}

.page-hero p {
  max-width: 560px;
  margin-inline: auto;
  opacity: 0.95;
  font-weight: 600;
}

/* ——— Formulário contato ——— */
.form {
  max-width: 560px;
}

.form__group {
  margin-bottom: var(--space-6);
}

.form__group label {
  display: block;
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-purple-dark);
}

.form__group input:not(.contato__attachments-input),
.form__group textarea,
.form__group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form__group input:not(.contato__attachments-input):focus-visible,
.form__group textarea:focus-visible,
.form__group select:focus-visible {
  outline: none;
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(92, 45, 110, 0.2);
}

.form__group textarea {
  min-height: 160px;
  resize: vertical;
}

.form__hint {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

.form__error {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-red-wave);
  margin-top: var(--space-2);
}

.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.form__checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-status {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 700;
  margin-bottom: var(--space-6);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status--success {
  background: #d4edda;
  color: #155724;
  border: 2px solid #28a745;
}

.form-status--error {
  background: #f8d7da;
  color: #721c24;
  border: 2px solid var(--color-red-wave);
}

/* ——— Animações scroll (classe aplicada via JS) ——— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ——— Utilitários ——— */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-8 {
  margin-bottom: var(--space-8);
}