/* ============================================================
   Doce Sonhar Pijamas — Catálogo
   Paleta da marca: creme / bege / marrom / dourado
   ============================================================ */

:root {
  --cream: #f1eae2;
  --cream-2: #f9f5ef;
  --beige: #dbc2af;
  --beige-2: #c9ab93;
  --beige-soft: #ead9c8;
  --brown: #6c3e25;
  --brown-2: #8a5a3a;
  --gold: #bc9c22;
  --gold-deep: #8a7013;
  --gold-soft: #efe3c0;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(108, 62, 37, 0.08), 0 4px 14px rgba(108, 62, 37, 0.08);
  --shadow-md: 0 6px 24px rgba(108, 62, 37, 0.16);
  --radius: 18px;
  --header-h: 64px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--brown);
  background: var(--cream);
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; margin: 0; line-height: 1.2; }

p { margin: 0; }

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

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--brown);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 10px;
  z-index: 3000;
}
.skip-link:focus { left: 8px; }

/* ============================================================
   HEADER
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(241, 234, 226, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 171, 147, 0.4);
}

.header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(14px, 3vw, 28px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__moon { fill: var(--gold); }
.brand__cloud { fill: var(--beige-2); }

.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-family: var(--font-serif); font-size: 19px; color: var(--brown); letter-spacing: 0.02em; }
.brand__text span { font-size: 11px; color: var(--brown-2); letter-spacing: 0.02em; }

.nav { margin-left: auto; display: none; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brown-2);
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav a:hover { color: var(--brown); background: rgba(219, 194, 175, 0.35); }

.header__actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav ~ .header__actions { margin-left: 0; }

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--brown);
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}
.icon-btn:hover { background: rgba(219, 194, 175, 0.4); }
.icon-btn:active { transform: scale(0.94); }
.icon-btn svg { width: 22px; height: 22px; }

.fav-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.nav-toggle { display: grid; }

/* ============================================================
   DRAWER (menu mobile)
   ============================================================ */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(60, 32, 18, 0.55);
  z-index: 1100;
  opacity: 1;
  transition: opacity 0.25s var(--ease);
}
.drawer-backdrop.is-hidden { opacity: 0; pointer-events: none; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 86vw);
  background: var(--cream-2);
  z-index: 1200;
  transform: translateX(0);
  transition: transform 0.3s var(--ease);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.drawer.is-closed { transform: translateX(105%); }

.drawer__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(201, 171, 147, 0.4);
}
.drawer__head strong { font-family: var(--font-serif); font-size: 18px; color: var(--brown); }
.drawer__head .brand__mark { width: 34px; height: 34px; }
.drawer__close { margin-left: auto; }

.drawer__nav { padding: 12px 16px 24px; display: flex; flex-direction: column; overflow-y: auto; }
.drawer__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--brown-2);
  border-bottom: 1px solid rgba(201, 171, 147, 0.25);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.drawer__nav a:hover { color: var(--brown); padding-left: 16px; }

.chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
  opacity: 0.55;
}

.drawer__wa {
  margin-top: 18px;
  justify-content: center;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 999px;
  border-bottom: none !important;
}
.drawer__wa:hover { color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 7vw, 88px) 0 clamp(28px, 5vw, 60px);
}

.decor { position: absolute; opacity: 0.5; pointer-events: none; }
.decor--moon { top: 9%; left: 4%; width: 46px; fill: var(--gold); opacity: 0.7; animation: floaty 7s ease-in-out infinite; }
.decor--cloud { top: 22%; right: 6%; width: 74px; fill: var(--beige); opacity: 0.6; animation: floaty 9s ease-in-out 1s infinite; }
.decor--star { bottom: 20%; left: 12%; width: 22px; fill: var(--gold-deep); opacity: 0.6; animation: twinkle 4s ease-in-out infinite; }
.decor--star2 { top: 6%; left: 44%; width: 16px; fill: var(--beige-2); opacity: 0.7; animation: twinkle 5s ease-in-out 1.2s infinite; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

.hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(14px, 3vw, 28px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
}

.hero__kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__kicker::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(38px, 6.4vw, 66px);
  color: var(--brown);
  margin: 12px 0 14px;
  letter-spacing: -0.01em;
}
.hero__title em { font-style: italic; color: var(--gold-deep); }

.hero__tagline {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--brown-2);
  max-width: 44ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--brown);
  color: var(--cream);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(108, 62, 37, 0.28); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn svg { width: 20px; height: 20px; }

.btn--wa { background: #1da851; color: var(--white); }
.btn--wa:hover { box-shadow: 0 10px 22px rgba(29, 168, 81, 0.35); }

.btn--ghost { background: transparent; color: var(--brown); box-shadow: inset 0 0 0 1.6px var(--beige-2); }
.btn--ghost:hover { background: rgba(219, 194, 175, 0.25); box-shadow: inset 0 0 0 1.6px var(--beige-2); }

.btn--small { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }

.hero__pay { font-size: 14px; color: var(--brown-2); }

.hero__media { position: relative; max-width: 480px; margin: 0 auto; width: 100%; }

.hero__arch {
  border-radius: 999px 999px 20px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--beige-soft);
}
.hero__arch img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero__arch-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 62px;
  filter: drop-shadow(0 6px 14px rgba(108, 62, 37, 0.35));
}

/* ============================================================
   TOOLBAR (busca + chips) — sticky
   ============================================================ */

.toolbar-wrap {
  position: sticky;
  top: var(--header-h);
  z-index: 800;
  background: rgba(241, 234, 226, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 171, 147, 0.45);
}

.toolbar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px clamp(14px, 3vw, 28px) 14px;
}

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

.search {
  position: relative;
  flex: 1;
  max-width: 480px;
}
.search__icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  color: var(--beige-2);
  pointer-events: none;
}
.search input {
  width: 100%;
  padding: 12px 44px 12px 44px;
  border: 1.6px solid var(--beige);
  border-radius: 999px;
  background: var(--cream-2);
  font-family: inherit;
  font-size: 15px;
  color: var(--brown);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.search input::placeholder { color: var(--beige-2); }
.search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(188, 156, 34, 0.18); }
.search input::-webkit-search-cancel-button { display: none; }

.search__clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(201, 171, 147, 0.3);
  display: grid;
  place-items: center;
  color: var(--brown);
}
.search__clear svg { width: 15px; height: 15px; }

.chips {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.chips::-webkit-scrollbar { display: none; }

.chip {
  flex: none;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.6px solid var(--beige);
  background: transparent;
  color: var(--brown-2);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--brown); }
.chip.is-active {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}

/* ============================================================
   SEÇÕES / HEADERS
   ============================================================ */

.section-head { text-align: center; margin-bottom: 28px; }
.section-head__kicker {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.section-head__title { font-size: clamp(28px, 4vw, 40px); color: var(--brown); }

/* ============================================================
   MAIS VENDIDOS (strip)
   ============================================================ */

.strip { padding: 52px 0 20px; }

.strip__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 230px;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px clamp(14px, 3vw, 28px) 20px;
  scrollbar-width: none;
}
.strip__track::-webkit-scrollbar { display: none; }
@media (min-width: 720px) { .strip__track { grid-auto-columns: 250px; } }

.card--strip { scroll-snap-align: start; }

/* ============================================================
   CATÁLOGO (grid editorial)
   ============================================================ */

.catalog {
  padding: clamp(30px, 5vw, 64px) 0 clamp(40px, 6vw, 80px);
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(14px, 3vw, 28px);
  padding-right: clamp(14px, 3vw, 28px);
}

.catalog__count {
  text-align: center;
  font-size: 13px;
  color: var(--beige-2);
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 30px);
}

@media (min-width: 680px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ritmo editorial: a cada 5 peças, uma em destaque (largura total) no mobile */
@media (max-width: 679px) {
  .grid > :nth-child(5n+1) { grid-column: 1 / -1; }
}
@media (min-width: 1040px) {
  .grid > :nth-child(8n+1) { grid-column: span 2; }
}

.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 56px 20px;
  color: var(--brown-2);
}
.empty svg { width: 44px; height: 44px; margin: 0 auto 14px; color: var(--beige-2); }
.empty p strong { color: var(--brown); font-size: 18px; }
.empty__sub { font-size: 14px; margin: 6px 0 18px; }

/* ============================================================
   CARD DE PRODUTO
   ============================================================ */

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.card.is-visible { opacity: 1; transform: none; }

.card__media {
  position: relative;
  border-radius: 999px 999px 14px 14px;
  overflow: hidden;
  background: var(--beige-soft);
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
}
.card--tall .card__media { aspect-ratio: 3 / 4.55; }

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.card:hover .card__img { transform: scale(1.05); }

.card__img--placeholder {
  display: grid;
  place-items: center;
  color: var(--beige-2);
  font-size: 13px;
  padding: 20px;
  text-align: center;
  width: 100%;
  height: 100%;
}

.card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(138, 112, 19, 0.4);
}

.card__off {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--brown);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(60, 32, 18, 0.3);
}

.card__fav {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(249, 245, 239, 0.95);
  display: grid;
  place-items: center;
  color: var(--brown-2);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s var(--ease), color 0.2s var(--ease);
}
.card__fav:hover { transform: scale(1.1); }
.card__fav svg { width: 21px; height: 21px; }
.card__fav.is-fav { color: #d9435c; }
.card__fav.is-fav svg { fill: currentColor; }

.card__body { padding: 12px 6px 0; display: flex; flex-direction: column; flex: 1; }

.card__name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--brown);
}

.card__sizes {
  margin-top: 3px;
  font-size: 12px;
  color: var(--beige-2);
  letter-spacing: 0.02em;
}

.card__price { margin-top: 8px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.card__price-now { font-weight: 600; font-size: 18px; color: var(--brown); font-variant-numeric: tabular-nums; }
.card__price-was {
  font-size: 13px;
  color: var(--beige-2);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

.card__cta { margin-top: 12px; }
.card__cta .btn { width: 100%; padding: 11px 12px; font-size: 14px; }

/* ============================================================
   TAMANHOS
   ============================================================ */

.sizes {
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige-soft) 130%);
  padding: clamp(40px, 6vw, 72px) clamp(14px, 3vw, 28px);
}
.sizes__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.sizes__intro { color: var(--brown-2); max-width: 54ch; margin: 0 auto 24px; }

.sizes__table-wrap {
  overflow-x: auto;
  background: var(--cream-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 4px;
}
.sizes__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.sizes__table th {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--brown);
  padding: 14px 12px;
  text-align: center;
  border-bottom: 2px solid var(--beige);
}
.sizes__table td {
  padding: 13px 12px;
  text-align: center;
  color: var(--brown-2);
  border-bottom: 1px solid rgba(201, 171, 147, 0.35);
}
.sizes__table tbody tr:last-child td { border-bottom: none; }
.sizes__table td:first-child { font-weight: 600; color: var(--brown); font-variant-numeric: tabular-nums; }

.sizes__hint { margin: 16px 0 18px; font-size: 13px; color: var(--brown-2); }

/* ============================================================
   FAQ
   ============================================================ */

.faq { padding: clamp(40px, 6vw, 72px) clamp(14px, 3vw, 28px); }
.faq__inner { max-width: 760px; margin: 0 auto; }

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

.faq-item {
  background: var(--cream-2);
  border: 1px solid rgba(201, 171, 147, 0.45);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-item.is-open { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 20px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--brown);
}
.faq-item__q span:last-child {
  flex: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--beige-soft);
  color: var(--brown);
  transition: transform 0.25s var(--ease), background 0.2s var(--ease);
}
.faq-item__q svg { width: 15px; height: 15px; }
.faq-item.is-open .faq-item__q span:last-child { transform: rotate(45deg); background: var(--gold); color: var(--white); }

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a > div { overflow: hidden; }
.faq-item__a p { padding: 0 20px 18px; color: var(--brown-2); font-size: 15px; }

.faq__more {
  margin-top: 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.faq__more p { font-family: var(--font-serif); font-size: 18px; color: var(--brown); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */

.testimonials {
  padding: clamp(30px, 5vw, 60px) clamp(14px, 3vw, 28px) clamp(50px, 7vw, 90px);
  max-width: 1240px;
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 680px) { .testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .testimonials__grid { grid-template-columns: repeat(4, 1fr); } }

.t-card {
  background: var(--cream-2);
  border: 1px solid rgba(201, 171, 147, 0.45);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.t-card__stars { display: flex; gap: 3px; color: var(--gold); }
.t-card__stars svg { width: 17px; height: 17px; fill: currentColor; }

.t-card__text { font-size: 15px; color: var(--brown-2); font-style: italic; flex: 1; }

.t-card__who { display: flex; align-items: center; gap: 10px; }
.t-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16px;
}
.t-card__name { font-weight: 600; color: var(--brown); font-size: 14px; }
.t-card__city { font-size: 12px; color: var(--beige-2); }

/* ============================================================
   QUEM SOMOS
   ============================================================ */

.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px) clamp(14px, 3vw, 28px) clamp(50px, 7vw, 90px);
}
@media (min-width: 900px) { .about { grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: center; } }

.about__arch {
  border-radius: 999px 999px 18px 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--beige-soft);
  max-width: 440px;
  margin: 0 auto;
}
.about__arch img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.about__copy .section-head { text-align: left; }
.about__copy p { color: var(--brown-2); font-size: 16px; margin-bottom: 14px; }

.about__meta { display: flex; flex-direction: column; gap: 8px; margin: 18px 0 22px; }
.about__meta p { display: flex; align-items: center; gap: 10px; font-size: 14px; margin: 0; }
.about__meta svg { width: 20px; height: 20px; color: var(--gold-deep); flex: none; }

.testimonials, .about, .sizes, .faq { position: relative; }

.testimonials .decor--cloud { top: 42%; right: 2%; }
.about .decor--moon { top: 6%; left: 4%; }
.about .decor--star { bottom: 5%; right: 8%; }

/* ============================================================
   RODAPÉ
   ============================================================ */

.footer {
  background: var(--brown);
  color: var(--beige-soft);
  padding: clamp(36px, 6vw, 64px) clamp(14px, 3vw, 28px) 24px;
}

.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 700px) { .footer__inner { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.footer__brand .brand__mark { width: 48px; height: 48px; }
.footer__tag { margin-top: 10px; font-family: var(--font-serif); font-style: italic; font-size: 16px; }

.footer__col h3 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer__col a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 14px;
  color: var(--beige-soft);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.footer__col a:hover { color: var(--white); padding-left: 4px; }
.footer__col svg { width: 16px; height: 16px; }

.footer__copy {
  max-width: 1240px;
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(234, 217, 200, 0.2);
  font-size: 12.5px;
  color: rgba(234, 217, 200, 0.7);
}

/* ============================================================
   FLUTUANTES (FABs)
   ============================================================ */

.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 950;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s var(--ease), opacity 0.25s var(--ease);
}
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab svg { width: 28px; height: 28px; fill: var(--white); }

.fab--wa { background: #1da851; }

.fab--top {
  bottom: 88px;
  background: var(--cream-2);
  color: var(--brown);
  box-shadow: var(--shadow-md);
}
.fab--top svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.fab[hidden] { display: none; }

/* ============================================================
   PAINEL DE FAVORITOS
   ============================================================ */

.panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(60, 32, 18, 0.55);
  z-index: 1100;
  opacity: 1;
  transition: opacity 0.25s var(--ease);
}
.panel-backdrop.is-hidden { opacity: 0; pointer-events: none; }

.panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 92vw);
  background: var(--cream-2);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(0);
  transition: transform 0.3s var(--ease);
  box-shadow: var(--shadow-md);
}
.panel.is-closed { transform: translateX(105%); }

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(201, 171, 147, 0.4);
}
.panel__head h2 { font-size: 21px; color: var(--brown); display: flex; align-items: center; gap: 8px; }
.panel__head .fav-count { position: static; display: inline-grid; }

.panel__body { flex: 1; overflow-y: auto; padding: 14px 20px; }

.fav-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 171, 147, 0.3);
}
.fav-item__img {
  width: 64px;
  height: 84px;
  border-radius: 30px 30px 6px 6px;
  object-fit: cover;
  flex: none;
  background: var(--beige-soft);
}
.fav-item__info { flex: 1; min-width: 0; }
.fav-item__name { font-family: var(--font-serif); font-size: 15px; font-weight: 600; color: var(--brown); }
.fav-item__cat { font-size: 12px; color: var(--beige-2); }
.fav-item__price { font-weight: 600; font-size: 15px; color: var(--gold-deep); margin-top: 4px; font-variant-numeric: tabular-nums; }
.fav-item__rm {
  align-self: center;
  border: none;
  background: transparent;
  color: var(--beige-2);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.fav-item__rm:hover { background: rgba(201, 171, 147, 0.3); color: var(--brown); }
.fav-item__rm svg { width: 17px; height: 17px; }

.fav-empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--brown-2);
}
.fav-empty svg { width: 42px; height: 42px; color: var(--beige-2); margin: 0 auto 12px; }
.fav-empty p strong { color: var(--brown); }

.panel__foot {
  padding: 16px 20px 22px;
  border-top: 1px solid rgba(201, 171, 147, 0.4);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel__hint { font-size: 12px; color: var(--beige-2); text-align: center; }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (min-width: 900px) {
  :root { --header-h: 72px; }
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .brand__mark { width: 46px; height: 46px; }
}

@media (max-width: 899px) {
  .toolbar-wrap { top: var(--header-h); }
}

/* ============================================================
   ACESSIBILIDADE / REDUZIR MOVIMENTO
   ============================================================ */

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

.noscript {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--cream);
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: var(--brown);
}
