/* ================================================================
   ESSENCIA 3D — Stylesheet v2
   Foco: contraste · legibilidade · espaçamento generoso (Westwing-style)
   Tipografia: Cormorant Garamond (display) + Plus Jakarta Sans (body)
================================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Fundos — mais limpos e distinguíveis */
  --bg:        #FFFFFF;
  --surface:   #F6F3EF;   /* seções alt: warm off-white visível */
  --surface-2: #EDE8E0;
  --card:      #FFFFFF;

  /* Texto — contraste garantido */
  --ink:       #1A1512;   /* headings: quase preto */
  --ink-2:     #3D3830;   /* subheadings */
  --body:      #2E2A26;   /* corpo do texto — mais escuro que antes */
  --muted:     #5C5450;   /* texto auxiliar: contrast ratio ~5.5:1 no branco */

  /* Bordas — visíveis mas sutis */
  --line:      rgba(0, 0, 0, 0.10);
  --line-md:   rgba(0, 0, 0, 0.15);

  /* Gold */
  --gold:      #B8843E;
  --gold-dk:   #96691E;
  --gold-lt:   rgba(184, 132, 62, 0.10);
  --gold-lt2:  rgba(184, 132, 62, 0.18);

  /* Sombras */
  --shadow-sm: 0 1px 8px rgba(0, 0, 0, 0.06);
  --shadow:    0 8px 32px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.13);

  /* Bordas arredondadas */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;            /* base maior para leitura */
  line-height: 1.72;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ── Eyebrow label ───────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* ══════════════════════════════════════════════ NAVBAR ═════════ */
.navbar {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: saturate(200%) blur(18px);
  -webkit-backdrop-filter: saturate(200%) blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  transition: box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

/* Logo sobreposta — sobressai da navbar */
.navbar-logo {
  height: 80px;
  width: auto;
  margin-top: -18px;
  margin-bottom: -18px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.10));
  transition: transform var(--transition);
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.04);
}

@media (max-width: 575px) {
  .navbar-logo { height: 58px; margin-top: -10px; margin-bottom: -10px; }
}

.navbar-brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1;
  text-transform: uppercase;
}

.navbar-brand-text span { color: var(--gold); }

.navbar-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1;
}

.navbar-brand span { color: var(--gold); }

.nav-link {
  font-size: 0.78rem;       /* era 0.82 — ligeiramente maior em peso */
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-2) !important;
  padding: 0.45rem 0 !important;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--ink) !important; }
.nav-link:hover::after { width: 100%; }

.navbar-toggler {
  border: 1.5px solid var(--line-md);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26,21,18,0.80)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ══════════════════════════════════════════════ BOTÕES ═════════ */
.btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.72rem 1.8rem;
  transition: all var(--transition);
  border-width: 1.5px;
  line-height: 1.4;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,132,62,0.35);
}

.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border-color: rgba(0,0,0,0.28);
}
.btn-outline-ink:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-1px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dk);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

.btn-sm { padding: 0.44rem 1.05rem; font-size: 0.7rem; }
.btn-lg { padding: 0.9rem 2.2rem;   font-size: 0.8rem; }

/* ══════════════════════════════════════════════ HERO ═══════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  background: #fff;           /* fundo puro — sem gradiente sobre o texto */
  position: relative;
  overflow: hidden;
}

/* Detalhe decorativo sutil no canto — não atrapalha leitura */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: var(--surface);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero > .container { position: relative; z-index: 1; }

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 31rem;
  line-height: 1.80;
  margin-bottom: 2rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-md);
}

.hero-stats .stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.hero-stats .stat span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Mosaico */
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 1rem;
}

.mosaic-tile {
  border-radius: var(--radius);
  display: flex;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem 1.6rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mosaic-tile:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-lg); }
.mosaic-tile:hover .mosaic-overlay { opacity: 0.45; }

/* Overlay escuro no rodapé — legibilidade do texto */
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
  border-radius: inherit;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 0;
}

/* Label sobre a imagem */
.mosaic-label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mosaic-tile span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.2rem;
}

.mosaic-tile em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.2;
}

.tile-a { grid-row: span 2; background-position: center center; }
.tile-b { background-position: center 30%; }
.tile-c { background-position: center 20%; }

/* ══════════════════════════════════════════ SEÇÕES ═════════════ */
.section    { padding: 7rem 0; }
.section-sm { padding: 4.5rem 0; }

/* Seção alternada — claramente distinguível do fundo branco */
.section-alt {
  background: var(--surface);       /* #F6F3EF — visível e não pesado */
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}

.section-header p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* ══════════════════════════════════════════ STRIP ══════════════ */
.strip {
  padding: 2.25rem 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 3rem;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);            /* era --muted, agora mais escuro */
}

.strip-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════ FEATURE CARDS ══════════ */
.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gold-lt);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;    /* era 0.93 — mais legível */
  line-height: 1.70;
  margin: 0;
}

/* ══════════════════════════════════════ PRODUTO CARDS ══════════ */
/*
   Inspiração Westwing: imagem quadrada dominante,
   texto abaixo bem legível, card limpo sem sombra exagerada.
*/
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

/* Imagem QUADRADA — muito mais visível e profissional */
.product-thumb {
  aspect-ratio: 1 / 1;
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.product-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card:hover .product-thumb img { transform: scale(1.04); }

.product-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
}

.product-thumb-placeholder svg {
  width: 52px; height: 52px;
  opacity: 0.22;
  color: var(--gold-dk);
}

.product-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.product-badge {
  display: inline-block;
  background: var(--gold-lt2);
  color: var(--gold-dk);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 0.7rem;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;    /* era 1.25 — título mais impactante */
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.9rem;     /* era 0.875 */
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;    /* era 1.4 — preço mais destaque */
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

/* ══════════════════════════════════════ STEPS ══════════════════ */
.step-card {
  text-align: center;
  padding: 2.75rem 2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 100%;
}

.step-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 700;
  /* contraste real: era rgba(0.22) quase invisível */
  color: var(--gold-lt2);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
  /* Sobrepor com cor gold visível */
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.step-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.70;
  margin: 0;
}

/* ══════════════════════════════════════ MATERIAIS ══════════════ */
.palette-dots {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.palette-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.9);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  flex-shrink: 0;
  transition: transform var(--transition);
  cursor: pointer;
}

.palette-dot:hover { transform: scale(1.14); }

.material-list { list-style: none; }

.material-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;    /* era 0.92 */
  color: var(--body);
}

.material-list li:last-child { border-bottom: none; }

.material-list li svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ══════════════════════════════════════ CTA BLOCK ══════════════ */
.cta-block {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 4.5rem 3rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,132,62,0.20), transparent 70%);
  pointer-events: none;
}

.cta-block h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-block p {
  /* era rgba(255,255,255,0.6) — muito fraco */
  color: rgba(255, 255, 255, 0.78);
  max-width: 28rem;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.75;
  position: relative;
}

/* ══════════════════════════════════════ CONTATO ════════════════ */
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.form-label {
  font-size: 0.78rem;      /* era 0.75 */
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-2);     /* era --muted — agora mais escuro e legível */
  margin-bottom: 0.45rem;
  display: block;
}

.form-control, .form-select {
  background: var(--surface);
  border: 1.5px solid var(--line-md);   /* borda visível */
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-control:focus, .form-select:focus {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-lt);
  color: var(--ink);
  outline: none;
}

.form-control::placeholder { color: #B0A89E; }

textarea.form-control { resize: vertical; min-height: 130px; }

/* ══════════════════════════════════════ FOOTER ═════════════════ */
.footer {
  background: var(--ink);
  padding: 5rem 0 2.5rem;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.footer-brand span { color: var(--gold); }

.footer-tagline {
  font-size: 0.88rem;
  margin-top: 0.5rem;
  /* era rgba(0.35) — muito claro */
  color: rgba(255,255,255,0.50);
  line-height: 1.65;
  max-width: 22rem;
}

.footer-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* era rgba(0.3) — quase invisível */
  color: rgba(255,255,255,0.42);
  margin-bottom: 1.1rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  /* era rgba(0.55) — reforçado */
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.footer-social svg { width: 16px; height: 16px; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 3rem 0 1.75rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  /* era rgba(0.25) — invisível */
  color: rgba(255,255,255,0.38);
}

.footer-legal-links { display: flex; align-items: center; gap: 0.5rem; }
.footer-legal-links a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════ PÁGINAS LEGAIS ══════════ */
.legal-body { color: var(--body); line-height: 1.85; }
.legal-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}
.legal-body p  { margin-bottom: 1rem; font-size: 0.95rem; }
.legal-body ul { margin: 0.5rem 0 1rem 1.25rem; font-size: 0.95rem; }
.legal-body ul li { margin-bottom: 0.4rem; }
.legal-body a  { color: var(--gold); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }

/* ══════════════════════════════════════ WHATSAPP FLOAT ══════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37,211,102,0.55);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ══════════════════════════════════════ ADMIN — LOGIN ══════════ */
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}

.admin-login-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}

.admin-login-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ink);
}

.admin-login-brand span { color: var(--gold); }

/* ══════════════════════════════════════ ADMIN — LAYOUT ══════════ */
.admin-layout { min-height: 100vh; display: flex; background: #F2F1EF; }

.admin-sidebar {
  width: 256px;
  min-height: 100vh;
  background: var(--ink);
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-sidebar-brand span { color: var(--gold); }

.admin-nav { list-style: none; flex: 1; }

.admin-nav li { margin-bottom: 0.2rem; }

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  transition: background var(--transition), color var(--transition);
}

.admin-nav a svg { width: 18px; height: 18px; flex-shrink: 0; }

.admin-nav a:hover { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.90); }

.admin-nav a.active { background: rgba(184,132,62,0.14); color: var(--gold); }

.admin-nav-section {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  padding: 1.25rem 0.9rem 0.5rem;
}

.admin-sidebar-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.admin-sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.42);
  transition: color var(--transition);
}

.admin-sidebar-footer a:hover { color: rgba(255,255,255,0.72); }
.admin-sidebar-footer svg { width: 16px; height: 16px; }

.admin-content { flex: 1; padding: 2.5rem; min-width: 0; }

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.admin-page-title small {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0.3rem;
}

.admin-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

/* Stat cards */
.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-lt);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.stat-icon svg { width: 22px; height: 22px; }

.stat-info .stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.stat-info .stat-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* Admin table */
.table-responsive { border-radius: var(--radius-sm); overflow: hidden; }

.admin-table { width: 100%; border-collapse: collapse; }

.admin-table th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.9rem 1rem;
  border-bottom: 2px solid var(--line-md);
  text-align: left;
  white-space: nowrap;
  background: var(--surface);
}

.admin-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--body);
  vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: rgba(184,132,62,0.03); }

.thumb-sm {
  width: 50px; height: 50px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--surface);
}

.thumb-sm-placeholder {
  width: 50px; height: 50px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
}

.thumb-sm-placeholder svg { width: 18px; height: 18px; opacity: 0.35; color: var(--muted); }

/* Botões de ação */
.btn-action {
  font-size: 0.69rem;
  font-weight: 700;
  padding: 0.3rem 0.72rem;
  border-radius: 6px;
  border: 1.5px solid;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  line-height: 1.4;
}

.btn-action-edit {
  color: var(--gold-dk);
  border-color: var(--gold);
  background: var(--gold-lt);
}
.btn-action-edit:hover { background: var(--gold); color: #fff; }

.btn-action-del {
  color: #992B20;
  border-color: rgba(153,43,32,0.3);
  background: rgba(153,43,32,0.06);
}
.btn-action-del:hover { background: #992B20; color: #fff; border-color: #992B20; }

/* Badge tag */
.badge-tag {
  display: inline-block;
  background: var(--gold-lt2);
  color: var(--gold-dk);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

/* ══════════════════════════════════════ FLASH / ALERTS ══════════ */
.flash {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;       /* era 0.88 */
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.4;
}

.flash svg { width: 16px; height: 16px; flex-shrink: 0; }

.flash-success { background: #EBF7F1; color: #1B6B3A; border: 1px solid #A3D9B8; }
.flash-danger  { background: #FDF0EE; color: #7D1E14; border: 1px solid #F0B0A8; }
.flash-info    { background: var(--gold-lt); color: var(--gold-dk); border: 1px solid rgba(184,132,62,0.28); }

/* Modal */
.modal-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.modal-header { border-bottom: 1px solid var(--line); padding: 1.5rem 1.75rem; }

.modal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.modal-body { padding: 1.75rem; }
.modal-footer { border-top: 1px solid var(--line); padding: 1.25rem 1.75rem; }

/* ══════════════════════════════════════ 404 ═════════════════════ */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}

.error-code {
  font-family: "Cormorant Garamond", serif;
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════ UTILITIES ═══════════════ */
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted) !important; }
.bg-surface  { background: var(--surface) !important; }

/* ══════════════════════════════════════ REVEAL ANIMATION ════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.60s ease, transform 0.60s ease;
}
.reveal.visible    { opacity: 1; transform: translateY(0); }

.reveal-delay-1    { transition-delay: 0.10s; }
.reveal-delay-2    { transition-delay: 0.20s; }
.reveal-delay-3    { transition-delay: 0.30s; }
.reveal-delay-4    { transition-delay: 0.40s; }

/* ══════════════════════════════════════ RESPONSIVE ══════════════ */
@media (max-width: 991.98px) {
  .hero { padding: 5.5rem 0 4rem; }
  .hero::before { display: none; }
  .hero-mosaic { margin-top: 3rem; grid-template-rows: 180px 180px; }

  .section { padding: 5rem 0; }

  .admin-sidebar { display: none; }
  .admin-content { padding: 1.5rem 1rem; }
}

@media (max-width: 767.98px) {
  body { font-size: 16px; }
  .section { padding: 4rem 0; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .cta-block { padding: 3rem 1.75rem; }
  .contact-card { padding: 2rem 1.25rem; }
  .admin-login-card { padding: 2rem 1.5rem; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 2.7rem; }
  .hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px;
  }
  .tile-a { grid-row: span 2; }
  .hero-stats { grid-template-columns: 1fr; gap: 0.6rem; }
  .strip-inner { gap: 1rem 1.5rem; }
  .section-header { margin-bottom: 2.5rem; }
}
