/* ==========================================================================
   LOJA DA CIDINHA — DESIGN TOKENS
   ========================================================================== */
:root {
  /* cor — paleta boutique: ivory quente, verde-mata, terracota-rosado, dourado */
  --color-bg: #FAF5EF;
  --color-surface: #FFFFFF;
  --color-surface-2: #F2E9DF;
  --color-text: #2B241E;
  --color-text-muted: #8A7C6E;
  --color-border: #E6DACB;

  --color-green: #3F5B45;
  /* CTA primário / eyebrow */
  --color-green-dark: #2E4433;
  --color-rose: #C98A79;
  /* accent quente */
  --color-lavender: #CBB9E8;
  /* botão "Comprar" */
  --color-lavender-dark: #A78DCB;
  --color-heart: #D8483C;
  --color-gold: #B8923F;

  --color-map-bg: #EFE6D8;
  --color-map-line: #D8C9B2;

  /* cor de marca configurável pelo lojista (SaaS) — aplicada na faixa de
     categorias e no botão de busca; hoje fixa em azul */
  --color-brand-strip: #3762CC;
  --color-brand-strip-dark: #2C4EA3;

  --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --gap-section: clamp(32px, 4vw, 56px);
  --container-w: 1200px;

  --shadow-card: 0 10px 30px -14px rgba(43, 36, 30, .22);
  --shadow-card-hover: 0 18px 40px -16px rgba(43, 36, 30, .30);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  background-image:
    radial-gradient(at 20% 25%, #F7ECDD 0%, transparent 55%),
    radial-gradient(at 80% 20%, #F3E4D7 0%, transparent 55%),
    radial-gradient(at 30% 80%, #F6E9DC 0%, transparent 55%),
    radial-gradient(at 85% 75%, #F0E2D2 0%, transparent 55%);
  background-size: 180% 180%;
  background-repeat: no-repeat;
  animation: bgDrift 36s ease-in-out infinite alternate;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

@keyframes bgDrift {
  0% { background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%; }
  33% { background-position: 20% 30%, 80% 10%, 15% 85%, 90% 70%; }
  66% { background-position: 10% 15%, 70% 25%, 30% 70%, 75% 90%; }
  100% { background-position: 30% 10%, 90% 30%, 5% 90%, 100% 60%; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

/* ==========================================================================
   TIPOGRAFIA UTILITÁRIA
   ========================================================================== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 12px;
}

.eyebrow--light {
  color: rgba(255, 255, 255, .85);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  margin-bottom: 32px;
}

.section-title--center {
  text-align: center;
}

.section-heading {
  text-align: center;
  margin-bottom: 44px;
}

.section-heading .eyebrow {
  display: block;
  font-size: .68rem;
  letter-spacing: .22em;
  color: var(--color-rose);
  margin-bottom: 0;
}

.section-heading .eyebrow::after {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: var(--color-border);
  margin: 16px auto 0;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  color: var(--color-text);
  margin-top: 16px;
}

.section-block {
  padding-top: var(--gap-section);
  padding-bottom: 0;
}

.team-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  mask-image: linear-gradient(to right, transparent 0%, black 22%, black 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%, black 78%, transparent 100%);
}

.team-track {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  width: max-content;
  animation: team-scroll 18s linear infinite;
}

.team-carousel:hover .team-track {
  animation-play-state: paused;
}

@keyframes team-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 28px)); }
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  transition: transform .4s var(--ease, ease);
}

.team-member:hover {
  transform: scale(1.14);
}

.team-member img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-surface);
  box-shadow: 0 0 0 1px var(--color-border);
  transition: box-shadow .4s var(--ease, ease);
}

.team-member:hover img {
  box-shadow: 0 0 0 1px var(--color-border), 0 10px 24px rgba(0,0,0,.18);
}

.team-member span {
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}

.btn--primary {
  background: var(--color-brand-strip);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-brand-strip-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn--outline-light {
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 10px 22px;
  font-weight: 400;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, .14);
}

.btn--sm {
  padding: 9px 20px;
  font-size: .76rem;
}

.btn--buy {
  width: 100%;
  background: var(--color-brand-strip);
  color: #fff;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
}

.btn--buy:hover {
  background: var(--color-brand-strip-dark);
  color: #fff;
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 245, 239, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__nav a {
  font-size: .85rem;
  font-weight: 500;
  position: relative;
}

.topbar__sep {
  color: var(--color-border);
  font-size: .8rem;
}

.icon-btn[hidden] {
  display: none;
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  display: block;
}

.brand-logo--icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-logo--horizontal {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.brand-logo[hidden] {
  display: none;
}

.cart-count[hidden] {
  display: none;
}

.cart-icon-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

.cart-icon-wrap svg {
  width: 18px;
  height: 18px;
  shape-rendering: geometricPrecision;
}

.icon-btn--cart.is-full {
  display: flex;
  width: auto;
  height: auto;
  border-radius: var(--radius-pill);
  background: var(--color-surface-2);
  padding: 8px 16px 8px 12px;
  gap: 8px;
}

.icon-btn--cart.is-full:hover {
  background: var(--color-border);
}

.cart-total {
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.cart-total strong {
  font-weight: 700;
}

.cart-total small {
  font-size: .74em;
  font-weight: 500;
  color: var(--color-text-muted);
}

.cart-total[hidden] {
  display: none;
}

.topbar__greeting {
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--color-green);
  transition: width .25s var(--ease);
}

.topbar__nav a:hover::after {
  width: 100%;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-text);
  position: relative;
  transition: background .2s var(--ease);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  shape-rendering: geometricPrecision;
}

.icon-btn:hover {
  background: var(--color-surface-2);
}

.icon-btn--ghost {
  color: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .3);
}

.icon-btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 50%;
  background: var(--color-heart);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* ==========================================================================
   1. HERO / BANNER ROTATIVO
   ========================================================================== */
.hero {
  position: relative;
  width: 95%;
  margin-inline: auto;
  height: 84vh;
  height: 84svh;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: none;
  box-shadow: none;
}

.hero__track {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s var(--ease), visibility 0s 1.4s;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.4s var(--ease), visibility 0s 0s;
  z-index: 1;
}

/* imagem cresce (zoom-in) durante o tempo em que o slide fica ativo */
.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center;
  transition: transform 7s linear;
}

.hero__slide.is-active .hero__slide-bg {
  transform: scale(1.12);
}

/* ---- texto sobre o banner: seção dividida em 5 colunas iguais,
       bloco ancorado no início da 2ª coluna (20%–40%), do meio para a esquerda ---- */
.hero__copy {
  position: absolute;
  z-index: 2;
  left: 20%;
  top: 50%;
  translate: 0 -50%;
  width: 20%;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  text-align: left;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 2.2rem);
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .55);
  margin-bottom: 16px;
}

.hero__text {
  max-width: 30ch;
  color: rgba(255, 255, 255, .92);
  font-size: .96rem;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
  margin-bottom: 26px;
}

.hero__copy .btn--primary {
  border-radius: 6px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .6);
}

/* ==========================================================================
   1.1 VANTAGENS (GLASS)
   ========================================================================== */
.hero-perks{
  position: relative;
  z-index: 2;
  margin-top: -30px;
  padding-block: 0 40px;
  background: transparent;
}
@keyframes heroPerksRise {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-perks__glass{
  width: 85%;
  margin-inline: auto;
  padding: 22px 32px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.7px);
  -webkit-backdrop-filter: blur(6.7px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  animation: heroPerksRise .9s var(--ease) .25s both;
}
.hero-perks__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 10px;
}
.hero-perk{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-inline: 16px;
  min-width: 0;
}
.hero-perk__icon{
  height: 1.7em;
  width: auto;
  flex-shrink: 0;
}
.hero-perk__copy{
  min-width: 0;
}
.hero-perk__title{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .7rem;
  color: var(--color-text);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-perk__subtitle{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .6rem;
  color: var(--color-text-muted);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   2. CATEGORIAS
   ========================================================================== */
.cat-strip {
  background: var(--color-brand-strip);
}

.cat-strip__nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.cat-strip__nav::-webkit-scrollbar {
  display: none;
}

.cat-strip__nav a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  border-left: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s var(--ease);
}

.cat-strip__nav a:first-child {
  border-left: none;
}

.cat-strip__scroll {
  display: contents;
}

.cat-strip__nav a:hover {
  background: rgba(255, 255, 255, .12);
}

.cat-search {
  padding-block: 14px;
  background: none;
  border-bottom: none;
}

.cat-search__bar {
  display: flex;
  align-items: center;
  max-width: 640px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 4px 4px 4px 18px;
}

.cat-search__all {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 14px;
  border-right: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: .74rem;
  font-weight: 600;
  white-space: nowrap;
}

.cat-search__all svg {
  width: 14px;
  height: 14px;
  color: var(--color-brand-strip);
}

.cat-search__input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 6px 12px;
  font: inherit;
  font-size: .78rem;
  color: var(--color-text);
  background: transparent;
}

.cat-search__input::placeholder {
  color: var(--color-text-muted);
}

.cat-search__input:focus {
  outline: none;
}

.cat-search__btn {
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  background: var(--color-brand-strip);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: filter .2s var(--ease);
}

.cat-search__btn:hover {
  filter: brightness(.9);
}

/* ==========================================================================
   3. BANNER DUPLO
   ========================================================================== */
.dual-banner {
  padding-top: var(--gap-section);
  padding-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 20px;
}

/* elemento real (não pseudo-elemento) para o escurecimento sobre fotos —
   evita um artefato de composição em que ::before via aparecer deslocado */
.card-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dual-banner__card {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s var(--ease);
}

.dual-banner__card:hover {
  box-shadow: var(--shadow-card-hover);
}

.dual-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform .5s var(--ease);
}

.dual-banner__card:hover .dual-banner__bg {
  transform: scale(1.08);
}

.dual-banner__card .card-scrim {
  background: linear-gradient(0deg, rgba(20, 16, 12, .72), rgba(20, 16, 12, .05) 45%);
}

.dual-banner__badge {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 18px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: var(--color-heart);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.dual-banner__caption {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 22px;
  right: 24px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
}

/* ==========================================================================
   4/7/9. PRODUCT GRID + CARD
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-grid--single-row {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  min-width: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.product-card__media {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg);
  margin-bottom: 14px;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .92);
  border-radius: 50%;
  color: var(--color-heart);
  transition: transform .2s var(--ease);
}

.product-card__fav svg {
  width: 17px;
  height: 17px;
  stroke: var(--color-heart);
  fill: none;
  transition: fill .2s var(--ease);
}

.product-card__fav:hover {
  transform: scale(1.1);
}

.product-card__fav.is-active svg {
  fill: var(--color-heart);
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-gold);
  font-weight: 600;
}

.product-card__rating svg {
  width: 12px;
  height: 12px;
  fill: var(--color-gold);
  stroke: none;
}

.product-card__rating span {
  color: var(--color-text-muted);
  font-weight: 400;
  margin-left: 2px;
}

.product-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1.32;
  margin-bottom: 10px;
  min-height: 2.6em;
}

.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.product-card__price-old {
  font-size: .78rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-card__price-new {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-text);
}

.product-card__price-new sup {
  font-size: .6em;
  font-weight: 600;
  margin-left: 1px;
}

/* ==========================================================================
   5. PROMO STRIP (cards com foto — categorias)
   ========================================================================== */
.promo-strip {
  padding-top: var(--gap-section);
  padding-bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.promo-strip__card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s var(--ease);
}

.promo-strip__card:hover {
  box-shadow: var(--shadow-card-hover);
}

.promo-strip__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.promo-strip__card:hover img {
  transform: scale(1.05);
}

.promo-strip__card .card-scrim {
  background: linear-gradient(0deg, rgba(20, 16, 12, .82) 10%, rgba(20, 16, 12, .05) 55%);
}

.promo-strip__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}

.promo-strip__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 12px;
}

.promo-strip__badge {
  display: inline-block;
  width: fit-content;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  background: var(--color-heart);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* ==========================================================================
   6. DEPOIMENTOS
   ========================================================================== */
.testimonials-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonials {
  display: flex;
  gap: 24px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.testimonials::-webkit-scrollbar {
  display: none;
}

.testimonials-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  transition: background .2s var(--ease);
}

.testimonials-arrow svg {
  width: 18px;
  height: 18px;
}

.testimonials-arrow:hover {
  background: var(--color-surface-2);
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.testimonial-card__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--color-gold);
  stroke: none;
}

.testimonial-card__text {
  font-size: .92rem;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface-2);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-green-dark);
}

.testimonial-card__name {
  font-size: .85rem;
  font-weight: 600;
}

.testimonial-card__role {
  font-size: .74rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   8. BANNER FULL WIDTH
   ========================================================================== */
.full-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding-block: 88px;
  margin-top: var(--gap-section);
  margin-bottom: 0;
}

.full-banner .card-scrim {
  background: rgba(18, 14, 10, .6);
}

.full-banner__content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}

.full-banner__content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 26px;
}

/* ==========================================================================
   10. SOBRE / CONTATO
   ========================================================================== */
.about {
  padding-block: var(--gap-section);
  border-top: 1px solid var(--color-border);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: 44px;
  align-items: stretch;
}

.about__media {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.about__copy .eyebrow {
  margin-bottom: 8px;
}

.about__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.about__copy p {
  color: var(--color-text-muted);
  max-width: 60ch;
}

.about__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  background: #3FCB63;
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  transition: background .2s var(--ease), transform .2s var(--ease);
}

.btn--whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn--whatsapp:hover {
  background: #34b656;
  transform: translateY(-1px);
}

.contact__social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.contact__social-label {
  font-size: .82rem;
  color: var(--color-text-muted);
}

.contact__social-icons {
  display: flex;
  gap: 10px;
}

.contact__social-icons .icon-btn svg {
  width: 21px;
  height: 21px;
}

.contact__social-icons .icon-btn {
  background: var(--color-surface-2);
}

.contact__social-icons .icon-btn:hover {
  background: var(--color-green);
  color: #fff;
}

.about__alert {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 95vw;
  margin-top: 32px;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: #F0453E;
  color: #fff;
  text-align: center;
}

.about__alert-inner {
  width: 87%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.about__alert-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.about__alert-title svg {
  width: 22px;
  height: 22px;
}

.about__alert p {
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 62ch;
}

.about__alert-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  transition: background .2s var(--ease);
}

.about__alert-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.about__alert-btn:hover {
  background: rgba(255, 255, 255, .3);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #3FCB63;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 200;
  transition: transform .2s var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float__lottie {
  width: 42px;
  height: 42px;
  pointer-events: none;
  transform: scale(1.55);
}

@media (min-width: 861px) {
  .whatsapp-float {
    right: 80px;
    bottom: 80px;
  }
}

@media (max-width: 540px) {
  .whatsapp-float {
    right: 14px;
    bottom: 40px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float__lottie {
    width: 36px;
    height: 36px;
    transform: scale(1.55);
  }
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.footer {
  background: var(--color-brand-strip);
  color: rgba(255, 255, 255, .85);
}

.footer__inner {
  padding-block: 60px 40px;
  display: grid;
  grid-template-columns: 1.3fr .95fr .8fr .9fr 1fr;
  gap: 28px;
}

.brand--footer {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}

.footer__brand p {
  font-size: .84rem;
  line-height: 1.6;
  margin-block: 14px 18px;
  max-width: 34ch;
  opacity: .85;
}

.footer__icons {
  display: flex;
  gap: 10px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col h4 {
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.footer__col a {
  font-size: .85rem;
  opacity: .82;
  transition: opacity .2s;
}

.footer__col a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer__line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
}

.footer__line svg {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .85;
}

.footer__map-btn {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s;
}

.footer__map-btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer__map-btn:hover {
  background: rgba(0, 0, 0, .5);
}

.footer__map h4 {
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.footer__map-frame {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  opacity: .75;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__payments {
  display: flex;
  gap: 14px;
  font-weight: 600;
  letter-spacing: .04em;
}

.footer__signature {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-block: 22px 26px;
  text-align: center;
  font-size: .78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .65);
}

.footer__signature-brand {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.footer__signature p {
  margin-bottom: 6px;
}

.footer__signature a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   TOAST
   ========================================================================== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  translate: -50% 12px;
  background: var(--color-text);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: .84rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), translate .3s var(--ease);
  z-index: 100;
}

.toast.is-visible {
  opacity: 1;
  translate: -50% 0;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1080px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .topbar__nav {
    display: none;
  }

  .hero {
    width: 95%;
    height: 58vh;
    height: 58svh;
    min-height: 380px;
  }

  .hero-perks__glass {
    width: 92%;
    padding: 16px 18px;
  }

  .hero-perks__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 18px;
  }

  .dual-banner {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .product-grid--single-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-strip {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .about__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__media {
    max-width: 320px;
    margin-inline: auto;
  }

  .about__copy p {
    margin-inline: auto;
  }

  .about__actions,
  .contact__social {
    align-items: center;
  }
}

@media (max-width: 540px) {
  .dual-banner {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .about__media {
    max-width: 90vw;
    width: 90vw;
    margin-inline: auto;
  }

  .dual-banner__card {
    min-height: 170px;
    border-radius: 8px;
  }

  .dual-banner__badge {
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: .6rem;
  }

  .promo-strip {
    gap: 12px;
  }

  .promo-strip__card {
    aspect-ratio: unset;
    height: calc((90vh - 24px) / 3);
  }

  .promo-strip__title {
    order: 2;
    width: 90%;
    margin-bottom: 0;
    font-size: .82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .promo-strip__br {
    display: none;
  }

  .promo-strip__badge {
    order: 1;
    margin-bottom: 8px;
  }

  .section-title.section-title--center {
    white-space: nowrap;
    font-size: clamp(.9rem, 5.2vw, 1.3rem);
  }

  .testimonials-slider {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
  }

  .testimonials {
    scroll-snap-type: x mandatory;
    scroll-behavior: auto;
    padding-inline: 9vw;
  }

  .testimonial-card {
    flex: 0 0 82vw;
    scroll-snap-align: center;
  }

  .testimonials-arrow {
    display: none;
  }

  .dual-banner__caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: .78rem;
    line-height: 1.15;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading .eyebrow::after {
    margin: 4px auto 0;
  }

  .section-heading h2 {
    font-size: 1.3rem;
    margin-top: 4px;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .hero {
    width: 95%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .hero__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(10, 6, 4, .85) 0%, rgba(10, 6, 4, .55) 28%, rgba(10, 6, 4, 0) 62%);
    pointer-events: none;
  }

  .hero__copy {
    left: 50%;
    top: auto;
    bottom: 20px;
    translate: -50% 0;
    width: 88%;
    align-items: flex-start;
    text-align: left;
  }

  .hero__title {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .hero__text {
    max-width: 24ch;
    margin-inline: 0;
    margin-bottom: 12px;
  }

  .hero__copy .btn--primary {
    padding: 8px 26px;
  }

  .hero-perks {
    margin-block: 8px;
    padding-block: 0;
  }

  .hero-perks__glass {
    width: 95%;
    padding: 6px 10px;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-perks__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    margin-inline: auto;
    gap: 0;
  }

  .hero-perk {
    justify-content: center;
    padding-inline: 0;
    flex: none;
  }

  .hero-perk__icon {
    height: 1.35em;
  }

  .hero-perk__copy {
    display: none;
  }

  .cat-strip__nav {
    overflow: visible;
    justify-content: flex-start;
    padding-inline: 0;
  }

  .cat-strip__scroll {
    display: flex;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: clamp(16px, 5vw, 28px);
  }

  .cat-strip__scroll::-webkit-scrollbar {
    display: none;
  }

  .cat-strip__all {
    flex: none;
    background: var(--color-brand-strip);
    box-shadow: -14px 0 12px -6px var(--color-brand-strip);
  }

  .cat-search__all span {
    display: none;
  }

  .cat-strip__nav a {
    padding: 12px 14px;
    font-size: .7rem;
  }

  .cat-search__all {
    padding-right: 10px;
  }

  .cat-search__btn {
    padding: 7px 14px;
    font-size: .64rem;
  }

  .product-grid,
  .product-grid--single-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-card {
    padding: 6px;
  }

  .product-card__name {
    font-size: .82rem;
    min-height: 2.2em;
    margin-bottom: 6px;
  }

  .product-card__prices {
    margin-bottom: 8px;
  }

  .btn--buy {
    padding: 8px 18px;
  }

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