/* ===================== VARIÁVEIS ===================== */
:root {
  /* Cores primárias vibrantes (festivas) */
  --vermelho:  #ed2b43;
  --vermelho-e:#c81d33;
  --azul:      #1b6cf2;
  --azul-e:    #0f52c2;
  --amarelo:   #ffc400;
  --verde:     #16b364;

  /* Aliases mantidos para compatibilidade com o restante do CSS */
  --rosa:      var(--vermelho);
  --rosa-esc:  var(--vermelho-e);
  --roxo:      var(--azul);
  --turquesa:  var(--verde);

  --texto:     #1d2030;
  --texto-sub: #5a5f70;
  --fundo:     #ffffff;

  /* Liquid glass */
  --glass-bg:     rgba(255, 255, 255, .62);
  --glass-bg-2:   rgba(255, 255, 255, .4);
  --glass-brd:    rgba(255, 255, 255, .8);
  --glass-blur:   16px;
  --glass-shadow: 0 8px 30px rgba(30, 40, 80, .12);

  --radius:    22px;
  --radius-sm: 16px;

  --fonte-titulo: "Baloo 2", system-ui, sans-serif;
  --fonte-texto:  "Poppins", system-ui, sans-serif;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--fonte-texto);
  color: var(--texto);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 0% 0%, rgba(237,43,67,.08) 0%, transparent 38%),
    radial-gradient(circle at 100% 2%, rgba(27,108,242,.08) 0%, transparent 36%),
    radial-gradient(circle at 50% 100%, rgba(255,196,0,.07) 0%, transparent 42%),
    var(--fundo);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }
.container--narrow { width: min(760px, 92%); }

/* Acessibilidade: foco visível para teclado */
:focus-visible { outline: 3px solid var(--azul); outline-offset: 3px; border-radius: 8px; }
:focus:not(:focus-visible) { outline: none; }

/* ===================== BLOBS LÍQUIDOS DE FUNDO ===================== */
.blobs { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(75px); opacity: .28;
  animation: drift 18s ease-in-out infinite;
}
.blob--1 { width: 360px; height: 360px; background: var(--vermelho); top: -90px; left: -70px; }
.blob--2 { width: 400px; height: 400px; background: var(--azul);     top: 32%; right: -140px; animation-delay: -4s; }
.blob--3 { width: 300px; height: 300px; background: var(--amarelo);  bottom: 4%; left: -90px; animation-delay: -8s; opacity: .22; }
.blob--4 { width: 280px; height: 280px; background: var(--vermelho); bottom: 22%; right: 8%; animation-delay: -12s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.1); }
  66%      { transform: translate(-30px, 40px) scale(.95); }
}

/* ===================== EFEITO GLASS ===================== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-brd);
  box-shadow: var(--glass-shadow);
}

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--fonte-titulo); font-weight: 700; font-size: 1.02rem;
  padding: .85rem 1.6rem; border-radius: 50px; cursor: pointer; border: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary {
  background: var(--azul);
  color: #fff; box-shadow: 0 8px 20px rgba(27, 108, 242, .35);
}
.btn--primary:hover { background: var(--azul-e); }
.btn--glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-brd); color: var(--roxo); box-shadow: var(--glass-shadow);
}
.btn--block { width: 100%; margin-top: auto; }

/* ===================== HEADER ===================== */
.header { position: sticky; top: 0; z-index: 100; padding: .5rem 0; }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem 1.2rem; border-radius: 50px; margin-top: .4rem;
}
.logo { display: flex; align-items: center; gap: .45rem; font-family: var(--fonte-titulo); font-weight: 800; font-size: 1.3rem; }
.logo__icon { font-size: 1.5rem; }
.logo__text { color: var(--roxo); }
.logo__accent { color: var(--rosa); }
.logo__img { height: clamp(26px, 8vw, 40px); width: auto; max-width: 62vw; display: block; }
.logo__img--footer { height: auto; width: 210px; max-width: 70%; }

.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav__link { font-weight: 500; color: var(--texto); transition: color .2s; }
.nav__link:hover { color: var(--rosa-esc); }
.nav__cta {
  background: var(--azul); color: #fff !important;
  padding: .5rem 1.1rem; border-radius: 50px; box-shadow: 0 6px 16px rgba(27,108,242,.35);
}
.nav__cta:hover { transform: translateY(-2px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 25px; height: 3px; background: var(--roxo); border-radius: 3px; transition: .3s; }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(2rem, 6vw, 4rem); text-align: center; }
.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

/* Celular: hero ocupa a 1ª tela inteira (a próxima seção fica abaixo da dobra) */
@media (max-width: 760px) {
  .hero {
    min-height: calc(100vh - 70px); min-height: calc(100svh - 70px);
    display: flex; flex-direction: column; justify-content: center;
  }
}

/* Colmeia de fundo (celular: atrás do texto, esmaecida) */
.hero__honeycomb { position: absolute; inset: 0; z-index: 0; pointer-events: none; display: flex; align-items: center; justify-content: center; opacity: .14; }
.hero__honeycomb .honeycomb { --hex-w: clamp(100px, 32vw, 175px); transform: scale(1.28); }
.hero__honeycomb .hex { cursor: default; }
.hero__honeycomb .hex:hover { transform: none; filter: none; }

/* Desktop: texto à esquerda, colmeia nítida à direita vazando pela borda */
@media (min-width: 981px) {
  .hero { min-height: 560px; display: flex; align-items: center; }
  .hero__inner { align-items: flex-start; text-align: left; width: min(1180px, 92%); }
  .hero__title, .hero__text { max-width: 17ch; }
  .hero__text { max-width: 46ch; margin-left: 0; }
  .hero__honeycomb { inset: 0 -80px 0 auto; width: 50%; opacity: 1; justify-content: flex-start; }
  .hero__honeycomb .honeycomb { --hex-w: clamp(120px, 13vw, 170px); transform: none; }
}
.badge {
  display: inline-block; font-weight: 600; font-size: .88rem; color: var(--rosa-esc);
  padding: .5rem 1.1rem; border-radius: 50px; margin-bottom: 1.3rem;
}
.hero__title {
  font-family: var(--fonte-titulo); font-weight: 800;
  font-size: clamp(2rem, 7vw, 3.6rem); line-height: 1.12; margin-bottom: 1.1rem; max-width: 16ch;
}
.hl { color: var(--rosa); position: relative; white-space: nowrap; }
.hl::after { content: ""; position: absolute; left: -2%; bottom: 4px; width: 104%; height: 13px; background: var(--amarelo); opacity: .55; border-radius: 6px; z-index: -1; }
.hero__text { font-size: 1.08rem; font-weight: 500; color: #232838; max-width: 54ch; margin-bottom: 1.8rem; text-shadow: 0 1px 8px rgba(255,255,255,.7); }
.hero__actions { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.2rem; }
.hero__stats { display: flex; gap: 1.5rem; padding: 1rem 1.6rem; border-radius: var(--radius); }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--fonte-titulo); font-size: 1.6rem; color: var(--roxo); line-height: 1; }
.stat span { font-size: .82rem; color: var(--texto-sub); }

/* ===================== SEÇÕES ===================== */
.section { padding: clamp(2.5rem, 7vw, 5rem) 0; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 2.6rem; }
.section__tag {
  display: inline-block; font-weight: 700; font-size: .88rem; color: #9a6b00;
  background: rgba(255, 196, 0, .26); padding: .4rem 1rem; border-radius: 50px; margin-bottom: .8rem;
}
.section__tag a { color: inherit; font-weight: 800; text-decoration: none; cursor: pointer; padding: 0 .12em; transition: opacity .15s; }
.section__tag a:hover { text-decoration: underline; text-underline-offset: 3px; opacity: .75; }
.section__title { font-family: var(--fonte-titulo); font-weight: 800; font-size: clamp(1.7rem, 5vw, 2.7rem); margin-bottom: .6rem; }
.section__title--left { text-align: left; }
.section__sub { color: var(--texto-sub); font-size: 1.05rem; }

/* ===================== STEPS ===================== */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.step { position: relative; border-radius: var(--radius); padding: 2rem 1.1rem 1.4rem; text-align: center; transition: transform .25s; }
.step:hover { transform: translateY(-6px); }
.step__num {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amarelo), #ff9d00); color: #1d2030;
  font-family: var(--fonte-titulo); font-weight: 800; display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(255,157,0,.45);
}
.step__icon { font-size: 2.4rem; margin-bottom: .5rem; }
.step h3 { font-family: var(--fonte-titulo); font-weight: 700; font-size: 1.05rem; color: var(--rosa-esc); margin-bottom: .3rem; }
.step p { font-size: .86rem; color: var(--texto-sub); }

/* ===================== TAMANHOS DE KIT ===================== */
.kits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; align-items: stretch; }
.kit {
  position: relative; display: flex; flex-direction: column; border-radius: var(--radius);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
}
.kit:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(80,40,160,.22); }
.kit--featured { outline: 2px solid var(--rosa); }
.kit__ribbon {
  position: absolute; top: 14px; right: -34px; transform: rotate(45deg);
  background: linear-gradient(135deg, var(--amarelo), #ff9d00); color: #1d2030;
  font-family: var(--fonte-titulo); font-weight: 800; font-size: .72rem;
  padding: .25rem 2.6rem; z-index: 3; box-shadow: 0 3px 8px rgba(0,0,0,.2);
}
.kit__img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.kit__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.kit:hover .kit__img img { transform: scale(1.06); }
.kit__tag {
  position: absolute; bottom: 10px; left: 10px; width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center; font-family: var(--fonte-titulo); font-weight: 800; font-size: 1.2rem;
  color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.25); backdrop-filter: blur(4px);
}
.kit__tag--p  { background: linear-gradient(135deg, var(--azul), var(--azul-e)); }
.kit__tag--m  { background: linear-gradient(135deg, var(--vermelho), var(--vermelho-e)); }
.kit__tag--g  { background: linear-gradient(135deg, var(--amarelo), #ff9d00); color: #1d2030; }
.kit__tag--gg { background: linear-gradient(135deg, var(--vermelho), var(--amarelo) 55%, var(--azul)); font-size: 1rem; }
.kit__body { padding: 1.1rem 1.2rem .6rem; flex: 1; }
.kit__title { font-family: var(--fonte-titulo); font-weight: 800; font-size: 1.4rem; color: var(--roxo); }
.kit__price { font-family: var(--fonte-titulo); font-weight: 700; font-size: 1.5rem; color: var(--rosa-esc); margin-bottom: .6rem; }
.kit__price--soft { font-size: 1.05rem; color: var(--texto-sub); }
.kit__list { display: flex; flex-direction: column; gap: .3rem; }
.kit__list li { position: relative; padding-left: 1.4rem; font-size: .9rem; color: var(--texto-sub); }
.kit__list li::before { content: "✓"; position: absolute; left: 0; color: var(--azul); font-weight: 700; }
.kit .btn--block { margin: 0 1rem 1rem; width: auto; }
.tamanhos__note { text-align: center; margin-top: 2rem; padding: 1.1rem 1.4rem; border-radius: var(--radius-sm); color: var(--texto); font-size: .98rem; }
.kits__swipe { display: none; text-align: center; margin-top: .6rem; font-size: .85rem; font-weight: 600; color: var(--azul); }

.tema__emoji { font-size: 1.35rem; }

/* ===================== ASSISTENTE DE ORÇAMENTO ===================== */
.orc { border-radius: var(--radius); padding: 1.6rem 1.4rem; display: flex; flex-direction: column; gap: 1.4rem; }
.orc__field { display: flex; flex-direction: column; gap: .6rem; position: relative; }
.orc__label { font-family: var(--fonte-titulo); font-weight: 700; font-size: 1.05rem; color: var(--texto); display: flex; align-items: center; gap: .55rem; }
.orc__step-n { width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%; background: linear-gradient(135deg, var(--amarelo), #ff9d00); color: #1d2030; font-size: .9rem; font-weight: 800; display: grid; place-items: center; }
.orc__input {
  width: 100%; padding: .85rem 1rem; border-radius: var(--radius-sm); font-family: var(--fonte-texto);
  font-size: 1rem; color: var(--texto); background: #fff; border: 2px solid rgba(27,108,242,.25); transition: border-color .2s;
}
.orc__input:focus { outline: none; border-color: var(--azul); }
.orc__input--date { color-scheme: light; }
.orc__results { display: none; flex-direction: column; gap: .4rem; max-height: 280px; overflow-y: auto; padding-top: .2rem; }
.orc__results.is-open { display: flex; }
.orc__result {
  display: flex; align-items: center; gap: .6rem; width: 100%; text-align: left; cursor: pointer;
  padding: .7rem .9rem; border-radius: 12px; font-size: .95rem; font-weight: 500; color: var(--texto);
  background: rgba(255,255,255,.7); border: 1px solid var(--glass-brd); border-left: 4px solid var(--amarelo); transition: background .15s, transform .15s;
}
.orc__result:hover { background: #fff; transform: translateX(3px); }
.orc__result:nth-child(3n+1) { border-left-color: var(--vermelho); }
.orc__result:nth-child(3n+2) { border-left-color: var(--azul); }
.orc__result:nth-child(3n) { border-left-color: var(--amarelo); }
.orc__thumb { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 10px; object-fit: cover; box-shadow: 0 2px 6px rgba(0,0,0,.12); }

/* ===================== LOJA / MAPA ===================== */
.local { border-radius: var(--radius); padding: 1.2rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; max-width: 820px; margin-inline: auto; }
.local__map { width: 100%; aspect-ratio: 16/10; border-radius: var(--radius-sm); overflow: hidden; background: linear-gradient(135deg, #eef2ff, #fff0f6); display: grid; place-items: center; }
.local__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.local__placeholder { text-align: center; color: var(--texto-sub); font-weight: 600; }
.local__addr { text-align: center; font-weight: 600; color: var(--texto); font-size: .98rem; }
.local__btn { width: 100%; max-width: 320px; }

/* ===================== GALERIA DE TEMAS + LIGHTBOX ===================== */
.gt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
.gt-card {
  position: relative; border: none; cursor: pointer; padding: 0; border-radius: var(--radius-sm);
  overflow: hidden; background: var(--glass-bg); box-shadow: var(--glass-shadow);
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.gt-card:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(30,40,80,.2); }
.gt-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.gt-card__name { font-family: var(--fonte-titulo); font-weight: 700; font-size: .9rem; color: var(--azul-e); padding: .5rem .4rem .1rem; }
.gt-card__n { font-size: .74rem; color: var(--texto-sub); padding-bottom: .6rem; }

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(15,18,30,.93); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox__stage { margin: 0; display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.lightbox__stage img { max-width: 90vw; max-height: 78vh; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,.5); object-fit: contain; background: #fff; }
.lightbox__cap { color: #fff; font-weight: 600; font-size: .95rem; }
.lightbox__close { position: absolute; top: 14px; right: 16px; width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(255,255,255,.16); color: #fff; font-size: 1.3rem; cursor: pointer; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: none; background: rgba(255,255,255,.16); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.lightbox__nav:hover, .lightbox__close:hover { background: rgba(255,255,255,.32); }
.lightbox__prev { left: 12px; }
.lightbox__next { right: 12px; }
.orc__sizes { display: flex; gap: .6rem; flex-wrap: wrap; }
.orc__size {
  flex: 1 1 60px; min-width: 60px; padding: .8rem 0; border-radius: 14px; cursor: pointer;
  font-family: var(--fonte-titulo); font-weight: 800; font-size: 1.1rem; color: var(--azul-e);
  background: #fff; border: 2px solid rgba(27,108,242,.25); transition: all .18s;
}
.orc__size:hover { border-color: var(--azul); transform: translateY(-2px); }
.orc__size.is-active { background: var(--azul); color: #fff; border-color: transparent; }
.orc__help { font-size: .85rem; color: var(--azul); font-weight: 600; }
.orc__enviar { margin-top: .2rem; }
.orc__resumo { text-align: center; font-size: .95rem; color: var(--texto); background: rgba(255,196,0,.18); padding: .6rem; border-radius: 12px; }

/* ===================== GALERIA (MARQUEE ROLANTE) ===================== */
.marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track { display: flex; width: max-content; gap: 1rem; animation: marquee 25s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.m-card {
  flex: 0 0 auto; width: clamp(180px, 60vw, 230px); margin: 0; padding: 8px; border-radius: var(--radius);
  background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-brd); box-shadow: var(--glass-shadow);
}
.m-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 14px; }
.m-card figcaption { text-align: center; font-weight: 600; font-size: .9rem; color: var(--azul-e); padding: .55rem 0 .15rem; }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ===================== COLMEIA (HONEYCOMB) ===================== */
.honeycomb {
  --hex-w: clamp(92px, 27vw, 168px);
  --hex-h: calc(var(--hex-w) * 1.1547);
  --hex-gap: 8px;
  display: flex; flex-direction: column; align-items: center;
}
.hc-row { display: flex; }
.hc-row + .hc-row { margin-top: calc(var(--hex-h) * -0.255 + var(--hex-gap) * 0.5); }
.hex {
  position: relative; width: var(--hex-w); height: var(--hex-h);
  margin: 0 calc(var(--hex-gap) / 2); cursor: pointer;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform .3s ease, filter .3s ease; will-change: transform;
}
.hex img { width: 100%; height: 100%; object-fit: cover; }
.hex::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 3px rgba(255,255,255,.55); clip-path: inherit; pointer-events: none; }
.hex figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26% 6% 14%;
  background: linear-gradient(transparent, rgba(20,22,35,.82));
  color: #fff; font-size: .72rem; font-weight: 600; text-align: center;
  opacity: 0; transition: opacity .3s ease;
}
.hex:hover { transform: scale(1.06); z-index: 2; filter: drop-shadow(0 8px 18px rgba(30,40,80,.35)); }
.hex:hover figcaption { opacity: 1; }

/* ===================== DEPOIMENTOS ===================== */
.depo__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.depo { border-radius: var(--radius); padding: 1.6rem 1.4rem; display: flex; flex-direction: column; gap: .6rem; transition: transform .25s; }
.depo:hover { transform: translateY(-6px); }
.depo__stars { color: var(--amarelo); letter-spacing: 2px; font-size: 1.05rem; text-shadow: 0 1px 1px rgba(0,0,0,.12); }
.depo blockquote { font-size: .96rem; color: var(--texto); font-style: italic; line-height: 1.55; }
.depo figcaption { margin-top: auto; }
.depo figcaption strong { display: block; color: var(--azul-e); font-family: var(--fonte-titulo); }
.depo figcaption span { font-size: .82rem; color: var(--texto-sub); }
.depo__note, .faq__note { text-align: center; color: var(--texto-sub); font-size: .85rem; margin-top: 1.6rem; }

/* ===================== FAQ ===================== */
.faq { display: flex; flex-direction: column; gap: .8rem; }
.faq__item { border-radius: var(--radius-sm); padding: 0 1.3rem; overflow: hidden; }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.1rem 0; font-family: var(--fonte-titulo);
  font-weight: 600; font-size: 1.02rem; color: var(--texto); display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.6rem; color: var(--vermelho); line-height: 1; transition: transform .25s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 1.1rem; color: var(--texto-sub); font-size: .95rem; }
.faq__item p a { color: var(--azul); font-weight: 600; }

/* ===================== SOBRE ===================== */
.sobre__inner { display: grid; grid-template-columns: 1.3fr .9fr; gap: 2.4rem; align-items: center; border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.8rem); }
.sobre__content p { color: var(--texto-sub); margin-bottom: 1rem; font-size: 1.02rem; }
.sobre__content .btn { margin-top: .4rem; }
.sobre__cert { text-align: center; min-width: 0; }
.sobre__cert img { width: 100%; max-width: 320px; height: auto; margin-inline: auto; border-radius: var(--radius-sm); box-shadow: var(--glass-shadow); }
.sobre__cert-cap { display: block; font-size: .82rem; color: var(--texto-sub); margin-top: .5rem; }

/* ===================== CONTATO ===================== */
.contato__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; max-width: 640px; margin-inline: auto; }
.contato__card { border-radius: var(--radius); padding: 2rem 1.4rem; text-align: center; transition: transform .25s; }
.contato__card:hover { transform: translateY(-6px); }
.contato__icon { font-size: 2.6rem; margin-bottom: .4rem; }
.contato__card h3 { font-family: var(--fonte-titulo); font-weight: 700; font-size: 1.25rem; margin-bottom: .3rem; }
.contato__card p { color: var(--texto-sub); font-size: .9rem; margin-bottom: .7rem; }
.contato__value { font-weight: 600; color: var(--rosa-esc); }

/* ===================== FOOTER ===================== */
.footer { background: rgba(36, 31, 56, .92); backdrop-filter: blur(10px); color: #d8d3e8; margin-top: 3rem; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding: 3rem 0 2.2rem; }
.footer__brand .logo { font-size: 1.3rem; }
.footer__brand .logo__text { color: #fff; }
.footer__brand p { margin-top: .7rem; font-size: .9rem; max-width: 32ch; color: #b3acc9; }
.footer__links h4 { font-family: var(--fonte-titulo); color: #fff; margin-bottom: .8rem; }
.footer__links a { display: block; padding: .22rem 0; color: #b3acc9; transition: color .2s; font-size: .92rem; }
.footer__links a:hover { color: var(--rosa); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; text-align: center; font-size: .85rem; color: #9b94b5; }

/* ===================== WHATSAPP FLUTUANTE ===================== */
.whats-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 22px rgba(37,211,102,.45);
  animation: pulse 2.5s infinite; transition: transform .2s;
}
.whats-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===================== MOTION / REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(28px) scale(.985); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: none; }

/* Barra de progresso de rolagem */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 400; pointer-events: none;
  background: linear-gradient(90deg, var(--vermelho), var(--amarelo), var(--azul)); transition: width .08s linear; }

/* Zoom suave nas fotos */
.gt-card img { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.gt-card:hover img { transform: scale(1.09); }

/* Confete */
.confetti-piece { position: fixed; top: -14px; width: 10px; height: 14px; z-index: 350; border-radius: 2px; opacity: .92; pointer-events: none; animation: confettiFall 2.4s linear forwards; }
@keyframes confettiFall { to { transform: translateY(106vh) rotate(680deg); opacity: .85; } }
@media (prefers-reduced-motion: reduce) { .confetti-piece, .progress { display: none !important; } }

/* Header ganha sombra ao rolar */
.header.is-scrolled .header__inner { box-shadow: 0 8px 26px rgba(30,40,80,.18); }

/* Botão principal do topo com brilho pulsante */
.hero__actions .btn--primary { position: relative; }
.hero__actions .btn--primary::after {
  content: ""; position: absolute; inset: 0; border-radius: 50px; z-index: -1;
  animation: ctaPulse 2.6s ease-out infinite;
}
@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(27,108,242,.45); }
  70% { box-shadow: 0 0 0 18px rgba(27,108,242,0); }
  100% { box-shadow: 0 0 0 0 rgba(27,108,242,0); }
}

/* Destaque com gradiente animado ("montada por você") */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hl {
    background: linear-gradient(90deg, var(--vermelho), #ff7aa8, var(--vermelho));
    background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; animation: hlShine 4.5s linear infinite;
  }
}
@keyframes hlShine { to { background-position: 200% center; } }

/* Galeria: "Ver mais" */
.gt-card.is-hidden { display: none; }
.gt-more { text-align: center; margin-top: 1.4rem; }

@media (prefers-reduced-motion: reduce) {
  .hero__actions .btn--primary::after, .hl { animation: none !important; }
  .hl { -webkit-text-fill-color: var(--vermelho); }
  .hero__honeycomb { transform: none !important; }
}

/* Entrada do topo (hero) */
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero__inner > * { animation: heroIn .7s cubic-bezier(.2,.7,.2,1) both; }
.hero__inner > *:nth-child(1) { animation-delay: .05s; }
.hero__inner > *:nth-child(2) { animation-delay: .16s; }
.hero__inner > *:nth-child(3) { animation-delay: .28s; }
.hero__inner > *:nth-child(4) { animation-delay: .40s; }

/* Micro-interação nos botões */
.btn:active { transform: translateY(-1px) scale(.97); }

/* Respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .hero__inner > *, .reveal { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
  .blob, .marquee__track, .whats-float, .balloon { animation: none !important; }
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .kits__grid { grid-template-columns: repeat(2, 1fr); }
  .depo__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .contato__grid { grid-template-columns: 1fr; }
  .sobre__inner { grid-template-columns: 1fr; text-align: center; }
  .sobre__content .section__title--left { text-align: center; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand p { margin-inline: auto; }
  .footer__brand .logo { justify-content: center; }
}

/* Menu mobile */
@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 76px 4% auto 4%; flex-direction: column; gap: 0; align-items: stretch;
    border-radius: var(--radius); padding: .6rem; background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-brd); box-shadow: var(--glass-shadow);
    transform: translateY(-150%); opacity: 0; transition: transform .35s ease, opacity .3s ease;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav__link { padding: .85rem 1rem; border-radius: 12px; }
  .nav__cta { margin-top: .3rem; text-align: center; }
  .nav__toggle { display: flex; }
  .nav__toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 600px) {
  /* Tamanhos viram carrossel horizontal arrastável */
  .kits__grid {
    display: flex; grid-template-columns: none; max-width: none;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; gap: 1rem;
    padding: .6rem 4% 1.2rem; margin-inline: -4%;
    scroll-padding-left: 4%; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .kits__grid::-webkit-scrollbar { display: none; }
  .kit { flex: 0 0 80%; scroll-snap-align: center; }
  .kits__swipe { display: block; }
  .hero__stats { gap: 1.1rem; padding: .9rem 1.2rem; }

  /* Passos compactos: número à esquerda, texto à direita */
  .steps { grid-template-columns: 1fr; gap: .7rem; }
  .step {
    display: grid; grid-template-columns: 40px 1fr; align-items: center;
    column-gap: .9rem; row-gap: .1rem; text-align: left; padding: .85rem 1.1rem;
  }
  .step__num { position: static; transform: none; grid-row: 1 / 3; align-self: center; }
  .step__icon { display: none; }
  .step h3 { grid-column: 2; margin: 0; }
  .step p { grid-column: 2; font-size: .85rem; }
}
