/* ============================================================
   LAYOUT — header, footer, hero e grids de página
   ============================================================ */

/* --- Barra superior: letreiro (marquee) --------------------- */
.topbar {
  background: var(--c-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  overflow: hidden;
  padding: 6px 0;
  white-space: nowrap;
  position: relative;
}
/* Fade nas pontas */
.topbar::before,
.topbar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.topbar::before {
  left: 0;
  background: linear-gradient(90deg, var(--c-primary) 20%, rgba(11, 125, 240, 0));
}
.topbar::after {
  right: 0;
  background: linear-gradient(270deg, var(--c-primary) 20%, rgba(11, 125, 240, 0));
}
.topbar__track {
  display: flex;
  width: max-content;
  animation: topbar-scroll 32s linear infinite;
}
.topbar:hover .topbar__track { animation-play-state: paused; }
.topbar__group {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding-right: var(--space-5);
  flex-shrink: 0;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar__item svg { opacity: 0.85; flex-shrink: 0; width: 12px; height: 12px; }
.topbar__dot { opacity: 0.45; }
@keyframes topbar-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Wrapper do header não gera caixa própria, para o sticky do
   .header ficar relativo ao body (página inteira), não ao wrapper. */
#site-header { display: contents; }

/* --- Header (pill flutuante, estilo primepeptides) ---------- */
.header {
  position: sticky;
  top: var(--space-3);
  z-index: var(--z-header);
  margin-top: var(--space-3);
  padding-inline: var(--space-4);
  background: transparent;
  color: var(--c-text);
}
/* Sobre o hero escuro: pill vira transparente, logo/itens em branco */
.header--over-hero {
  color: #fff;
}
.header--over-hero .header__inner {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-5);
  height: 62px;
  padding-inline: var(--space-6);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-lg);
  font-weight: var(--fw-extra);
  letter-spacing: var(--tracking-tight);
  flex-shrink: 0;
}
.logo__mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
}
.logo {
  min-width: 0;
}
.logo__img {
  height: 22px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
/* Sobre o hero (escuro), a logo vira branca para leitura */
.header--over-hero .logo__img {
  filter: brightness(0) invert(1);
}
.footer .logo__img { height: 22px; }
.header__search {
  flex: 1;
  max-width: 460px;
}
.header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-6);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}
.header__nav a {
  color: var(--c-text-muted);
  transition: color var(--t);
  position: relative;
}
.header__nav a:hover { color: var(--c-text); }
.header--over-hero .header__nav a { color: rgba(255, 255, 255, 0.75); }
.header--over-hero .header__nav a:hover { color: #fff; }
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex-shrink: 0;
  margin-left: auto;
}
.header__action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  color: var(--c-text);
  transition: background var(--t), color var(--t);
}
.header__action:hover { background: var(--c-surface-2); }
.header--over-hero .header__action { color: #fff; }
.header--over-hero .header__action:hover { background: rgba(255, 255, 255, 0.12); }
.header__count {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--radius-full);
  background: var(--c-primary);
  color: #fff;
  font-size: 11px;
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__count[data-count="0"] { display: none; }
.header__burger { display: none; }
/* Campo de busca escuro apenas sobre o hero */
.header--over-hero .header__search .input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.header--over-hero .header__search .input::placeholder { color: rgba(255, 255, 255, 0.55); }
.header--over-hero .header__search .search__icon { color: rgba(255, 255, 255, 0.6); }

/* Barra de categorias (desktop) */
.catbar {
  border-bottom: 1px solid var(--c-border);
  background: var(--c-surface);
}
.catbar__inner {
  display: flex;
  gap: var(--space-6);
  height: 46px;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  overflow-x: auto;
  scrollbar-width: none;
}
.catbar__inner::-webkit-scrollbar { display: none; }
.catbar a {
  color: var(--c-text-muted);
  white-space: nowrap;
  transition: color var(--t);
}
.catbar a:hover { color: var(--c-primary); }

/* --- Menu mobile -------------------------------------------- */
.mobile-menu__section-title {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-subtle);
  font-weight: var(--fw-bold);
  margin: var(--space-5) 0 var(--space-2);
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu__link:hover { color: var(--c-primary); }

/* --- Hero (imagem de fundo full-bleed) --------------------- */
.hero {
  position: relative;
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.9) 0%,
      rgba(2, 6, 23, 0.72) 38%,
      rgba(2, 6, 23, 0.35) 62%,
      rgba(2, 6, 23, 0.08) 100%
    ),
    url("../imgs/hero.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--c-border);
  color: #fff;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 640px);
  align-items: center;
  min-height: 540px;
  padding-block: var(--space-20);
}
.hero__content { max-width: 600px; }
/* Chip de status (ponto verde) */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 7px 14px 7px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--space-5);
}
.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.28);
}
.hero__title {
  font-size: clamp(2.6rem, 5.6vw, 4rem);
  font-weight: var(--fw-semibold);
  line-height: 1.02;
  letter-spacing: var(--tracking-tighter);
  margin: 0 0 var(--space-5);
  color: #fff;
}
.hero__text {
  font-size: var(--fs-md);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--space-7);
  max-width: 34rem;
}
.hero__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero__actions .btn { padding: 15px 30px; font-size: var(--fs-base); }
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.hero__stars { color: var(--c-star); }
.hero__trust-text { font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.7); }
.hero__trust-text strong { color: #fff; font-weight: var(--fw-semibold); }
.hero__stats {
  display: flex;
  gap: var(--space-7);
  margin-top: var(--space-10);
  padding-top: var(--space-7);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero__stats > div:not(:first-child) {
  padding-left: var(--space-7);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.hero__stat-num {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.hero__stat-label { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.62); margin-top: 2px; }
/* Botão contornado legível sobre o fundo escuro */
.hero .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}
.hero .btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ============================================================
   HERO (dark cinematic, estilo primepeptides.co)
   ============================================================ */
.phero {
  position: relative;
  margin-top: calc(-62px - var(--space-3));
  padding-top: calc(62px + var(--space-3) + var(--space-6));
  padding-bottom: var(--space-8);
  background: radial-gradient(118% 92% at 66% 34%, #172b50 0%, #0b1526 46%, #060a12 100%);
  color: #fff;
  overflow: hidden;
}
.phero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.85fr;
  align-items: center;
  gap: var(--space-8);
  min-height: 560px;
}
.phero__content { max-width: 30rem; }
.phero__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: #5aa9f2;
  margin-bottom: var(--space-4);
}
.phero__title {
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  font-weight: var(--fw-semibold);
  line-height: 1.02;
  letter-spacing: var(--tracking-tighter);
  color: #fff;
}
.phero__text {
  margin-top: var(--space-5);
  font-size: var(--fs-md);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34ch;
}
.phero__cta { margin-top: var(--space-8); }
.phero__product {
  position: relative;
  min-height: 560px;
}
.phero__product::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 125, 240, 0.42), transparent 68%);
  filter: blur(36px);
}
.phero__product img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(540px, 62vw, 880px);
  height: auto;
  max-width: none;
  pointer-events: none;
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.6));
}
.phero__review {
  align-self: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.phero__review .rating__stars { color: rgba(255, 255, 255, 0.18); font-size: var(--fs-base); }
.phero__review .rating__stars::after { color: #5aa9f2; }
.phero__review-text { margin-top: var(--space-3); font-size: var(--fs-sm); line-height: 1.55; color: rgba(255, 255, 255, 0.85); }
.phero__review-author { display: block; margin-top: var(--space-3); font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.5); }

/* Botão pill com seta em círculo (estilo Prime) */
.btn--arrow { padding-right: 6px; gap: var(--space-3); }
.btn__arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.22);
}

/* --- Faixa de diferenciais ---------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.feature {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.feature__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--c-primary);
  color: #fff;
  display: grid;
  place-items: center;
}
.feature__title { font-size: var(--fs-sm); font-weight: var(--fw-bold); }
.feature__text { font-size: var(--fs-xs); color: var(--c-text-muted); }

/* --- Faixa "confiança/qualidade" ---------------------------- */
.trust {
  position: relative;
  overflow: hidden;
  background: var(--c-surface);
  border-block: 1px solid var(--c-border);
}
.trust::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: url("../imgs/lab-bg.jpg") center / cover no-repeat;
  filter: blur(5px);
  z-index: 0;
}
.trust::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 252, 0.55);
  z-index: 0;
}
.trust > .container {
  position: relative;
  z-index: 1;
}
.trust__head {
  max-width: 680px;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.trust__head .section-head__title {
  font-size: var(--fs-4xl);
  margin: var(--space-2) 0 var(--space-3);
}
.trust__lead {
  color: var(--c-text-muted);
  text-align: justify;
  text-align-last: center;
}
.trust__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--space-9) var(--space-6);
  box-shadow: var(--shadow-sm);
}
.trust__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--c-primary);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.28);
}
.trust__icon svg { width: 30px; height: 30px; }
.trust__item-title { font-size: var(--fs-md); font-weight: var(--fw-bold); }
.trust__item-text { font-size: var(--fs-sm); color: #334155; font-weight: var(--fw-medium); max-width: 26ch; }

/* --- Verified Testing --------------------------------------- */
.verified {
  background: linear-gradient(120deg, #0b7df0 0%, #0857b0 100%);
  overflow-x: clip;
  padding-block: var(--space-5);
}
.verified__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.verified__content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}
.verified__titlerow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.verified__badge {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.verified__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-4xl);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
}
.verified__subtitle {
  margin-top: var(--space-5);
  padding-left: calc(44px + var(--space-4));
  text-align: left;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34ch;
}
.verified__points {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding: 0;
  padding-left: calc(44px + var(--space-4));
  list-style: none;
}
.verified__point span { white-space: nowrap; }
.verified__point {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: #fff;
  position: relative;
}
.verified__point svg { color: #fff; flex-shrink: 0; width: 18px; height: 18px; }

/* Right visual */
.verified__visual {
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-12%);
}
.verified__avg {
  position: absolute;
  top: -8%;
  right: -14%;
  width: clamp(220px, 30vw, 360px);
  height: auto;
  z-index: 1;
  filter: brightness(0) invert(1);
  pointer-events: none;
  animation: verified-breathe 7s ease-in-out infinite;
}
.verified__vial {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  max-width: none;
  width: clamp(600px, 66vw, 880px);
  height: auto;
  filter: drop-shadow(0 26px 40px rgba(15, 23, 42, 0.22));
  pointer-events: none;
  animation: verified-breathe 6s ease-in-out infinite;
}
@keyframes verified-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}
@media (prefers-reduced-motion: reduce) {
  .verified__vial, .verified__avg { animation: none; }
}

/* --- Avaliações --------------------------------------------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.review {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.review__text { color: var(--c-text); font-size: var(--fs-sm); margin-top: auto; }
.review__author { display: flex; align-items: center; gap: var(--space-3); }
.review__top .rating__stars { flex-shrink: 0; }
.review__avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--c-primary-weak);
  color: var(--c-primary);
  display: grid;
  place-items: center;
  font-weight: var(--fw-bold);
}
.review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review__name { font-size: var(--fs-sm); font-weight: var(--fw-semibold); }
.review__meta { font-size: var(--fs-xs); color: var(--c-text-muted); }
.review__avatar--photo {
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  color: #fff;
}
/* Estrelas verdes nas avaliações (estilo bioverlabs.com) */
.reviews-marquee .rating__stars::after,
.reviews-trust__stars::after { color: var(--c-accent); }

/* Cabeçalho de confiança das avaliações */
.reviews-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}
.reviews-trust__score { display: flex; align-items: center; gap: var(--space-3); }
.reviews-trust__num {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.03em;
}
.reviews-trust__stars { font-size: var(--fs-lg); }
.reviews-trust__sub { font-size: var(--fs-sm); color: var(--c-text-muted); }
.reviews-trust__platforms { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  background: var(--c-surface);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}
.platform-pill strong { color: var(--c-text); font-weight: var(--fw-semibold); }
.platform-pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-accent); }

/* Carrossel contínuo de avaliações */
.reviews-marquee {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-6);
}
.reviews-marquee::before,
.reviews-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--c-bg), rgba(248, 250, 252, 0));
}
.reviews-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--c-bg), rgba(248, 250, 252, 0));
}
.reviews-marquee__track {
  display: flex;
  gap: var(--space-5);
  width: max-content;
  animation: reviews-scroll 120s linear infinite;
}
.reviews-marquee .review {
  width: 360px;
  flex-shrink: 0;
  margin-top: 0;
  min-height: 210px;
  padding: var(--space-6);
  gap: var(--space-4);
}
.reviews-marquee .review__text { margin-top: 0; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-marquee__track { animation: none; }
}

/* --- Newsletter --------------------------------------------- */
.newsletter {
  background: linear-gradient(120deg, #050d21 0%, #10245e 55%, #1b3a8a 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-16);
  min-height: 440px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: var(--space-12);
}
.newsletter__media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.newsletter__media img {
  width: clamp(210px, 25vw, 320px);
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.4));
}
.newsletter__content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--space-3);
}
.newsletter .eyebrow { color: #93c5fd; }
.newsletter__title { font-size: var(--fs-4xl); line-height: var(--lh-tight); }
.newsletter__text { color: rgba(255, 255, 255, 0.9); font-size: var(--fs-md); }
.newsletter__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  width: 100%;
  max-width: 440px;
  margin-top: var(--space-2);
}
.newsletter__field {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  width: 100%;
  background: #fff;
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 22px;
}
.newsletter__field .input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--c-text);
  padding: 10px 0;
}
.newsletter__field .input:focus { outline: none; box-shadow: none; }
.newsletter__submit {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--c-primary);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background var(--t);
}
.newsletter__submit:hover { background: var(--c-primary-hover); }
.newsletter__agree { font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.85); }
.newsletter__agree a { color: #fff; text-decoration: underline; }
.newsletter__note { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.7); }

/* --- Footer (escuro, com marca d'água) ---------------------- */
.footer {
  position: relative;
  background: #0a0a0c;
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  margin-top: 0;
}
.footer > .container { position: relative; z-index: 1; }
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-block: var(--space-16) var(--space-10);
}
.footer__brand { max-width: 320px; }
.footer__logo .logo__img { filter: brightness(0) invert(1); }
.footer__tagline { color: rgba(255, 255, 255, 0.6); font-size: var(--fs-sm); margin-top: var(--space-4); }
.footer__ship {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.85);
}
.footer__ship svg { color: var(--c-accent); }
.footer__col-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: #fff;
  margin-bottom: var(--space-4);
}
.footer__links { display: grid; gap: var(--space-3); }
.footer__links a { color: rgba(255, 255, 255, 0.6); font-size: var(--fs-sm); transition: color var(--t); }
.footer__links a:hover { color: #fff; }
.footer__legal {
  padding-bottom: var(--space-6);
  font-size: var(--fs-xs);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  max-width: 900px;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-xs);
}
.footer__pay { display: flex; gap: var(--space-2); align-items: center; }
.footer__watermark {
  position: relative;
  z-index: 0;
  margin-top: calc(-1 * var(--space-8));
  font-family: var(--font-heading);
  font-weight: var(--fw-extra);
  font-size: clamp(4rem, 20vw, 17rem);
  line-height: 0.78;
  letter-spacing: -0.04em;
  text-align: center;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.045);
  user-select: none;
  pointer-events: none;
  overflow: hidden;
}

/* --- Page header (título de página interna) ----------------- */
.page-head {
  padding-block: var(--space-8) var(--space-6);
}
.page-head__title { font-size: var(--fs-3xl); }
.page-head__subtitle { color: var(--c-text-muted); margin-top: var(--space-2); }

/* --- Layout do catálogo ------------------------------------- */
.catalog {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-8);
  align-items: start;
  padding-bottom: var(--space-16);
}
.catalog__sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--space-4));
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-surface);
  padding: var(--space-5);
}
.catalog__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}
.catalog__count { font-size: var(--fs-sm); color: var(--c-text-muted); }
.catalog__toolbar-right { display: flex; align-items: center; gap: var(--space-3); }
.filter-group { margin-bottom: var(--space-5); }
.filter-group__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
}
.filter-group__list { display: grid; gap: var(--space-2); }
.filters-mobile-toggle { display: none; }

/* --- Layout da página de produto ---------------------------- */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
}
.gallery__main {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.gallery__thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--c-surface-2);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb[aria-current="true"] { border-color: var(--c-primary); }

.product__info { display: flex; flex-direction: column; gap: var(--space-4); }
.product__name { font-size: var(--fs-2xl); }
.product__prices { display: flex; align-items: baseline; gap: var(--space-3); }
.product__price { font-size: var(--fs-2xl); font-weight: var(--fw-extra); }
.product__price-old { font-size: var(--fs-md); color: var(--c-text-subtle); text-decoration: line-through; }
.product__stock { display: flex; align-items: center; gap: var(--space-2); font-size: var(--fs-sm); }
.product__desc { color: var(--c-text-muted); }
.product__buy { display: flex; gap: var(--space-3); align-items: center; flex-wrap: wrap; }
.product__meta {
  display: grid;
  gap: var(--space-3);
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-5);
  margin-top: var(--space-2);
}
.product__meta-row { display: flex; gap: var(--space-3); font-size: var(--fs-sm); }
.product__meta-icon { color: var(--c-primary); flex-shrink: 0; }
.specs { width: 100%; border-collapse: collapse; }
.specs th,
.specs td { text-align: left; padding: var(--space-3) 0; border-bottom: 1px solid var(--c-border); font-size: var(--fs-sm); }
.specs th { color: var(--c-text-muted); font-weight: var(--fw-medium); width: 40%; }

/* --- Layout do carrinho (página) ---------------------------- */
.cart-page {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-8);
  align-items: start;
  padding-bottom: var(--space-16);
}
.cart-page__list {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 0 var(--space-5);
}
.cart-page__summary { position: sticky; top: calc(var(--header-h) + var(--space-4)); display: grid; gap: var(--space-4); }

/* --- Layout do checkout ------------------------------------- */
.checkout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-8);
  align-items: start;
  padding-bottom: var(--space-16);
}
.steps {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  overflow-x: auto;
  scrollbar-width: none;
}
.steps::-webkit-scrollbar { display: none; }
.step {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--c-text-subtle);
  white-space: nowrap;
}
.step__num {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  border: 1px solid var(--c-border-strong);
  display: grid;
  place-items: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}
.step--active { color: var(--c-text); font-weight: var(--fw-semibold); }
.step--active .step__num { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.step--done .step__num { background: var(--c-success); border-color: var(--c-success); color: #fff; }
.step__sep { flex: 1; min-width: 16px; height: 1px; background: var(--c-border); }
.checkout__panel {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--space-6);
}
.checkout__panel-title { font-size: var(--fs-lg); margin-bottom: var(--space-5); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--space-4); }
.form-grid .col-2 { grid-column: 1 / -1; }
.checkout__actions { display: flex; justify-content: space-between; gap: var(--space-3); margin-top: var(--space-4); }

/* Opções selecionáveis (entrega/pagamento) */
.option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  margin-bottom: var(--space-3);
}
.option:has(input:checked) { border-color: var(--c-primary); background: var(--c-primary-weak); }
.option__body { flex: 1; }
.option__title { font-weight: var(--fw-semibold); font-size: var(--fs-sm); }
.option__desc { font-size: var(--fs-xs); color: var(--c-text-muted); }
.option__price { font-weight: var(--fw-bold); }

/* --- Layout da conta ---------------------------------------- */
.account {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-8);
  align-items: start;
  padding-bottom: var(--space-16);
}
.account__nav {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-surface);
  padding: var(--space-3);
  position: sticky;
  top: calc(var(--header-h) + var(--space-4));
}
.account__nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-text-muted);
  transition: background var(--t), color var(--t);
}
.account__nav-link:hover { background: var(--c-surface-2); color: var(--c-text); }
.account__nav-link.is-active { background: var(--c-primary-weak); color: var(--c-primary); }
.account__panel {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-surface);
  padding: var(--space-6);
}

/* Card de autenticação (login/cadastro centralizado) */
.auth {
  max-width: 420px;
  margin: var(--space-12) auto var(--space-20);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
.auth__title { font-size: var(--fs-xl); text-align: center; }
.auth__subtitle { text-align: center; color: var(--c-text-muted); margin: var(--space-2) 0 var(--space-6); font-size: var(--fs-sm); }
.auth__foot { text-align: center; margin-top: var(--space-5); font-size: var(--fs-sm); color: var(--c-text-muted); }
.auth__foot a { color: var(--c-primary); font-weight: var(--fw-semibold); }

/* Tabela de pedidos */
.order {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--space-4);
  margin-bottom: var(--space-3);
}
.order__head {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: var(--space-3);
}
.order__id { font-weight: var(--fw-bold); }
.order__items { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.order__thumb { width: 44px; height: 44px; border-radius: var(--radius-sm); overflow: hidden; background: var(--c-surface-2); }
.order__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* --- 404 ----------------------------------------------------- */
.notfound {
  text-align: center;
  padding-block: var(--space-24);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.notfound__code {
  font-size: clamp(4rem, 18vw, 9rem);
  font-weight: var(--fw-extra);
  line-height: 1;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; padding-block: var(--space-12); }
  .hero { background-position: center center; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .trust__items { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .catalog { grid-template-columns: 1fr; }
  .catalog__sidebar { display: none; }
  .filters-mobile-toggle { display: inline-flex; }
}

@media (max-width: 900px) {
  .product { grid-template-columns: 1fr; gap: var(--space-6); }
  .cart-page { grid-template-columns: 1fr; }
  .checkout { grid-template-columns: 1fr; }
  .account { grid-template-columns: 1fr; }
  [data-contact-grid] { grid-template-columns: 1fr !important; }
  .account__nav { position: static; display: flex; overflow-x: auto; gap: var(--space-1); }
  .newsletter { grid-template-columns: 1fr; gap: var(--space-8); padding: var(--space-10) var(--space-8); min-height: 0; }
  .newsletter__media { display: none; }
  .newsletter__content { align-items: center; text-align: center; max-width: 100%; }
  .newsletter__form { align-items: center; margin-inline: auto; }
  .verified__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .verified__visual { min-height: 0; }
  .verified__vial { width: clamp(180px, 40vw, 240px); }
  .reviews-trust { flex-direction: column; align-items: flex-start; }
  .phero__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: var(--space-10);
    min-height: 0;
  }
  .phero__content { max-width: 100%; }
  .phero__text { margin-inline: auto; }
  .phero__review { max-width: 440px; }
}

@media (max-width: 768px) {
  .header__search { display: none; }
  .header__nav { display: none; }
  .catbar { display: none; }
  .header__burger { display: inline-flex; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .newsletter__form { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .herob__grid { grid-template-columns: 1fr; }
  .bento { min-height: 300px; }
  .header__inner { padding-inline: var(--space-4); gap: var(--space-2); }
  .header__action[data-open-search] { display: none; }
}

@media (max-width: 480px) {
  .hero__stats { gap: var(--space-5); flex-wrap: wrap; }
  .features { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section { padding-block: var(--space-10); }
  .verified__points { gap: var(--space-2) var(--space-4); }
  .verified__point:not(:last-child)::after { display: none; }
}
