/* ============================================================
   MOLDES AVULSOS PROFISSIONAIS — Design System
   Paleta original: mauve #ba9b8e · creme #fdf8f6 · grafite #1a1a1a
   Tipografia: Playfair Display (títulos) + Inter (texto)
   ============================================================ */

:root {
  --mauve:      #ba9b8e;
  --mauve-dark: #9c7d70;
  --mauve-soft: #e7d7cf;
  --cream:      #fdf8f6;
  --cream-2:    #f6ece7;
  --ink:        #1a1a1a;
  --ink-soft:   #4a4441;
  --ink-mute:   #8a807b;
  --line:       #eaddd6;
  --white:      #ffffff;
  --wa:         #25d366;

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(26,26,26,.05);
  --shadow:    0 14px 40px rgba(120,90,75,.13);
  --shadow-lg: 0 28px 70px rgba(120,90,75,.18);
  --max: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 700; color: var(--ink); }
em { font-style: italic; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--ink); color: var(--cream);
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  letter-spacing: .02em; text-transform: uppercase;
  padding: 16px 34px; border: none; border-radius: 100px; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); background: var(--mauve-dark); }
.btn--lg { padding: 19px 44px; font-size: 1.05rem; }
.btn--sm { padding: 11px 22px; font-size: .82rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-soon {
  background: var(--mauve-soft); color: var(--ink-mute); cursor: not-allowed;
  box-shadow: none; pointer-events: none;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,248,246,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 70px; }
.nav__brand { display: flex; align-items: center; gap: 11px; }
.nav__brand-mark {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--mauve); color: var(--white);
  font-family: var(--serif); font-size: 1.25rem; font-weight: 700;
}
.nav__brand-text { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; line-height: 1.1; display: flex; flex-direction: column; }
.nav__brand-text small { font-family: var(--sans); font-weight: 500; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mauve-dark); }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { font-size: .9rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--mauve); transition: width .3s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 6px; }
.nav__menu-cta { display: none; }

/* Hamburger */
.nav__toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 0; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .25s; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(80px, 13vw, 150px) 0 clamp(70px, 11vw, 130px); text-align: center; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(186,155,142,.22), transparent 70%),
    radial-gradient(40% 40% at 85% 80%, rgba(231,215,207,.5), transparent 70%),
    linear-gradient(180deg, var(--cream), var(--cream-2));
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(186,155,142,.16) 1px, transparent 1px);
  background-size: 26px 26px; mask-image: radial-gradient(70% 60% at 50% 35%, #000, transparent);
}
.hero__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero__eyebrow {
  display: inline-block; font-size: .76rem; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--mauve-dark);
  padding: 8px 18px; border: 1px solid var(--mauve-soft); border-radius: 100px;
  background: rgba(255,255,255,.5); margin-bottom: 26px;
}
.hero__title { font-family: var(--serif); font-weight: 700; font-size: clamp(2.6rem, 7vw, 4.8rem); line-height: 1.04; letter-spacing: -.015em; }
.hero__lead { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: var(--ink-soft); max-width: 620px; margin: 26px auto 38px; }
.hero__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 40px; font-size: .88rem; color: var(--ink-soft); font-weight: 500; }

/* ---------- Seções ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--cream { background: var(--cream-2); }
.section--dark { background: var(--ink); color: var(--cream); }
.section__title { font-family: var(--serif); font-weight: 700; font-size: clamp(1.9rem, 4.2vw, 2.9rem); line-height: 1.15; letter-spacing: -.01em; text-align: center; max-width: 760px; margin: 0 auto; }
.section__title em { color: var(--mauve-dark); }
.section__title--left { text-align: left; margin: 0; }
.section__title small { font-family: var(--sans); font-weight: 500; font-size: .5em; color: var(--mauve-dark); display: block; margin-top: 4px; }
.section__sub { text-align: center; color: var(--ink-soft); margin-top: 12px; font-size: 1.08rem; }
.section__cta { text-align: center; margin-top: 48px; }
.kicker { display: inline-block; font-size: .76rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--mauve-dark); margin-bottom: 14px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 60px; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 32px; position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__num { position: absolute; top: -22px; left: 32px; width: 48px; height: 48px; border-radius: 50%; background: var(--mauve); color: var(--white); font-family: var(--serif); font-size: 1.4rem; font-weight: 700; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.step h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin: 18px 0 12px; }
.step p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Bônus ---------- */
.bonus { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.bonus__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 30px; text-align: center; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.bonus__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bonus__icon { width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); border: 1.5px solid var(--mauve-soft); color: var(--mauve-dark); font-size: 1.4rem; }
.bonus__card h3 { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; margin-bottom: 12px; }
.bonus__card p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Medidas / Criadora (2 colunas) ---------- */
.medidas, .criadora { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.medidas__text p { color: var(--ink-soft); margin-top: 18px; font-size: 1.06rem; }
.medidas__img img, .criadora__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.medidas__img { border-radius: var(--radius-lg); padding: 14px; background: var(--white); border: 1px solid var(--line); }
.criadora__img { position: relative; }
.criadora__img::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1.5px solid var(--mauve-soft); border-radius: var(--radius-lg); z-index: -1; }
.criadora__text p { color: var(--ink-soft); margin-top: 16px; font-size: 1.06rem; }

/* ---------- Filtros ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 44px 0 50px; }
.filter { font-family: var(--sans); font-size: .9rem; font-weight: 500; color: var(--ink-soft); background: var(--white); border: 1px solid var(--line); padding: 11px 22px; border-radius: 100px; cursor: pointer; transition: all .25s var(--ease); }
.filter:hover { border-color: var(--mauve); color: var(--ink); }
.filter.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ---------- Catálogo ---------- */
.cat-group { margin-bottom: 64px; }
.cat-group:last-child { margin-bottom: 0; }
.cat-group__title { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 600; margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px solid var(--line); display: flex; align-items: baseline; gap: 12px; }
.cat-group__title span { font-family: var(--sans); font-size: .8rem; font-weight: 500; color: var(--mauve-dark); }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--cream-2); }
.card__media--fallback { display: grid; place-items: center; }
.card__media--fallback::after { content: "Moldes Avulsos"; font-family: var(--serif); font-size: .9rem; color: var(--mauve-dark); letter-spacing: .04em; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__badge { position: absolute; top: 12px; left: 12px; background: rgba(26,26,26,.85); color: var(--cream); font-size: .66rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; backdrop-filter: blur(4px); }
.card__badge--soon { background: rgba(186,155,142,.95); }
.card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.card__name { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; line-height: 1.25; }
.card__meta { font-size: .78rem; color: var(--ink-mute); margin: 6px 0 14px; }
.card__price { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.card__price small { font-family: var(--sans); font-size: .8rem; font-weight: 500; color: var(--ink-mute); }
.card__cta { margin-top: auto; }

/* ---------- Carrossel ---------- */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 22px; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; padding: 6px 2px 10px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > .card {
  scroll-snap-align: start; flex: 0 0 calc((100% - 3 * 22px) / 4); min-width: 0;
}
.carousel__nav {
  position: absolute; top: calc(50% - 28px); transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px); color: var(--ink);
  font-size: 1.5rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), background .2s, opacity .25s, visibility .25s;
}
.carousel__nav:hover { background: var(--ink); color: var(--cream); transform: translateY(-50%) scale(1.06); }
.carousel__nav--prev { left: -10px; }
.carousel__nav--next { right: -10px; }
.carousel__nav[disabled] { opacity: 0; visibility: hidden; pointer-events: none; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.carousel__dot { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: var(--mauve-soft); transition: width .25s var(--ease), background .25s; }
.carousel__dot.is-active { width: 24px; border-radius: 100px; background: var(--mauve-dark); }

/* ---------- Garantia ---------- */
.guarantee { display: flex; align-items: center; gap: 44px; max-width: 900px; margin: 0 auto; }
.guarantee__seal {
  flex: none; width: 168px; height: 168px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; position: relative; isolation: isolate;
  background: radial-gradient(circle at 35% 30%, var(--mauve), var(--mauve-dark));
  box-shadow: 0 0 0 7px rgba(186,155,142,.20), var(--shadow-lg);
}
.guarantee__seal::before {
  content: ""; position: absolute; inset: 13px; border-radius: 50%;
  border: 2px dashed rgba(253,248,246,.6); pointer-events: none;
}
.guarantee__days { font-family: var(--serif); font-size: 3.6rem; font-weight: 700; line-height: .92; color: var(--cream); }
.guarantee__label { font-size: .8rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--cream); margin-top: 4px; }
.guarantee__text h2 { font-family: var(--serif); font-size: clamp(1.5rem, 3.2vw, 2.2rem); font-weight: 600; margin-bottom: 14px; }
.guarantee__text p { color: rgba(253,248,246,.82); font-size: 1.06rem; }
.guarantee__text strong { color: var(--mauve-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__head { text-align: center; margin-bottom: 44px; }
.faq__head .section__title--left { text-align: center; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); margin-bottom: 14px; overflow: hidden; transition: box-shadow .3s; }
.faq__item[open] { box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 26px; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--sans); font-size: 1.6rem; font-weight: 400; color: var(--mauve-dark); transition: transform .3s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 26px 24px; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); padding: 54px 0; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer__title { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.footer__tag { color: rgba(253,248,246,.62); font-size: .95rem; margin-top: 4px; }
.footer__copy { color: rgba(253,248,246,.55); font-size: .85rem; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .3s var(--ease); animation: wa-pulse 2.6s infinite; }
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,.45); } 50% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,.06); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .carousel__track > .card { flex-basis: calc((100% - 2 * 22px) / 3); }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .nav__links {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 8px 22px 18px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav.is-open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav__links a::after { display: none; }
  .nav__menu-cta { display: inline-flex; border-bottom: none !important; margin-top: 14px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }

  /* Espaçamento de seção mais enxuto no mobile */
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .section__title { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .section__sub { font-size: .98rem; }

  /* Steps: cards compactos, número alinhado */
  .steps, .bonus { grid-template-columns: 1fr; gap: 18px; margin-top: 40px; }
  .step { padding: 26px 22px 24px; }
  .step__num { position: static; margin-bottom: 12px; width: 42px; height: 42px; font-size: 1.2rem; }
  .step h3 { font-size: 1.18rem; margin: 0 0 8px; }
  .step p { font-size: .95rem; }
  .bonus__card { padding: 28px 22px; }
  .bonus__icon { width: 52px; height: 52px; margin-bottom: 16px; }

  .medidas, .criadora { grid-template-columns: 1fr; gap: 30px; }
  .criadora__img { order: -1; }
  .criadora__img::before { display: none; }
  .medidas__text p, .criadora__text p { font-size: 1rem; }

  /* Filtros: todos visíveis, quebram em linhas e centralizados */
  .filters {
    flex-wrap: wrap; justify-content: center; gap: 8px;
    margin: 28px 0 36px; padding: 0;
  }
  .filter { flex: 0 0 auto; padding: 9px 15px; font-size: .82rem; }

  /* Carrossel: 1,15 card por vez (deixa "espiar" o próximo, sinaliza que arrasta) */
  .cat-group { margin-bottom: 44px; }
  .cat-group__title { font-size: 1.3rem; margin-bottom: 20px; padding-bottom: 12px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .carousel { margin: 0 -18px; }
  .carousel__track { gap: 14px; padding: 6px 18px 12px; scroll-padding: 0 18px; }
  .carousel__track > .card { flex-basis: 80%; max-width: 320px; }
  .carousel__nav { display: none; }
  .carousel__dots { gap: 10px; margin-top: 16px; }
  .carousel__dot { width: 9px; height: 9px; background-clip: content-box; padding: 9px 7px; box-sizing: content-box; }
  .carousel__dot.is-active { width: 26px; }

  /* Card: tipografia e respiro ajustados, botão num tamanho de toque bom */
  .card__media { aspect-ratio: 3/4; }
  .card__badge { font-size: .6rem; padding: 5px 10px; top: 10px; left: 10px; }
  .card__body { padding: 16px 16px 18px; }
  .card__name { font-size: 1.08rem; line-height: 1.2; }
  .card__meta { font-size: .74rem; margin: 5px 0 10px; }
  .card__price { font-size: 1.35rem; margin-bottom: 14px; }
  .card__cta.btn { padding: 13px 16px; font-size: .82rem; white-space: nowrap; }

  /* Garantia */
  .guarantee { flex-direction: column; text-align: center; gap: 28px; }
  .guarantee__text p { font-size: 1rem; }

  /* FAQ */
  .faq__item summary { padding: 18px 20px; font-size: 1.05rem; }
  .faq__item p { padding: 0 20px 20px; }

  .footer__inner { flex-direction: column; align-items: flex-start; }

  /* WhatsApp flutuante não cobre conteúdo */
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

@media (max-width: 420px) {
  .hero { padding: 56px 0 50px; }
  .hero__lead { font-size: 1rem; }
  .hero__trust { gap: 8px 16px; font-size: .8rem; }
  .card__name { font-size: 1rem; }
  .card__price { font-size: 1.25rem; }
  .btn { padding: 14px 24px; font-size: .9rem; }
  .carousel__track > .card { flex-basis: 84%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
