/* ═══════════════════════════════════════════
   ORGANNAH — Components + Module Styles
   ═══════════════════════════════════════════ */

/* ══════════════════════════════════════
   BOTOES
   ══════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  line-height: 1;
  cursor: pointer;
  border: none;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--color-green-700);
  color: var(--color-white);
  box-shadow: var(--shadow-green);
}
.btn--primary:hover {
  background: var(--color-green-500);
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(45, 80, 22, 0.30);
}

.btn--secondary {
  background: transparent;
  color: var(--color-gray-700);
  border: 1.5px solid var(--color-gray-400);
  padding: 12.5px 26.5px;
}
.btn--secondary:hover {
  background: var(--color-gray-50);
  border-color: var(--color-gray-900);
  color: var(--color-gray-900);
}

.btn--whatsapp-cta {
  background: var(--color-white);
  color: var(--color-green-700);
  font-weight: var(--weight-semibold);
  padding: 18px 40px;
  font-size: var(--text-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.btn--whatsapp-cta:hover {
  background: var(--color-green-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
}

/* ══════════════════════════════════════
   ICONES LUCIDE
   ══════════════════════════════════════ */

[data-lucide] {
  width: 1em;
  height: 1em;
  stroke-width: 1.75;
  flex-shrink: 0;
}


/* ══════════════════════════════════════
   M0 — HEADER
   ══════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header--scrolled {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  height: auto;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header__nav a {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-gray-700);
  transition: color var(--transition-fast);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold-500);
  transition: width var(--transition-base);
}
.header__nav a:hover { color: var(--color-green-700); }
.header__nav a:hover::after { width: 100%; }

.header__cta {
  padding: 10px 20px;
  font-size: var(--text-sm);
}

.header__hamburger {
  display: none;
  color: var(--color-gray-900);
  padding: var(--space-2);
}
.header__hamburger [data-lucide] {
  width: 24px;
  height: 24px;
}

/* ── Mobile Drawer ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 280px;
  background: var(--color-white);
  z-index: 999;
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: var(--shadow-lg);
}
.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-drawer__header svg {
  height: 28px;
  width: auto;
}
.nav-drawer__close {
  color: var(--color-gray-700);
  padding: var(--space-1);
}
.nav-drawer__close [data-lucide] {
  width: 22px;
  height: 22px;
}

.nav-drawer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.nav-drawer__links a {
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--color-gray-700);
  transition: color var(--transition-fast);
}
.nav-drawer__links a:hover {
  color: var(--color-green-700);
}

.nav-drawer__cta {
  margin-top: auto;
}
.nav-drawer__cta .btn {
  width: 100%;
  justify-content: center;
}


/* ══════════════════════════════════════
   M1 — HERO
   ══════════════════════════════════════ */

.hero {
  padding-top: calc(72px + var(--section-y));
  padding-bottom: var(--section-y);
  background: var(--color-gray-50);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero__headline {
  font-size: var(--text-hero);
  font-weight: var(--weight-bold);
  color: var(--color-gray-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__body {
  font-size: var(--text-lg);
  color: var(--color-gray-400);
  line-height: 1.7;
  max-width: 480px;
}

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

.hero__stats {
  display: flex;
  gap: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-gray-100);
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.hero__stat-icon {
  width: 16px;
  height: 16px;
  color: var(--color-gold-500);
  flex-shrink: 0;
}
.hero__stat-number {
  font-weight: var(--weight-bold);
  font-size: var(--text-base);
  color: var(--color-gray-900);
}
.hero__stat-text {
  color: var(--color-gray-400);
  font-size: var(--text-sm);
}
.hero__stat-content {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hero__image {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-xl);
}


/* ══════════════════════════════════════
   M2 — TRUST BAR
   ══════════════════════════════════════ */

.trust-bar {
  background: var(--color-green-700);
  padding-block: var(--space-6);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: var(--weight-medium);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-inline: var(--space-8);
  white-space: nowrap;
}
.trust-bar__item [data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--color-gold-300);
  flex-shrink: 0;
}

.trust-bar__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}


/* ══════════════════════════════════════
   M3 — VITRINE IMERSIVA
   ══════════════════════════════════════ */

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

.vitrine__header {
  margin-bottom: var(--space-10);
}

.vitrine__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 300px 220px;
  gap: var(--space-4);
}

.vitrine__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.vitrine__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 40%);
  pointer-events: none;
  z-index: 1;
}
.vitrine__item .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.vitrine__item--a { grid-row: 1 / 3; }
.vitrine__item--b { grid-column: 2; grid-row: 1; }
.vitrine__item--c { grid-column: 2; grid-row: 2; }

.vitrine__caption {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  color: white;
  font-size: 0.8125rem;
  font-weight: var(--weight-light);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  z-index: 2;
}

.vitrine__bottom-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.vitrine__bottom-row .vitrine__item {
  height: 220px;
}

.vitrine__cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
  margin-top: var(--space-8);
  font-weight: var(--weight-medium);
  color: var(--color-green-700);
  font-size: var(--text-base);
  transition: gap var(--transition-fast);
}
.vitrine__cta:hover {
  gap: var(--space-3);
}
.vitrine__cta [data-lucide] {
  width: 18px;
  height: 18px;
}


/* ══════════════════════════════════════
   M4 — CATEGORIAS
   ══════════════════════════════════════ */

.categorias {
  background: var(--color-gray-50);
}

.categorias__header {
  margin-bottom: var(--space-12);
}

.categorias__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.category-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}
.category-card:hover {
  background: var(--color-green-50);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.category-card__icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold-500);
  stroke-width: 1.75;
}
.category-card__name {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-gray-900);
}
.category-card__tagline {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  line-height: 1.5;
}

.categorias__cta {
  margin-top: var(--space-12);
  text-align: center;
}
.categorias__cta-text {
  font-size: var(--text-base);
  color: var(--color-gray-400);
  margin-bottom: var(--space-4);
}


/* ══════════════════════════════════════
   M5 — CTA WHATSAPP PRIMARIO
   ══════════════════════════════════════ */

.cta-whatsapp {
  position: relative;
  overflow: hidden;
}

.cta-whatsapp__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-whatsapp__bg .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.cta-whatsapp__overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 58, 10, 0.82);
  z-index: 1;
}

.cta-whatsapp__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: 640px;
  margin-inline: auto;
}

.cta-whatsapp .label-caps {
  color: var(--color-gold-300);
}

.cta-whatsapp__headline {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  line-height: 1.15;
  text-wrap: balance;
}

.cta-whatsapp__body {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}


/* ══════════════════════════════════════
   M6 — DEPOIMENTOS
   ══════════════════════════════════════ */

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

.depoimentos__header {
  margin-bottom: var(--space-12);
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-gold-100);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.testimonial-card__stars {
  display: flex;
  gap: var(--space-1);
}
.testimonial-card__stars [data-lucide] {
  width: 18px;
  height: 18px;
  fill: var(--color-gold-500);
  stroke: var(--color-gold-500);
}
.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--color-gray-700);
  line-height: 1.7;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-green-700);
  color: var(--color-white);
  font-weight: var(--weight-semibold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--text-sm);
}
.testimonial-card__info {
  display: flex;
  flex-direction: column;
}
.testimonial-card__name {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-gray-900);
}
.testimonial-card__label {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
}


/* ══════════════════════════════════════
   M7 — LOCALIZACAO
   ══════════════════════════════════════ */

.localizacao {
  background: var(--color-gray-50);
}

.localizacao__header {
  margin-bottom: var(--space-12);
}

.localizacao__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

.localizacao__map {
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.localizacao__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-xl);
}

.localizacao__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.localizacao__info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.localizacao__info-item [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--color-gold-500);
  flex-shrink: 0;
  margin-top: 3px;
}
.localizacao__info-text {
  font-size: var(--text-base);
  color: var(--color-gray-700);
  line-height: 1.5;
}

.localizacao__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.localizacao__buttons .btn {
  justify-content: center;
}


/* ══════════════════════════════════════
   M8 — FOOTER
   ══════════════════════════════════════ */

.footer {
  background: var(--color-green-900);
  color: var(--color-white);
  padding-block: var(--section-y) var(--space-10);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-16);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.footer__brand svg {
  height: 30px;
  width: auto;
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 340px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}
.footer__social:hover {
  color: var(--color-white);
}
.footer__social [data-lucide] {
  width: 16px;
  height: 16px;
}

.footer__column-label {
  font-size: 0.6875rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-6);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.footer__nav a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}
.footer__nav a:hover {
  color: var(--color-white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}
.footer__contact-item [data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--color-gold-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--color-gray-400);
}


/* ══════════════════════════════════════
   BRAND POPUPS — Card de canto (fixed)
   Popup flutuante no canto inferior esquerdo
   Ativado por IntersectionObserver no scroll
   ══════════════════════════════════════ */

/* Trigger invisível — âncora de scroll dentro das seções */
.balloon-trigger {
  display: block;
  height: 1px;
  pointer-events: none;
}

/* ── Card base ── */
.brand-popup {
  position: fixed;
  bottom: 108px;       /* acima do botão WhatsApp */
  left: 28px;
  width: 320px;
  max-width: calc(100vw - 56px);
  background-color: var(--color-essencia);
  color: var(--color-leveza);
  border-radius: 20px;
  padding: 24px 26px 26px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 12px;

  /* Linha de acento no topo — cor dourada/bege */
  border-top: 3px solid var(--color-bem-estar);

  /* Sombra em camadas para profundidade premium */
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.10),
    0 8px 28px rgba(0, 0, 0, 0.16),
    0 20px 48px rgba(0, 0, 0, 0.12);

  /* Estado inicial: fora do canto, invisível */
  opacity: 0;
  transform: translateX(-16px) translateY(10px) scale(0.97);
  pointer-events: none;

  /* Transição lenta e suave — 700ms com spring */
  transition:
    opacity    700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform  700ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Estado visível */
.brand-popup.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  pointer-events: all;
}

/* Saída: mais rápida que a entrada para não obstruir */
.brand-popup:not(.is-visible) {
  transition:
    opacity    400ms cubic-bezier(0.4, 0, 1, 1),
    transform  400ms cubic-bezier(0.4, 0, 1, 1);
}

/* ── Variações de tema ── */
.brand-popup--vitalidade {
  background-color: var(--color-vitalidade);
  color: var(--color-leveza);
  border-top-color: var(--color-cuidado);
}
.brand-popup--cuidado {
  background-color: var(--color-bem-estar);
  color: var(--color-potencia);
  border-top-color: var(--color-vitalidade);
}

/* ── Eyebrow: "EXEMPLO ——" fiel ao brandbook ── */
.brand-popup__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.5625rem;       /* 9px */
  font-weight: var(--weight-semibold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}
.brand-popup__eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}

/* ── Texto principal: Inter Tight, tamanho generoso ── */
.brand-popup__text {
  font-family: var(--font-body);
  font-size: 1.125rem;          /* 18px — legível e calmo */
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.005em;
}

/* Palavras-chave em negrito como no brandbook */
.brand-popup__text strong {
  font-weight: 700;
}

/* Palavras em itálico para tom inspiracional */
.brand-popup__text em {
  font-style: italic;
  font-weight: 600;
}

/* ── Headline de destaque: Plus Jakarta Sans ── */
.brand-popup__headline {
  font-family: var(--font-sans);
  font-size: 1.375rem;         /* 22px */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ── Botão fechar ── */
.brand-popup__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  color: currentColor;
  opacity: 0.6;
  font-size: 0.875rem;
  cursor: pointer;
  line-height: 1;
  transition: opacity 150ms ease, background 150ms ease;
}
.brand-popup__close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.22);
}
/* No tema laranja (--cuidado), o close fica escuro */
.brand-popup--cuidado .brand-popup__close {
  background: rgba(0, 0, 0, 0.08);
}
.brand-popup--cuidado .brand-popup__close:hover {
  background: rgba(0, 0, 0, 0.16);
}

/* ── Mobile ── */
@media (max-width: 479px) {
  .brand-popup {
    left: 16px;
    right: 16px;
    bottom: 92px;
    width: auto;
    max-width: 100%;
    border-radius: 16px;
  }
}




/* ══════════════════════════════════════
   FLOAT — WHATSAPP BUTTON
   ══════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, transform 150ms ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}
.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: all;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.60);
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE-FIRST
   3 breakpoints: 480px (small phones→phones)
                  768px (phones→tablets)
                  1024px (tablets→desktop)
   ══════════════════════════════════════════════════════ */


/* ── Small Mobile base overrides (< 480px) ── */
@media (max-width: 479px) {

  /* Header — smaller on tiny screens */
  .header__inner { height: 60px; }
  .header__logo svg { height: 26px; }

  /* Hero — tighter spacing */
  .hero {
    padding-top: calc(60px + var(--space-10));
    padding-bottom: var(--space-10);
  }
  .hero__headline { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .hero__body { font-size: var(--text-base); }
  .hero__image { height: 280px; }
  .hero__stats { gap: var(--space-4); }
  .hero__stat-number { font-size: var(--text-sm); }
  .hero__stat-text { font-size: var(--text-xs); }

  /* Trust Bar — single column on very small */
  .trust-bar { padding-block: var(--space-5); }
  .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }
  .trust-bar__divider { display: none; }
  .trust-bar__item {
    padding-inline: var(--space-2);
    justify-content: center;
    font-size: 0.625rem;
    gap: var(--space-2);
    text-align: center;
  }
  .trust-bar__item [data-lucide] {
    width: 12px;
    height: 12px;
  }

  /* Vitrine */
  .vitrine__item .img-placeholder { height: 220px; }
  .vitrine__bottom-row .vitrine__item { height: 200px; }

  /* CTA WhatsApp */
  .cta-whatsapp__headline { font-size: clamp(1.5rem, 6vw, 2rem); }
  .btn--whatsapp-cta {
    padding: 16px 28px;
    font-size: var(--text-base);
  }

  /* Testimonials — full width cards */
  .testimonial-card {
    min-width: 90vw;
    padding: var(--space-6);
  }

  /* Categorias cards */
  .category-card { min-width: 240px; }

  /* Location buttons stack */
  .localizacao__buttons .btn {
    font-size: var(--text-sm);
    padding: 12px 20px;
  }

  /* Footer */
  .footer__bottom { font-size: var(--text-xs); }
}


/* ── Mobile + Tablet (< 1024px) ── */
@media (max-width: 1023px) {

  /* Header */
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }

  /* Hero */
  .hero {
    padding-top: calc(72px + var(--space-12));
    padding-bottom: var(--space-12);
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .hero__image {
    height: 320px;
    order: -1;
  }
  .hero__body { max-width: 100%; }
  .hero__stats {
    gap: var(--space-6);
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .hero__buttons {
    flex-direction: column;
    gap: var(--space-3);
  }
  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    min-height: 52px;
  }

  /* Trust Bar */
  .trust-bar { padding-block: var(--space-5); }
  .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
  .trust-bar__divider { display: none; }
  .trust-bar__item {
    padding-inline: var(--space-2);
    justify-content: center;
    text-align: center;
    font-size: 0.6875rem;
    gap: var(--space-2);
    white-space: normal;
    line-height: 1.3;
  }

  /* Vitrine */
  .vitrine__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--space-3);
  }
  .vitrine__item--a,
  .vitrine__item--b,
  .vitrine__item--c {
    grid-row: auto;
    grid-column: auto;
  }
  .vitrine__item .img-placeholder {
    height: 260px;
  }
  .vitrine__bottom-row {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    margin-top: var(--space-3);
  }
  .vitrine__bottom-row .vitrine__item {
    height: 240px;
  }
  .vitrine__cta {
    justify-content: center;
    margin-top: var(--space-6);
  }

  /* Categorias — scroll horizontal with peek */
  .categorias__grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-4);
    padding-bottom: var(--space-4);
    margin-right: calc(var(--section-x) * -1);
    padding-right: var(--section-x);
    -webkit-overflow-scrolling: touch;
  }
  .categorias__grid::-webkit-scrollbar { display: none; }
  .categorias__grid { scrollbar-width: none; }
  .category-card {
    min-width: 260px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .categorias__cta { margin-top: var(--space-8); }

  /* Depoimentos — swipe horizontal */
  .depoimentos__grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-4);
    padding-bottom: var(--space-4);
    margin-right: calc(var(--section-x) * -1);
    padding-right: var(--section-x);
    -webkit-overflow-scrolling: touch;
  }
  .depoimentos__grid::-webkit-scrollbar { display: none; }
  .depoimentos__grid { scrollbar-width: none; }
  .testimonial-card {
    min-width: 85vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  /* CTA WhatsApp */
  .cta-whatsapp__content { gap: var(--space-5); }
  .btn--whatsapp-cta {
    width: 100%;
    justify-content: center;
  }

  /* Localizacao */
  .localizacao__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .localizacao__map { height: 280px; }
  .localizacao__buttons {
    flex-direction: column;
    gap: var(--space-3);
  }
  .localizacao__buttons .btn {
    min-height: 48px;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .footer__brand { grid-column: auto; }
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }

  /* Section headlines — prevent overflow */
  .section-headline {
    font-size: clamp(1.5rem, 5vw, 2rem);
    word-break: break-word;
  }
  .section-subtitle {
    font-size: var(--text-base);
    max-width: 100%;
  }

  /* WhatsApp float — safe from notch/gesture bars */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }

  /* All buttons — minimum touch target */
  .btn { min-height: 44px; }

  /* Nav drawer — larger touch targets */
  .nav-drawer__links a {
    padding-block: var(--space-2);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}


/* ── Tablet grid upgrades (768–1023px) ── */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Hero — larger image */
  .hero__image { height: 400px; }

  /* Categorias — 2 col grid */
  .categorias__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .category-card {
    min-width: 0;
    scroll-snap-align: unset;
    flex-shrink: unset;
  }

  /* Vitrine — 2-col asymmetric */
  .vitrine__grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 260px 200px;
  }
  .vitrine__item--a { grid-row: 1 / 3; }
  .vitrine__item--b { grid-column: 2; grid-row: 1; }
  .vitrine__item--c { grid-column: 2; grid-row: 2; }
  .vitrine__item .img-placeholder { height: auto; }
  .vitrine__bottom-row {
    grid-template-columns: 1fr 1.4fr;
  }
  .vitrine__bottom-row .vitrine__item { height: 200px; }
  .vitrine__cta { justify-content: flex-end; }

  /* Depoimentos — 2 col grid */
  .depoimentos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    overflow-x: visible;
    scroll-snap-type: none;
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .testimonial-card {
    min-width: 0;
    scroll-snap-align: unset;
    flex-shrink: unset;
  }
  .depoimentos__grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  /* Localizacao — side by side */
  .localizacao__inner {
    grid-template-columns: 1fr 1fr;
  }
  .localizacao__map { height: 360px; }

  /* Footer — 2 col */
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
  .footer__brand {
    grid-column: 1 / -1;
  }

  /* Trust bar — more spacing */
  .trust-bar__item {
    padding-inline: var(--space-5);
    font-size: 0.6875rem;
  }
  }
}

/* ══════════════════════════════════════
   ABOUT STORE (M6.5)
   ══════════════════════════════════════ */

.about-store__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

@media (min-width: 1024px) {
  .about-store__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
  }
}

.about-store__text p {
  margin-bottom: var(--space-4);
  line-height: 1.6;
  font-size: var(--text-lg);
}

.about-store__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

