/* ============ MODAME boutique ============ */
:root {
  /* dourado metálico */
  --gold: #d4af37;
  --gold-dark: #b8912a;
  --gold-deep: #9c7a1e;
  --gold-light: #edd9a3;
  --gold-pale: #f9f0da;
  /* neutros */
  --nude: #faf5ea;
  --nude-deep: #efe4cf;
  --white: #ffffff;
  --ink: #2b2620;
  --ink-soft: #8d8272;
  --shadow: 0 12px 32px rgba(156, 122, 30, .16);
  --radius: 16px;
  --gold-grad: linear-gradient(115deg, #b8912a 0%, #e3c46b 45%, #d4af37 60%, #b8912a 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--white) 0%, var(--nude) 100%);
  color: var(--ink);
  min-height: 100vh;
}

::selection { background: var(--gold-light); color: var(--ink); }

/* ---------- topbar ---------- */
.topbar {
  background: var(--ink);
  color: var(--gold-light);
  text-align: center;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 9px 16px;
  font-weight: 500;
}

/* ---------- header ---------- */
.header {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-light);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
}

.logo-img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

.brand { display: flex; flex-direction: column; line-height: 1; }

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: .3em;
  background: linear-gradient(100deg, #9c7a1e, #d4af37 40%, #e8cd7c 55%, #b8912a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sub {
  font-size: .76rem;
  letter-spacing: .52em;
  color: var(--ink-soft);
  margin-top: 4px;
  text-transform: lowercase;
}

.header-whats {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #23b85c;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  padding: 10px 18px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 14px rgba(35, 184, 92, .3);
}

.header-whats:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(35, 184, 92, .42); }

/* ---------- hero ---------- */
.hero {
  text-align: center;
  padding: 58px 20px 46px;
  background:
    radial-gradient(ellipse 70% 120% at 50% -20%, rgba(212, 175, 55, .18), transparent 70%),
    var(--white);
  border-bottom: 1px solid var(--nude-deep);
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: .45em;
  font-size: .72rem;
  color: var(--gold-dark);
  margin-bottom: 14px;
  font-weight: 600;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
}

.hero-text { color: var(--ink-soft); font-size: 1.04rem; font-weight: 300; }
.hero-text strong { color: var(--gold-deep); font-weight: 600; }

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px auto 0;
  color: var(--gold);
}

.ornament::before,
.ornament::after {
  content: "";
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }

.ornament svg { flex-shrink: 0; }

/* ---------- trust strip ---------- */
.trust {
  background: var(--gold-pale);
  border-bottom: 1px solid var(--nude-deep);
}

.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .88rem;
  letter-spacing: .04em;
  color: var(--ink);
  font-weight: 500;
}

.trust-item svg { color: var(--gold-dark); flex-shrink: 0; }

/* ---------- layout ---------- */
.layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 34px;
  padding: 40px 20px 70px;
  align-items: start;
}

/* ---------- sidebar ---------- */
.sidebar { position: sticky; top: 96px; }

.sidebar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.cats { display: flex; flex-direction: column; gap: 8px; }

.cat {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--nude-deep);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: .98rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink);
  cursor: pointer;
  transition: all .18s ease;
}

.cat-ico { display: inline-flex; color: var(--gold-dark); }

.cat:hover { border-color: var(--gold); transform: translateX(3px); box-shadow: 0 4px 14px rgba(212, 175, 55, .18); }

.cat.active {
  background: var(--gold-grad);
  color: #fffdf5;
  border-color: transparent;
  box-shadow: var(--shadow);
  text-shadow: 0 1px 2px rgba(122, 92, 15, .35);
}

.cat.active .cat-ico { color: #fffdf5; }

.sidebar-note {
  margin-top: 26px;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 18px;
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.55;
  box-shadow: 0 6px 18px rgba(212, 175, 55, .08);
}

.sidebar-note strong { color: var(--gold-deep); }
.sidebar-note p + p { margin-top: 8px; }

/* ---------- content ---------- */
.content-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}

.content-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--ink);
}

.count {
  color: var(--gold-deep);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  padding: 4px 12px;
  border-radius: 999px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 22px;
}

/* ---------- card ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--nude-deep);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  animation: cardIn .5s ease both;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

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

.card-img-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--gold-pale); }

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

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

.card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 253, 245, .95);
  color: var(--gold-deep);
  border: 1px solid var(--gold-light);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 10px; }

.card-name { font-weight: 500; font-size: .98rem; letter-spacing: .02em; }

.card-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-grad);
  color: #fffdf5;
  text-shadow: 0 1px 2px rgba(122, 92, 15, .35);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 11px 12px;
  border-radius: 999px;
}

/* brilho que atravessa o botão no hover */
.card-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-20deg);
  transition: left .45s ease;
}

.card:hover .card-cta::after { left: 120%; }

/* ---------- empty state ---------- */
.empty {
  text-align: center;
  background: var(--white);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 60px 30px;
  max-width: 520px;
  margin: 30px auto;
}

.empty-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.empty p { color: var(--ink-soft); line-height: 1.6; }

.btn-whats {
  display: inline-block;
  margin-top: 20px;
  background: #23b85c;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(35, 184, 92, .3);
  transition: transform .15s ease;
}

.btn-whats:hover { transform: translateY(-2px); }

/* ---------- como funciona ---------- */
.how {
  background: var(--white);
  border-top: 1px solid var(--nude-deep);
  text-align: center;
  padding: 56px 20px 50px;
}

.how-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 34px;
}

.how-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.how-step {
  background: var(--nude);
  border: 1px solid var(--nude-deep);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-light); }

.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #fffdf5;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, .35);
}

.how-step h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 8px;
  color: var(--ink);
}

.how-step p { font-size: .9rem; color: var(--ink-soft); line-height: 1.55; font-weight: 300; }

.how-step p strong { color: var(--gold-deep); font-weight: 600; }

.how-note {
  max-width: 640px;
  margin: 28px auto 0;
  font-size: .88rem;
  color: var(--ink-soft);
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  padding: 12px 22px;
  line-height: 1.5;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: var(--nude);
  text-align: center;
  padding: 48px 20px 42px;
  border-top: 3px solid var(--gold);
}

.footer-logo {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  margin-bottom: 12px;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: .32em;
  background: linear-gradient(100deg, #d4af37, #f0dc9a 50%, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand span { font-size: .85rem; letter-spacing: .42em; }

.footer-text { margin-top: 10px; font-size: .88rem; font-weight: 300; opacity: .75; }

.footer-whats {
  display: inline-block;
  margin-top: 14px;
  color: #7fe3a8;
  text-decoration: none;
  font-weight: 500;
}

.footer-whats:hover { text-decoration: underline; }

/* ---------- floating whatsapp ---------- */
.fab-whats {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #23b85c;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(35, 184, 92, .45);
  z-index: 80;
  transition: transform .15s ease;
}

.fab-whats:hover { transform: scale(1.08); }

/* ---------- scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--nude); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .layout { grid-template-columns: 1fr; gap: 20px; padding-top: 24px; }

  .sidebar { position: static; }

  .sidebar-title { display: none; }

  .cats { flex-direction: row; }

  .cat { justify-content: center; padding: 11px 10px; }

  .cat:hover { transform: none; }

  .sidebar-note { display: none; }

  .hero { padding: 40px 18px 34px; }

  .trust-inner { grid-template-columns: 1fr; gap: 8px; padding: 14px 20px; }

  .trust-item { justify-content: flex-start; }

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

  .how-grid { grid-template-columns: 1fr; gap: 14px; }

  .how-note { border-radius: var(--radius); }

  .header-whats span { display: none; }

  .header-whats { padding: 10px 12px; }
}
