/* ══════════════════════════════════════════════════════════════
   MARA BOLOS — Design System
   Identidade: rosa #ea3f62 · verde-água #17ae9a · creme · dourado
   Tipografia: Fraunces (títulos) · Pacifico (script) · Quicksand
   ══════════════════════════════════════════════════════════════ */

:root {
  --rosa: #ea3f62;
  --rosa-escuro: #c92e4e;
  --rosa-suave: #ffe3ea;
  --rosa-pastel: #fff0f4;
  --teal: #17ae9a;
  --teal-escuro: #0d7f70;
  --teal-suave: #d9f5f0;
  --creme: #fff6e8;
  --creme-forte: #fbe9bf;
  --dourado: #f4c85c;
  --ink: #33222b;
  --ink-suave: #7d6b74;
  --branco: #ffffff;
  --fundo: #fffaf6;

  --f-display: 'Fraunces', Georgia, serif;
  --f-script: 'Pacifico', cursive;
  --f-corpo: 'Quicksand', 'Segoe UI', sans-serif;

  --sombra-sm: 0 4px 14px rgba(51, 34, 43, .07);
  --sombra-md: 0 14px 34px rgba(234, 63, 98, .14);
  --sombra-lg: 0 24px 60px rgba(51, 34, 43, .16);
  --raio: 22px;
  --transicao: .25s cubic-bezier(.4, 0, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--f-corpo);
  color: var(--ink);
  background: var(--fundo);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

::selection { background: var(--rosa); color: var(--branco); }

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

/* ── Tipografia utilitária ─────────────────────────────────── */
.script {
  font-family: var(--f-script);
  color: var(--teal);
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

.titulo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 1rem;
}
.titulo em { font-style: italic; color: var(--rosa); }

.paragrafo { color: var(--ink-suave); font-size: 1.05rem; max-width: 38rem; }
.paragrafo--centro { margin-inline: auto; }

.section__head { text-align: center; margin-bottom: 3.2rem; }

/* ── Botões ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transicao), box-shadow var(--transicao), background var(--transicao), color var(--transicao);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.98); }
.btn--lg { padding: 1rem 2.1rem; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--rosa) 0%, var(--rosa-escuro) 100%);
  color: var(--branco);
  box-shadow: 0 10px 26px rgba(234, 63, 98, .38);
}
.btn--primary:hover { box-shadow: 0 14px 32px rgba(234, 63, 98, .5); }

.btn__seta { transition: transform var(--transicao); }
.btn--primary:hover .btn__seta { transform: translateX(5px); }

.btn--ghost {
  border-color: var(--rosa);
  color: var(--rosa);
  background: transparent;
}
.btn--ghost:hover { background: var(--rosa); color: var(--branco); }

.btn--whats {
  background: #22c55e;
  color: var(--branco);
  box-shadow: 0 8px 22px rgba(34, 197, 94, .35);
}
.btn--whats:hover { background: #16a34a; }

.btn--claro {
  background: var(--branco);
  color: var(--rosa-escuro);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
}
.btn--claro:hover { background: var(--creme-forte); }

/* ── Scallops (borda do logo levada para o layout) ─────────── */
.scallop { height: 26px; position: relative; z-index: 2; }
.scallop--hero {
  background-image: radial-gradient(circle at 22px -8px, transparent 26px, var(--fundo) 27px);
  background-size: 44px 26px;
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.scallop--creme-topo {
  background-image: radial-gradient(circle at 22px 34px, transparent 26px, var(--fundo) 27px);
  background-size: 44px 26px;
  position: absolute;
  top: 0; left: 0; right: 0;
  transform: rotate(180deg);
}
.scallop--creme-base {
  background-image: radial-gradient(circle at 22px -8px, transparent 26px, var(--fundo) 27px);
  background-size: 44px 26px;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  transform: rotate(180deg);
}
.scallop--footer {
  background-image: radial-gradient(circle at 22px -8px, transparent 26px, var(--fundo) 27px);
  background-size: 44px 26px;
  transform: rotate(180deg);
}

/* ══════════════════════════════════════════════════════════════
   NAVEGAÇÃO
   ══════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 250, 246, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transicao), box-shadow var(--transicao);
}
.header.rolou {
  border-color: rgba(234, 63, 98, .1);
  box-shadow: 0 6px 24px rgba(51, 34, 43, .08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 78px;
  transition: height var(--transicao);
}
.header.rolou .nav { height: 66px; }

.nav__brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav__logo {
  width: 48px; height: 48px;
  transition: transform .4s ease;
}
.nav__brand:hover .nav__logo { transform: rotate(-8deg) scale(1.06); }
.nav__title {
  font-family: var(--f-script);
  font-size: 1.3rem;
  color: var(--rosa);
  line-height: 1;
}
.nav__title em { font-style: normal; color: var(--teal); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-weight: 600;
  font-size: .93rem;
  color: var(--ink);
  position: relative;
  padding: .3rem 0;
  transition: color var(--transicao);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -3px;
  width: 0; height: 3px;
  border-radius: 3px;
  background: var(--rosa);
  transform: translateX(-50%);
  transition: width .28s ease;
}
.nav__link:hover, .nav__link.active { color: var(--rosa); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__cta { padding: .62rem 1.25rem; font-size: .87rem; flex-shrink: 0; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 110;
}
.nav__toggle span {
  width: 26px; height: 3px;
  border-radius: 3px;
  background: var(--rosa);
  transition: transform .3s ease, opacity .3s ease;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 165px 0 155px;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(23, 174, 154, .12), transparent),
    radial-gradient(ellipse 55% 60% at 10% 80%, rgba(244, 200, 92, .16), transparent),
    linear-gradient(160deg, var(--rosa-pastel) 0%, var(--rosa-suave) 60%, var(--teal-suave) 100%);
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  pointer-events: none;
}
.hero__blob--1 { width: 420px; height: 420px; background: var(--rosa-suave); top: -140px; right: -80px; }
.hero__blob--2 { width: 460px; height: 460px; background: var(--teal-suave); bottom: -180px; left: -120px; }

/* Confetes flutuantes */
.confete {
  position: absolute;
  border-radius: 4px;
  opacity: .7;
  pointer-events: none;
  animation: confeteFlutua 7s ease-in-out infinite;
}
.confete--1 { width: 14px; height: 14px; background: var(--dourado); top: 22%; left: 6%; transform: rotate(20deg); }
.confete--2 { width: 10px; height: 10px; background: var(--teal); border-radius: 50%; top: 15%; left: 44%; animation-delay: -2s; }
.confete--3 { width: 16px; height: 8px; background: var(--rosa); top: 68%; left: 3%; transform: rotate(-15deg); animation-delay: -4s; }
.confete--4 { width: 12px; height: 12px; background: var(--rosa); border-radius: 50%; top: 12%; right: 38%; animation-delay: -1s; }
.confete--5 { width: 14px; height: 7px; background: var(--teal); top: 80%; right: 6%; transform: rotate(30deg); animation-delay: -3s; }
.confete--6 { width: 10px; height: 10px; background: var(--dourado); border-radius: 50%; top: 55%; right: 3%; animation-delay: -5s; }

@keyframes confeteFlutua {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(35deg); }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 3rem;
}

.hero__script {
  font-family: var(--f-script);
  color: var(--rosa);
  font-size: 1.35rem;
  margin-bottom: .9rem;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 1.3rem;
}

.grifo { position: relative; color: var(--rosa); white-space: nowrap; }
.grifo__traco {
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 12px;
  color: var(--dourado);
}

.hero__text {
  font-size: 1.12rem;
  color: var(--ink-suave);
  max-width: 33rem;
  margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }

.hero__prova {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__avatares { display: flex; }
.hero__avatares span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--branco);
  border: 3px solid var(--rosa-suave);
  font-size: 1.25rem;
  margin-left: -12px;
  box-shadow: var(--sombra-sm);
}
.hero__avatares span:first-child { margin-left: 0; }
.hero__prova strong { display: block; font-size: .98rem; }
.hero__prova span { font-size: .85rem; color: var(--ink-suave); }

/* Visual do hero */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__selo {
  width: min(400px, 78vw);
  animation: flutuar 5.5s ease-in-out infinite;
  filter: drop-shadow(0 26px 44px rgba(234, 63, 98, .32));
}

@keyframes flutuar {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

.hero__giro {
  position: absolute;
  top: -26px; right: 0;
  width: 148px; height: 148px;
  animation: girar 18s linear infinite;
}
.hero__giro text {
  font-family: var(--f-corpo);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 2.5px;
  fill: var(--teal-escuro);
}

@keyframes girar { to { transform: rotate(360deg); } }

.hero__card {
  position: absolute;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: .6rem 1.2rem;
  font-weight: 700;
  font-size: .88rem;
  box-shadow: var(--sombra-md);
  animation: flutuar 6s ease-in-out infinite;
}
.hero__card--1 { left: -14px; top: 22%; animation-delay: -1.5s; }
.hero__card--2 { right: -8px; bottom: 12%; animation-delay: -3.5s; }

/* ══════════════════════════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════════════════════════ */
.marquee {
  background: var(--teal);
  color: var(--branco);
  overflow: hidden;
  padding: .85rem 0;
  transform: rotate(-1deg) scale(1.02);
  box-shadow: var(--sombra-sm);
}
.marquee__faixa {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee__faixa span {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__faixa i { font-style: normal; color: var(--creme-forte); }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════════════════
   SEÇÕES
   ══════════════════════════════════════════════════════════════ */
.section { padding: 105px 0; position: relative; }
.section--creme { background: var(--creme); padding-top: 130px; padding-bottom: 130px; }

/* ── Sobre ─────────────────────────────────────────────────── */
.sobre__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.sobre__colagem {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.colagem__item {
  border-radius: var(--raio);
  padding: 1.6rem 1.2rem;
  text-align: center;
  box-shadow: var(--sombra-sm);
  transition: transform var(--transicao), box-shadow var(--transicao);
}
.colagem__item:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--sombra-md); }
.colagem__item span { font-size: 2.6rem; display: block; margin-bottom: .4rem; }
.colagem__item p { font-weight: 700; font-size: .95rem; }

.colagem__item--a { background: var(--rosa-suave); transform: rotate(-2deg); }
.colagem__item--b { background: var(--teal-suave); transform: rotate(2deg) translateY(18px); }
.colagem__item--c { background: var(--creme-forte); transform: rotate(-1deg); grid-column: 1 / -1; width: 72%; margin-inline: auto; }

.colagem__selo {
  position: absolute;
  top: -24px; right: -10px;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--rosa);
  color: var(--branco);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  line-height: 1.15;
  text-align: center;
  box-shadow: var(--sombra-md);
  transform: rotate(8deg);
  animation: flutuar 6s ease-in-out infinite;
}
.colagem__selo strong { font-family: var(--f-display); font-size: 1.35rem; }

.sobre__lista { margin: 1.4rem 0 2rem; display: grid; gap: .55rem; }
.sobre__lista li { font-weight: 600; color: var(--ink); }

.numeros {
  display: flex;
  gap: 2.6rem;
  flex-wrap: wrap;
}
.numero strong {
  font-family: var(--f-display);
  font-size: 2.3rem;
  color: var(--rosa);
  line-height: 1;
  display: block;
}
.numero strong::after { content: '+'; color: var(--teal); }
.numero span { font-size: .85rem; color: var(--ink-suave); line-height: 1.3; display: block; margin-top: .3rem; }

/* ── Cardápio ──────────────────────────────────────────────── */
.filtro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.6rem;
}

.filtro__btn {
  font-weight: 700;
  font-size: .92rem;
  padding: .6rem 1.5rem;
  border-radius: 999px;
  border: 2px solid rgba(23, 174, 154, .4);
  background: var(--branco);
  color: var(--teal-escuro);
  cursor: pointer;
  transition: all var(--transicao);
}
.filtro__btn:hover { border-color: var(--teal); transform: translateY(-2px); }
.filtro__btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--branco);
  box-shadow: 0 8px 20px rgba(23, 174, 154, .4);
}

.cardapio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.7rem;
}

.produto {
  position: relative;
  background: var(--branco);
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra-sm);
  transition: transform var(--transicao), box-shadow var(--transicao), opacity .35s ease;
}
.produto:hover { transform: translateY(-10px); box-shadow: var(--sombra-md); }
.produto.escondido { display: none; }
.produto.aparecendo { animation: aparecer .4s ease both; }

@keyframes aparecer {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to { opacity: 1; transform: none; }
}

.produto__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--rosa);
  color: var(--branco);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 999px;
  box-shadow: var(--sombra-sm);
}
.produto__badge--teal { background: var(--teal); }

.produto__img {
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.produto__img span {
  font-size: 4.2rem;
  transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
}
.produto:hover .produto__img span { transform: scale(1.18) rotate(-6deg); }

.produto__img--rosa { background: radial-gradient(circle at 30% 20%, #ffd0dc, var(--rosa-suave)); }
.produto__img--teal { background: radial-gradient(circle at 30% 20%, #c0efe7, var(--teal-suave)); }
.produto__img--creme { background: radial-gradient(circle at 30% 20%, #ffeecb, var(--creme-forte)); }

.produto__body { padding: 1.5rem 1.6rem 1.7rem; }
.produto__body h3 {
  font-family: var(--f-display);
  font-size: 1.22rem;
  margin-bottom: .5rem;
}
.produto__body p { font-size: .93rem; color: var(--ink-suave); margin-bottom: 1.1rem; }

.produto__link {
  font-weight: 700;
  font-size: .93rem;
  color: var(--teal-escuro);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color var(--transicao);
}
.produto__link b { transition: transform var(--transicao); }
.produto__link:hover { color: var(--rosa); }
.produto__link:hover b { transform: translateX(5px); }

/* ── Passos ────────────────────────────────────────────────── */
.passos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.passo {
  position: relative;
  background: var(--branco);
  border: 2px solid var(--rosa-suave);
  border-radius: var(--raio);
  padding: 2.2rem 1.5rem 1.8rem;
  text-align: center;
  transition: transform var(--transicao), box-shadow var(--transicao), border-color var(--transicao);
}
.passo:hover { transform: translateY(-8px); box-shadow: var(--sombra-md); border-color: var(--rosa); }

.passo__num {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--rosa);
  color: var(--branco);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(234, 63, 98, .4);
}
.passo__icone { font-size: 2.3rem; margin-bottom: .7rem; }
.passo h3 { font-family: var(--f-display); font-size: 1.08rem; margin-bottom: .45rem; }
.passo p { font-size: .89rem; color: var(--ink-suave); }

/* ── CTA banner ────────────────────────────────────────────── */
.cta-banner {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .18), transparent 40%),
    linear-gradient(135deg, var(--teal) 0%, var(--teal-escuro) 100%);
  color: var(--branco);
  border-radius: calc(var(--raio) + 6px);
  padding: 2.6rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(13, 127, 112, .35);
}
.cta-banner h3 { font-family: var(--f-display); font-size: 1.55rem; margin-bottom: .35rem; }
.cta-banner p { opacity: .92; font-size: .98rem; max-width: 34rem; }

/* ── Depoimentos ───────────────────────────────────────────── */
.slider { max-width: 780px; margin-inline: auto; }
.slider__janela { overflow: hidden; border-radius: var(--raio); }
.slider__track { display: flex; transition: transform .55s cubic-bezier(.4, 0, .2, 1); }

.depo {
  min-width: 100%;
  position: relative;
  background: var(--branco);
  border-radius: var(--raio);
  padding: 2.8rem 2.6rem 2.4rem;
  box-shadow: var(--sombra-sm);
}
.depo__aspas {
  position: absolute;
  top: .6rem; left: 1.6rem;
  font-family: var(--f-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--rosa-suave);
}
.depo__stars { color: var(--dourado); font-size: 1.15rem; letter-spacing: 4px; margin-bottom: 1rem; position: relative; }
.depo p { font-size: 1.08rem; margin-bottom: 1.5rem; position: relative; }

.depo footer { display: flex; align-items: center; gap: .9rem; }
.depo__foto {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rosa), var(--rosa-escuro));
  color: var(--branco);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.depo footer strong { display: block; font-size: .98rem; }
.depo footer em { font-style: normal; font-size: .84rem; color: var(--ink-suave); }

.slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  margin-top: 1.8rem;
}

.slider__btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--rosa);
  background: var(--branco);
  color: var(--rosa);
  font-size: 1.15rem;
  cursor: pointer;
  transition: all var(--transicao);
}
.slider__btn:hover { background: var(--rosa); color: var(--branco); transform: translateY(-2px); }

.slider__dots { display: flex; gap: .5rem; }
.slider__dots button {
  width: 10px; height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(234, 63, 98, .25);
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.slider__dots button.active { background: var(--rosa); width: 28px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { display: grid; gap: .9rem; }

.faq__item {
  background: var(--branco);
  border: 2px solid var(--rosa-suave);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color var(--transicao), box-shadow var(--transicao);
}
.faq__item[open] { border-color: var(--rosa); box-shadow: var(--sombra-sm); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 700;
  font-size: 1rem;
  transition: color var(--transicao);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--rosa); }

.faq__seta {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--rosa-suave);
  color: var(--rosa);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, background var(--transicao), color var(--transicao);
}
.faq__item[open] .faq__seta { transform: rotate(45deg); background: var(--rosa); color: var(--branco); }

.faq__resposta { padding: 0 1.4rem 1.3rem; color: var(--ink-suave); font-size: .96rem; }

/* ── Instagram ─────────────────────────────────────────────── */
.insta { padding: 0 0 105px; }

.insta__card {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .22), transparent 45%),
    linear-gradient(120deg, #f58529 0%, #dd2a7b 45%, #8134af 100%);
  color: var(--branco);
  border-radius: calc(var(--raio) + 6px);
  padding: 2.6rem 3rem;
  box-shadow: 0 20px 50px rgba(221, 42, 123, .35);
}
.insta__icone {
  width: 68px; height: 68px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.insta__texto { flex: 1; min-width: 240px; }
.insta__texto h2 { font-family: var(--f-display); font-size: 1.55rem; margin-bottom: .3rem; }
.insta__texto p { opacity: .93; }

/* ── Contato ───────────────────────────────────────────────── */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.6rem;
  align-items: start;
}

.contato__info { display: flex; flex-direction: column; gap: 1rem; }

.contato__item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--branco);
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 1.15rem 1.4rem;
  box-shadow: var(--sombra-sm);
  transition: border-color var(--transicao), transform var(--transicao);
}
a.contato__item:hover { border-color: var(--rosa); transform: translateX(8px); }
.contato__icon {
  font-size: 1.4rem;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--rosa-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contato__item div { flex: 1; }
.contato__item strong { display: block; font-size: .95rem; }
.contato__item span { font-size: .9rem; color: var(--ink-suave); }
.contato__seta { color: var(--rosa); opacity: 0; transition: opacity var(--transicao); }
a.contato__item:hover .contato__seta { opacity: 1; }

/* Formulário */
.form {
  background: var(--branco);
  border-radius: calc(var(--raio) + 4px);
  padding: 2.3rem 2.2rem;
  box-shadow: var(--sombra-lg);
  border-top: 6px solid var(--rosa);
}
.form__title { font-family: var(--f-display); font-size: 1.5rem; }
.form__subtitle { font-size: .92rem; color: var(--ink-suave); margin: .35rem 0 1.5rem; }

.form__duplo { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1rem; }

.form__row { margin-bottom: 1.1rem; }
.form__row label {
  display: block;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: .4rem;
}
.form__row input,
.form__row select,
.form__row textarea {
  width: 100%;
  font-family: var(--f-corpo);
  font-size: .95rem;
  padding: .8rem 1.05rem;
  border: 2px solid #f3e4e9;
  border-radius: 14px;
  background: var(--fundo);
  color: var(--ink);
  transition: border-color var(--transicao), box-shadow var(--transicao);
  resize: vertical;
}
.form__row input:focus,
.form__row select:focus,
.form__row textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(23, 174, 154, .14);
}
.form__row input.erro, .form__row select.erro { border-color: var(--rosa); }

.form__aviso {
  margin-top: .9rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--teal-escuro);
  text-align: center;
  min-height: 1.2em;
}

/* ══════════════════════════════════════════════════════════════
   RODAPÉ
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: #ece0e5;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.2fr;
  gap: 2.6rem;
  padding: 55px 0 45px;
}

.footer__logo { width: 92px; margin-bottom: 1.1rem; }
.footer__brand p { font-size: .93rem; opacity: .82; max-width: 25rem; }

.footer__social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  transition: background var(--transicao), transform var(--transicao);
}
.footer__social a:hover { background: var(--rosa); transform: translateY(-4px); }

.footer__col h4 {
  font-family: var(--f-script);
  font-weight: 400;
  color: var(--creme-forte);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
.footer__col li { margin-bottom: .6rem; font-size: .92rem; }
.footer__col a { opacity: .82; transition: opacity var(--transicao), color var(--transicao); }
.footer__col a:hover { opacity: 1; color: var(--rosa-suave); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.25rem 0;
}
.footer__bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  font-size: .85rem;
  opacity: .75;
}

/* ── Flutuantes ────────────────────────────────────────────── */
.whats-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(34, 197, 94, .45);
  transition: transform var(--transicao);
  animation: pulsar 2.6s infinite;
}
.whats-float:hover { transform: scale(1.12) rotate(8deg); }

@keyframes pulsar {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .45); }
  70% { box-shadow: 0 0 0 18px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.back-top {
  position: fixed;
  right: 30px; bottom: 98px;
  z-index: 90;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--rosa);
  color: var(--branco);
  font-size: 1.15rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .3s ease;
  box-shadow: 0 8px 20px rgba(234, 63, 98, .4);
}
.back-top.visivel { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--rosa-escuro); }

/* ── Reveal ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, .8, .36, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.visivel { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__card--1 { left: 0; }
  .hero__card--2 { right: 0; }
  .sobre__grid { gap: 2.6rem; }
}

@media (max-width: 900px) {
  .hero { padding: 135px 0 130px; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__text { margin-inline: auto; }
  .hero__actions, .hero__prova { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__selo { width: min(250px, 58vw); }
  .hero__giro { top: -18px; right: 8%; width: 110px; height: 110px; }
  .hero__card { font-size: .8rem; }
  .grifo__traco { bottom: -3px; }

  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__colagem { max-width: 460px; margin-inline: auto; }
  .sobre__conteudo { text-align: center; }
  .sobre__conteudo .paragrafo { margin-inline: auto; }
  .sobre__lista { justify-items: center; }
  .numeros { justify-content: center; }

  .passos { grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; }
  .contato__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-banner, .insta__card { justify-content: center; text-align: center; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }

  .nav__menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--branco);
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    box-shadow: -18px 0 50px rgba(51, 34, 43, .18);
    transform: translateX(105%);
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link { font-size: 1.05rem; }

  .section { padding: 80px 0; }
  .section--creme { padding-top: 105px; padding-bottom: 105px; }
  .insta { padding-bottom: 80px; }
  .cta-banner, .insta__card { padding: 2.2rem 1.8rem; }
  .form__duplo { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 520px) {
  .hero { padding: 120px 0 115px; }
  .hero__title { letter-spacing: -.5px; }
  .hero__prova { flex-direction: column; gap: .6rem; }
  .hero__giro { display: none; }
  .hero__card--1 { top: -6px; }
  .hero__card--2 { bottom: -14px; }

  .passos { grid-template-columns: 1fr; }
  .colagem__selo { width: 78px; height: 78px; top: -18px; right: 0; }
  .numeros { gap: 1.6rem; }
  .numero strong { font-size: 1.9rem; }

  .depo { padding: 2.2rem 1.5rem 2rem; }
  .form { padding: 1.8rem 1.4rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; padding: 45px 0 32px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .whats-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .back-top { right: 21px; bottom: 84px; }
}
