/* ==========================================================================
   CABELEIREIROS GONÇALVES — PREMIUM CSS
   Design System: Luxury Minimal | Cormorant Garamond + Jost
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS — DARK (padrão) / LIGHT
   ========================================================================== */
:root {
  /* Paleta dourada */
  --gold:           #d4af37;
  --gold-light:     #e8cc6a;
  --gold-dark:      #b8962e;
  --gold-dim:       rgba(212, 175, 55, 0.18);
  --gold-dim2:      rgba(212, 175, 55, 0.07);

  /* Dark Mode — padrão */
  --bg:             #0d0d0d;
  --bg-2:           #131313;
  --bg-3:           #1a1a1a;
  --bg-card:        #161616;
  --bg-input:       #111111;
  --border:         rgba(212, 175, 55, 0.14);
  --border-strong:  rgba(212, 175, 55, 0.28);
  --text:           #f0ece0;
  --text-muted:     #9a9080;
  --text-faint:     #4a4438;
  --shadow:         0 12px 56px rgba(0, 0, 0, 0.65);
  --shadow-sm:      0 2px 16px rgba(0, 0, 0, 0.45);
  --shadow-card:    0 4px 24px rgba(0, 0, 0, 0.5);
  --overlay:        rgba(13, 13, 13, 0.72);

  /* Sizing */
  --radius:         2px;
  --radius-md:      4px;
  --radius-lg:      8px;
  --header-h:       72px;
  --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:0.18s ease;
}

[data-theme="light"] {
  --bg:             #f5f0e8;
  --bg-2:           #ede7d9;
  --bg-3:           #e4ddd0;
  --bg-card:        #faf6ee;
  --bg-input:       #ffffff;
  --border:         rgba(130, 100, 30, 0.16);
  --border-strong:  rgba(130, 100, 30, 0.32);
  --text:           #1a1710;
  --text-muted:     #6b5d3f;
  --text-faint:     #c0b090;
  --shadow:         0 12px 56px rgba(0, 0, 0, 0.10);
  --shadow-sm:      0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-card:    0 4px 24px rgba(0, 0, 0, 0.08);
  --overlay:        rgba(245, 240, 232, 0.75);
}

/* ==========================================================================
   2. RESET E BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
button { font-family: 'Jost', sans-serif; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: 'Jost', sans-serif; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

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

/* ==========================================================================
   3. TIPOGRAFIA
   ========================================================================== */
.serif       { font-family: 'Cormorant Garamond', serif; }
.serif-light { font-family: 'Cormorant Garamond', serif; font-weight: 300; }

.section-eyebrow {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}
.section-eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.8;
}

/* Separador dourado */
.gold-line {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-line--center { margin: 1.5rem auto; }

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section         { padding: 7rem 0; }
.section--sm     { padding: 4rem 0; }
.section--dark   { background: var(--bg-2); }
.section--darker { background: var(--bg); }
.section--card   { background: var(--bg-3); }

.section-header  { margin-bottom: 3.5rem; }

/* ==========================================================================
   5. BOTÕES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 2.25rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { flex-shrink: 0; }

/* Gold primary */
.btn-gold {
  background: var(--gold);
  color: #0d0d0d;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.30);
}
.btn-gold:active { transform: translateY(0); }

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim2);
}

/* Variante para hero (fundo sempre escuro) */
.hero-actions .btn-outline {
  color: rgba(245, 240, 232, 0.9);
  border-color: rgba(245, 240, 232, 0.5);
}
.hero-actions .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

/* Ghost link */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.btn-ghost:hover { border-bottom-color: var(--gold); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* Small variant */
.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.72rem; }

/* ==========================================================================
   6. HEADER / NAVEGAÇÃO
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color var(--transition);
}
.logo-sub {
  font-size: 0.57rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* Wrapper do texto do logo — precisa de ser flex column para empilhar nome e sub */
.logo-text-desktop {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* Logo mobile — imagem em vez de texto */
.logo-img-mobile {
  display: none;
  height: 38px;
  width: auto;
  object-fit: contain;
}
/* Tema escuro: usar logo branco */
[data-theme="dark"] .logo-img-mobile {
  content: url("../images/logo/logo_branco.png");
}

@media (max-width: 600px) {
  .logo-img-mobile    { display: block; }
  .logo-text-desktop  { display: none; }
}

/* Nav links */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-muted);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition);
  position: relative;
}
.icon-btn:hover { color: var(--gold); background: var(--gold-dim2); }

.cart-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  background: var(--gold);
  color: #0d0d0d;
  font-size: 0.58rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-badge[data-count="0"],
.cart-badge:empty { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  z-index: 890;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .nav-link {
  font-size: 1.1rem;
  letter-spacing: 0.16em;
}

/* ==========================================================================
   7. HERO
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(13, 13, 13, 0.88) 0%,
      rgba(13, 13, 13, 0.55) 55%,
      rgba(13, 13, 13, 0.88) 100%
    ),
    url('../images/banner.jpg') center / cover no-repeat;
}
[data-theme="light"] .hero-bg {
  background:
    linear-gradient(
      135deg,
      rgba(245, 240, 232, 0.88) 0%,
      rgba(245, 240, 232, 0.60) 55%,
      rgba(245, 240, 232, 0.88) 100%
    ),
    url('../images/banner.jpg') center / cover no-repeat;
}

/* ── HERO VÍDEO ──────────────────────────────────────────────────────────── */
.hero-bg--video {
  background: none;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.88) 0%,
    rgba(13, 13, 13, 0.55) 55%,
    rgba(13, 13, 13, 0.88) 100%
  );
  z-index: 1;
}
[data-theme="light"] .hero-video-overlay {
  background: linear-gradient(
    135deg,
    rgba(245, 240, 232, 0.88) 0%,
    rgba(245, 240, 232, 0.60) 55%,
    rgba(245, 240, 232, 0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-video { display: none; }
  .hero-bg--video {
    background:
      linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.88) 0%,
        rgba(13, 13, 13, 0.55) 55%,
        rgba(13, 13, 13, 0.88) 100%
      ),
      url('images/banner.jpg') center / cover no-repeat;
  }
  [data-theme="light"] .hero-bg--video {
    background:
      linear-gradient(
        135deg,
        rgba(245, 240, 232, 0.88) 0%,
        rgba(245, 240, 232, 0.60) 55%,
        rgba(245, 240, 232, 0.88) 100%
      ),
      url('images/banner.jpg') center / cover no-repeat;
  }
}

/* Hero para páginas internas */
.hero--page {
  min-height: 420px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 3rem;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.38s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.54s forwards;
}

/* Light mode — overlay escurecido no centro para legibilidade do texto */
[data-theme="light"] .hero-video-overlay {
  background: linear-gradient(
    135deg,
    rgba(245, 240, 232, 0.82) 0%,
    rgba(30, 25, 20, 0.38) 50%,
    rgba(245, 240, 232, 0.82) 100%
  );
}
[data-theme="light"] .hero-title {
  color: #f5f0e8;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
}
[data-theme="light"] .hero-desc {
  color: rgba(245, 240, 232, 0.88);
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.70s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 1;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ==========================================================================
   8. STATS BAR
   ========================================================================== */
.stats-bar {
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-3); }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========================================================================
   9. CARDS DE SERVIÇOS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg-card);
  padding: 2.75rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: var(--bg-3); }
.service-card:hover::after { transform: scaleX(1); }

.service-card-icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.service-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}
.service-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card-price {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.service-card-duration {
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}

/* Services por categoria (services.html) */
.services-category {
  margin-bottom: 4rem;
}
.services-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-list-item {
  background: var(--bg-card);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition);
}
.service-list-item:hover { background: var(--bg-3); }

.service-list-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.service-list-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
}
.service-list-right { text-align: right; flex-shrink: 0; }
.service-list-price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   10. GALERIA
   ========================================================================== */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-3);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid var(--border);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--text-muted);
  font-size: 1.5rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}
.lightbox-close:hover { color: var(--gold); background: var(--gold-dim2); }

/* ==========================================================================
   11. LOJA / PRODUTOS
   ========================================================================== */
.shop-filters-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.search-field {
  position: relative;
  flex: 1;
  max-width: 360px;
}
.search-field svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-faint);
  pointer-events: none;
}
.search-field input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.search-field input::placeholder { color: var(--text-faint); }
.search-field input:focus {
  outline: none;
  border-color: var(--gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-strong);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.product-card-image img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card-image img { transform: scale(1.07); }

.product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: var(--gold);
  color: #0d0d0d;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.product-card-body {
  padding: 1.4rem 1.5rem 1.75rem;
}
.product-card-category {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.4rem;
}
.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 0.45rem;
}
.product-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.product-card-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
}

/* Botão add to cart */
.btn-cart {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: all var(--transition);
}
.btn-cart:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim2);
}
.btn-cart.added {
  border-color: var(--gold);
  color: #0d0d0d;
  background: var(--gold);
}

/* ==========================================================================
   12. CARRINHO
   ========================================================================== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
  padding: 0 1.25rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.cart-table th:last-child { text-align: right; }
.cart-table td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  vertical-align: middle;
}
.cart-table td:last-child { text-align: right; }

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.cart-item-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--bg-3);
  border-radius: var(--radius);
  padding: 0.5rem;
  flex-shrink: 0;
}
.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-value {
  font-size: 0.9rem;
  min-width: 1.5rem;
  text-align: center;
}

.cart-remove {
  color: var(--text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.cart-remove:hover { color: #c0392b; }

.cart-price { color: var(--text-muted); }
.cart-subtotal { font-weight: 500; }

/* Cart summary panel */
.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: var(--radius-md);
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.cart-summary-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.summary-row.total {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.25rem;
}
.summary-row .gold { color: var(--gold); }

/* Empty cart */
.cart-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
}
.cart-empty svg {
  color: var(--text-faint);
  margin: 0 auto 1.5rem;
}

/* ==========================================================================
   13. CHECKOUT
   ========================================================================== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}

.checkout-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: var(--radius-md);
}
.checkout-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.form-group { margin-bottom: 1.5rem; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color var(--transition), background var(--transition);
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-2);
}
input::placeholder,
textarea::placeholder { color: var(--text-faint); }

select option { background: var(--bg-2); color: var(--text); }

.phone-group {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.75rem;
}

/* ==========================================================================
   14. BOOKING — Formulário multi-passo
   ========================================================================== */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.5rem;
  gap: 0;
}

.booking-step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-faint);
  background: var(--bg-card);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.step-dot.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim2);
}
.step-dot.done {
  border-color: var(--gold);
  color: #0d0d0d;
  background: var(--gold);
}
.step-line {
  width: 6rem;
  height: 1px;
  background: var(--border);
}
.step-line.done { background: var(--gold); }
.step-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.step-dot.active .step-label { color: var(--gold); }

/* Booking layout */
.booking-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.booking-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  display: none;
}
.booking-panel.active { display: block; }

.booking-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.booking-panel-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Serviços check-list */
.services-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
}

.service-check-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.service-check-label:hover { border-color: var(--border-strong); background: var(--bg-2); }
.service-check-label input[type="checkbox"] {
  width: 0; height: 0; opacity: 0; position: absolute;
}
.service-check-label input:checked ~ .check-box {
  border-color: var(--gold);
  background: var(--gold);
}
.service-check-label input:checked ~ .check-box svg { opacity: 1; }
.service-check-label input:checked + .service-check-label { border-color: var(--gold); }
.service-check-label:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-dim2);
}

.check-box {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: #0d0d0d;
}
.check-box svg { opacity: 0; transition: opacity 0.15s; }

.check-info { flex: 1; }
.check-name {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.check-meta {
  font-size: 0.73rem;
  color: var(--text-muted);
}
.check-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}

/* Calendário */
.calendar-wrap { margin-bottom: 2rem; }
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.calendar-month-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.calendar-nav {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.calendar-nav:hover { border-color: var(--gold); color: var(--gold); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}
.calendar-day-name {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  padding-bottom: 0.5rem;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.calendar-day:hover:not(.disabled):not(.empty) {
  border-color: var(--border-strong);
  background: var(--bg-2);
  color: var(--text);
}
.calendar-day.selected {
  border-color: var(--gold);
  background: var(--gold-dim2);
  color: var(--gold);
  font-weight: 500;
}
.calendar-day.today { color: var(--gold); }
.calendar-day.disabled { color: var(--text-faint); cursor: not-allowed; }
.calendar-day.empty { cursor: default; }

/* Slots de horário */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.5rem;
}
.time-slot {
  padding: 0.65rem;
  text-align: center;
  font-size: 0.82rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.time-slot:hover:not(.ocupado) {
  border-color: var(--border-strong);
  color: var(--text);
}
.time-slot.selected {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim2);
}
.time-slot.ocupado {
  background: var(--bg-3);
  color: var(--text-faint);
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Booking summary */
.booking-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.summary-cell {
  background: var(--bg-card);
  padding: 1.5rem;
}
.summary-cell-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.4rem;
}
.summary-cell-value {
  font-size: 1rem;
  color: var(--text);
}
.summary-cell-value.gold { color: var(--gold); font-weight: 500; }

/* Booking footer actions */
.booking-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   15. SOBRE NÓS
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--bg-3);
  border: 1px solid var(--border);
}
.about-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.about-image-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: #0d0d0d;
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.about-image-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
}
.about-image-badge-text {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 0.25rem;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.team-card-image {
  aspect-ratio: 1;
  background: var(--bg-3);
  overflow: hidden;
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.team-card:hover .team-card-image img { transform: scale(1.05); }
.team-card-body { padding: 1.5rem; }
.team-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.team-card-role {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Values list */
.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
}
.value-item {
  padding: 2rem 2.25rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.value-item:nth-child(3n) { border-right: none; }
.value-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.value-title {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.value-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ==========================================================================
   16. CONTACTOS
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item:hover { background: var(--bg-3); }
.contact-info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.3rem;
}
.contact-info-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 300;
}
.contact-info-value a:hover { color: var(--gold); }

.hours-table {
  width: 100%;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 400; color: var(--text); }
.hours-closed { color: var(--text-faint); }

.map-embed {
  width: 100%;
  height: 320px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-3);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(5%);
}
[data-theme="light"] .map-embed iframe {
  filter: grayscale(60%);
}

/* Social links */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim2);
}

/* Contact form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   17. CTA SECTION
   ========================================================================== */
.cta-section {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-title { margin-bottom: 1.25rem; }
.cta-section .section-sub { margin: 0 auto 2.5rem; text-align: center; }

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-name { font-size: 1.3rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-faint);
}

/* ==========================================================================
   19. TOAST / NOTIFICAÇÃO
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}
.toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-card);
  animation: toastIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all;
  max-width: 320px;
}
.toast svg { color: var(--gold); flex-shrink: 0; }
.toast.exit { animation: toastOut 0.3s forwards; }

/* ==========================================================================
   20. PAGE HERO INTERNO
   ========================================================================== */
.page-hero {
  padding-top: var(--header-h);
  padding-bottom: 0;
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(13,13,13,0.92) 0%,
      rgba(13,13,13,0.5) 100%
    ),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80') center / cover no-repeat;
}
[data-theme="light"] .page-hero-bg {
  background:
    linear-gradient(
      to right,
      rgba(245,240,232,0.93) 0%,
      rgba(245,240,232,0.55) 100%
    ),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80') center / cover no-repeat;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.75s 0.1s forwards;
}
.page-hero-content p {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.75s 0.25s forwards;
}
.page-hero-content .breadcrumb {
  opacity: 0;
  animation: fadeUp 0.75s 0s forwards;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--text-faint); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ==========================================================================
   21. TERMS PAGE
   ========================================================================== */
.terms-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.terms-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.terms-wrap p,
.terms-wrap li {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 0.75rem;
}
.terms-wrap ul { margin-left: 1.5rem; list-style: disc; }
.terms-last-update {
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   22. ANIMAÇÕES
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(24px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   23. RESPONSIVO
   ========================================================================== */
/* ── Homepage layout helpers ──────────────────────────────────────────────── */
.booking-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   RESPONSIVIDADE — reescrita completa
   Breakpoints: 1100 | 900 | 680 | 480
   ========================================================================== */

/* ── 1100px: tablet landscape ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .footer-brand       { grid-column: span 2; }
  .about-grid         { gap: 3rem; }
  .booking-cta-grid   { gap: 3rem; }
}

/* ── 900px: tablet landscape ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Layouts gerais */
  .cart-layout        { grid-template-columns: 1fr; }
  .checkout-layout    { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .about-grid         { grid-template-columns: 1fr; }
  .about-image-wrap   { display: none; }

  /* Homepage — secção marcação */
  .booking-cta-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* CTA buttons */
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-btns .btn {
    text-align: center;
  }
}

/* ── 1200px: esconder elementos extra do header ───────────────────────────── */
@media (max-width: 1200px) {
  .header-marcar-btn  { display: none; }
  .header-tel         { display: none; }
}

/* ── 1100px: hamburger ────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav                { display: none; }
  .hamburger          { display: flex; }
  .header-tel         { display: none; }
  .header-marcar-btn  { display: none; }
}

/* ── 600px: logo compacto + esconder tel ──────────────────────────────────── */
@media (max-width: 600px) {
  .logo-sub           { display: none; }
  .logo-name          { font-size: 1.1rem; }
  .header-tel         { display: none; }
  .logo-img-mobile    { height: 32px; }
}

/* ── 680px: mobile ────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
  :root { --header-h: 62px; }

  /* Espaçamento global */
  .container          { padding: 0 1.25rem; }
  .section            { padding: 4rem 0; }

  /* Header */
  .header-inner       { padding: 0; }
  .logo-name          { font-size: 1.1rem; }
  .header-tel         { display: none; }

  /* Hero */
  .hero-title         { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions       { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .hero-actions .btn  { width: 100%; text-align: center; }

  /* Serviços homepage */
  .services-grid      { grid-template-columns: 1fr; gap: 1rem; }
  .service-card       { padding: 1.5rem; }

  /* Stats */
  .stats-bar-inner    { grid-template-columns: 1fr; }
  .stat-item          { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  /* Galeria */
  .gallery-grid       { grid-template-columns: repeat(2, 1fr); }

  /* Loja */
  .products-grid      { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr; }
  .footer-brand       { grid-column: auto; }
  .footer-bottom      { flex-direction: column; gap: .5rem; text-align: center; }

  /* Carrinho */
  .cart-table th:nth-child(2),
  .cart-table td:nth-child(2) { display: none; }

  /* Forms */
  .form-grid-2        { grid-template-columns: 1fr; }

  /* Marcações */
  .booking-progress   { gap: 0; overflow-x: auto; padding-bottom: 2rem; }
  .step-line          { width: 3rem; }
  .booking-summary-grid { grid-template-columns: 1fr; }
  .services-checklist { grid-template-columns: 1fr; }
}

/* ── 480px: mobile pequeno ────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .products-grid      { grid-template-columns: 1fr; }
  .gallery-grid       { grid-template-columns: 1fr; }
  .btn                { padding: 0.75rem 1.5rem; }
  .hero-title         { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .section-title      { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .footer-grid        { gap: 2rem; }
}

/* ==========================================================================
   24. PÁGINAS ADICIONAIS — About / Contact / Terms / Cart / Checkout
   ========================================================================== */

/* --- About Intro --- */
.about-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-body {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.about-stat {
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
}
.about-stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* --- About Values --- */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.about-value-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.3s;
}
.about-value-card:hover { border-color: var(--gold); }
.about-value-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.about-value-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.about-value-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* --- Team Card (no image) --- */
.team-card-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
}
.team-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* --- Contact Layout --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-col .section-label,
.contact-form-col .section-label { margin-bottom: 0.5rem; }
.contact-info-list {
  list-style: none;
  margin: 2rem 0;
}
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-info-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.contact-info-item p, .contact-info-item a {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.contact-info-item a:hover { color: var(--gold); }
.contact-whatsapp-btn { display: block; text-align: center; }
.contact-form { margin-top: 1.5rem; }
.contact-map-section { width: 100%; height: 420px; }
.contact-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3);
}

/* --- Terms --- */
.terms-container {
  max-width: 760px;
  margin: 0 auto;
}
.terms-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.terms-block {
  margin-bottom: 2.5rem;
}
.terms-heading {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.terms-block p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.terms-block a { color: var(--gold); }
.terms-back {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* --- Cart Page --- */
.cart-section { min-height: 60vh; }
.cart-empty { text-align: center; padding: 5rem 0; }
.cart-empty-icon { font-size: 3rem; color: var(--text-muted); margin-bottom: 1rem; }
.cart-empty-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.cart-empty-desc { color: var(--text-muted); margin-bottom: 2rem; }
.cart-table-wrap { overflow-x: auto; margin-bottom: 3rem; }
.cart-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}
.cart-summary {
  min-width: 320px;
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--bg-card);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-summary-total {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
}
.cart-shipping-note { color: var(--text-muted); font-size: 0.85rem; }
.btn-full { display: block; width: 100%; text-align: center; margin-top: 1.5rem; }
.cart-secure-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* --- Checkout Page --- */
.checkout-section { min-height: 70vh; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}
.checkout-col-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr 2fr; gap: 1.25rem; }
.phone-input-row { display: flex; gap: 0.75rem; }
.phone-prefix { flex: 0 0 130px; }
.phone-number { flex: 1; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-textarea--tall { min-height: 160px; }
.form-error {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.4rem;
}

/* Payment options */
.payment-options { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.payment-option { display: flex; align-items: stretch; cursor: pointer; }
.payment-option input[type="radio"] { display: none; }
.payment-option-box {
  flex: 1;
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}
.payment-option input:checked + .payment-option-box {
  border-color: var(--gold);
  background: color-mix(in srgb, var(--gold) 8%, transparent);
}
.payment-option-name { display: block; font-weight: 500; margin-bottom: 0.25rem; }
.payment-option-desc { font-size: 0.8rem; color: var(--text-muted); }

/* Checkout summary */
.checkout-summary-col {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--bg-card);
}
.checkout-order-items { margin-bottom: 1.5rem; }
.checkout-order-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.checkout-order-item-name { color: var(--text-muted); }
.checkout-order-totals { margin-top: 1rem; }
.checkout-back-link {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
}
.checkout-back-link a { color: var(--text-muted); }
.checkout-back-link a:hover { color: var(--gold); }
.checkout-submit-btn { margin-top: 2rem; }

/* --- CTA section desc --- */
.cta-desc {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Responsive additions --- */
@media (max-width: 1100px) {
  .about-values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about-intro-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro-stats { grid-template-columns: 1fr 1fr; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary-col { position: static; }
}
@media (max-width: 680px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .cart-footer-row { flex-direction: column; }
  .cart-summary { min-width: auto; width: 100%; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .terms-back { flex-direction: column; }
  .about-intro-stats { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   25. BOOKING.PHP — Layout real com PHP
   ========================================================================== */

/* Gender filter */
.gender-filter-bar {
  text-align: center;
  margin-bottom: 3rem;
}
.gender-filter-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.gender-filter-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.gender-btn {
  padding: 0.75rem 2.5rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.gender-btn:hover,
.gender-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #000;
}

/* Booking two-column layout */
.booking-php-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.booking-left-column { display: flex; flex-direction: column; gap: 3rem; }

/* Step blocks */
.booking-step-block {
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--bg-card);
}
.booking-step-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.booking-step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-top: 0.1rem;
}
.booking-step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.booking-step-desc { font-size: 0.85rem; color: var(--text-muted); }
.booking-placeholder { color: var(--text-muted); font-size: 0.9rem; }

/* Service cards */
.services-grid-print {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card-print {
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  background: var(--bg-secondary);
  cursor: pointer;
  transition: border-color 0.2s;
}
.service-card-print:hover { border-color: var(--gold); }
.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.service-name {
  font-weight: 500;
  font-size: 0.95rem;
}
.service-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.service-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.service-duration {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Custom select dropdown */
.custom-select-wrapper {
  position: relative;
  margin-top: 0.75rem;
}
.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: border-color 0.2s;
  user-select: none;
}
.custom-select-trigger:hover,
.custom-select-wrapper.open .custom-select-trigger { border-color: var(--gold); }
.custom-select-trigger.has-value { color: var(--text); }
.custom-select-trigger .arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.custom-select-wrapper.open .arrow { transform: rotate(180deg); }
.custom-select-options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  z-index: 100;
  max-height: 240px;
  overflow-y: auto;
}
.custom-select-wrapper.open .custom-select-options { display: block; }
.custom-select-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s;
}
.custom-select-option:hover { background: var(--bg-secondary); }
.custom-select-option.selected { color: var(--gold); }
.custom-select-option.reset-option { color: var(--text-muted); font-style: italic; }
.option-price { color: var(--gold); font-weight: 600; }

/* Right column box */
.booking-right-column {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.booking-right-box {
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--bg-card);
}

/* Booking summary */
.booking-summary-box {
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.booking-summary-row:last-child { border-bottom: none; }
.booking-summary-total {
  font-weight: 600;
}
.summary-val { color: var(--text-muted); text-align: right; max-width: 55%; }
.summary-total-val { color: var(--gold); font-weight: 700; }
.booking-confirm-btn { margin-top: 0; }

/* Shop controls */
.shop-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.shop-search-wrap { width: 100%; max-width: 480px; }
.shop-search-input { width: 100%; }
.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 0;
}
.product-card-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty-input {
  width: 54px;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-align: center;
  border-radius: 0;
  appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Responsive */
@media (max-width: 900px) {
  .booking-php-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .booking-right-column { position: static; }
  .gender-filter-btns { flex-direction: row; }
}
@media (max-width: 680px) {
  .gender-filter-btns { flex-direction: column; align-items: center; }
  .gender-btn { width: 100%; max-width: 240px; }
}

/* ==========================================================================
   BOOKING.PHP — Calendário e slots (classes específicas do layout PHP)
   ========================================================================== */
.calendar-print {
  border: 1px solid var(--border);
  padding: 1.25rem;
  background: var(--bg-secondary, var(--bg-2));
}
.calendar-print .calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.calendar-print #currentMonth {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.calendar-print #prevMonth,
.calendar-print #nextMonth {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.calendar-print #prevMonth:hover,
.calendar-print #nextMonth:hover { border-color: var(--gold); color: var(--gold); }

/* Cabeçalho dos dias da semana */
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.calendar-weekday {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  padding-bottom: 0.25rem;
}

/* Grid dos dias */
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

/* Time slots do booking.php */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}
/* Placeholder ocupa a largura total, fora do grid de colunas */
.time-slots > p {
  grid-column: 1 / -1;
}
.time-slot {
  padding: 0.5rem 0.25rem;
  text-align: center;
  font-size: 0.82rem;
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
}
.time-slot:hover:not(.ocupado) { border-color: var(--gold); color: var(--gold); }
.time-slot.selected { border-color: var(--gold); background: var(--gold-dim); color: var(--gold); font-weight: 500; }
.time-slot.ocupado { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* ==========================================================================
   ESTILOS ESPECÍFICOS DE PÁGINA
   ========================================================================== */

/* ── SHOP.PHP ──────────────────────────────────────────────────── */
/* ── FILTROS ────────────────────────────────────────────────────────────── */
    .shop-filters {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 3.5rem;
    }
    .shop-filter-btn {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 1.5rem;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      border-radius: 1px;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .shop-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
    .shop-filter-btn.active { border-color: var(--gold); background: var(--gold); color: #0d0d0d; }
    .shop-filter-btn .count {
      font-size: 0.6rem;
      background: rgba(255,255,255,0.12);
      padding: 0.1rem 0.45rem;
      border-radius: 20px;
      letter-spacing: 0;
      font-weight: 600;
    }
    .shop-filter-btn.active .count { background: rgba(0,0,0,0.15); }

    /* ── GRELHA ─────────────────────────────────────────────────────────────── */
    .shop-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 2rem;
      position: relative;
    }

    /* ── BASE DO CARD ───────────────────────────────────────────────────────── */
    .shop-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      background: var(--bg-card);
      border: 1px solid var(--border);
      transition: border-color var(--transition), transform var(--transition),
                  box-shadow var(--transition), opacity 0.3s ease;
      position: relative;
    }
    .shop-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 12px 48px rgba(212,175,55,0.12);
    }

    /* Oculto pelo filtro */
    .shop-card.hidden {
      display: none;
    }

    /* ── IMAGEM ─────────────────────────────────────────────────────────────── */
    .shop-card-img {
      position: relative;
      aspect-ratio: 1 / 1;
      background: var(--bg-2);
      overflow: hidden;
    }
    .shop-card-img img {
      width: 100%; height: 100%;
      object-fit: contain; padding: 1.75rem;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .shop-card:hover .shop-card-img img { transform: scale(1.06); }

    .shop-card-overlay {
      position: absolute; inset: 0;
      background: rgba(0,0,0,0.42);
      display: flex; align-items: flex-end; padding: 1.1rem;
      opacity: 0; transform: translateY(4px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .shop-card:hover .shop-card-overlay { opacity: 1; transform: translateY(0); }
    .shop-card-overlay span {
      width: 100%; padding: 0.7rem 1rem;
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      background: var(--gold); color: #0d0d0d;
      text-align: center; display: block;
    }

    /* Placeholder letra */
    .shop-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem; font-weight: 300;
      color: var(--gold); opacity: 0.3;
    }

    /* Linha dourada no topo do card para identificar tipo */
    .shop-card[data-tipo="gama"]::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      z-index: 1;
    }

    /* ── CORPO DO CARD ──────────────────────────────────────────────────────── */
    .shop-card-body {
      padding: 1.1rem 1.25rem 1.4rem;
      border-top: 1px solid var(--border);
      flex: 1; display: flex; flex-direction: column; gap: 0.3rem;
    }
    .shop-card-tipo {
      font-size: 0.58rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 0.1rem;
    }
    .shop-card-tipo.tipo-produto { color: var(--text-muted); }
    .shop-card-nome {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 400;
      color: var(--text); line-height: 1.25;
    }
    .shop-card-sub {
      font-size: 0.68rem; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--text-muted);
    }
    .shop-card-preco {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; color: var(--gold);
      margin-top: auto; padding-top: 0.4rem;
    }

    /* Estado vazio */
    .shop-empty {
      grid-column: 1/-1; text-align: center;
      padding: 5rem 0; color: var(--text-muted);
    }
    .shop-empty-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; color: var(--text); margin-bottom: 0.5rem;
    }

    /* Mensagem sem resultados (quando filtro não encontra nada) */
    .no-results {
      grid-column: 1/-1; text-align: center;
      padding: 4rem 0; color: var(--text-muted);
      display: none;
    }
    .no-results.visible { display: block; }

/* ── CATEGORIA.PHP ─────────────────────────────────────────────── */
/* ── GRELHA DE GAMAS ──────────────────────────────────────────────────── */
    .gamas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 2rem;
    }

    /* ── CARD DE GAMA ─────────────────────────────────────────────────────── */
    .gama-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      background: var(--bg-card);
      border: 1px solid var(--border);
      transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    }
    .gama-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 12px 48px rgba(212,175,55,0.12);
    }

    .gama-card-img {
      position: relative;
      aspect-ratio: 1 / 1;
      background: var(--bg-2);
      overflow: hidden;
    }
    .gama-card-img img {
      width: 100%; height: 100%;
      object-fit: contain; padding: 1.75rem;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .gama-card:hover .gama-card-img img { transform: scale(1.06); }

    .gama-card-overlay {
      position: absolute; inset: 0;
      background: rgba(0,0,0,0.42);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity 0.3s ease;
    }
    .gama-card:hover .gama-card-overlay { opacity: 1; }
    .gama-card-overlay span {
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: #0d0d0d; background: var(--gold);
      padding: 0.65rem 1.4rem;
    }

    /* Placeholder */
    .gama-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem; font-weight: 300;
      color: var(--gold); opacity: 0.4;
    }

    .gama-card-body {
      padding: 1.1rem 1.25rem 1.4rem;
      border-top: 1px solid var(--border);
    }
    .gama-card-nome {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 400;
      color: var(--text); margin-bottom: 0.3rem; line-height: 1.2;
    }
    .gama-card-count {
      font-size: 0.68rem; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--text-muted);
    }
    .gama-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.6;
}

    /* Vazio */
    .shop-empty { grid-column:1/-1; text-align:center; padding:4rem 0; color:var(--text-muted); }
    .shop-empty-title { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--text); margin-bottom:0.5rem; }

    .hero-desc {
      font-size: 0.95rem; color: var(--text-muted);
      max-width: 520px; margin: 0.75rem auto 0;
      line-height: 1.8; text-align: center;
    }

/* ── GAMA.PHP ──────────────────────────────────────────────────── */
/* ── FILTROS ──────────────────────────────────────────────────────────── */
    .shop-filters {
      display: flex; gap: 0.5rem;
      flex-wrap: wrap; justify-content: center;
      margin-bottom: 3.5rem;
    }
    .shop-filter-btn {
      padding: 0.55rem 1.4rem;
      font-size: 0.7rem; font-weight: 500;
      letter-spacing: 0.18em; text-transform: uppercase;
      border: 1px solid var(--border);
      background: transparent; color: var(--text-muted);
      cursor: pointer; border-radius: 1px;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .shop-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
    .shop-filter-btn.active { border-color: var(--gold); background: var(--gold); color: #0d0d0d; }

    /* ── GRELHA DE PRODUTOS ───────────────────────────────────────────────── */
    .shop-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 2rem;
    }

    /* ── CARD ─────────────────────────────────────────────────────────────── */
    .product-card {
      display: flex; flex-direction: column;
      text-decoration: none; color: inherit;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .product-card.hidden {
      opacity: 0; pointer-events: none;
      transform: scale(0.97);
      visibility: hidden; position: absolute;
    }

    .product-card-image-wrap {
      position: relative; overflow: hidden;
      background: var(--bg-2); aspect-ratio: 1/1;
      margin-bottom: 1.1rem;
    }
    .product-card-image-wrap img {
      width: 100%; height: 100%;
      object-fit: contain; padding: 1.5rem;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .product-card:hover .product-card-image-wrap img { transform: scale(1.06); }

    .product-card-overlay {
      position: absolute; inset: 0;
      background: rgba(0,0,0,0.45);
      display: flex; align-items: flex-end; padding: 1.25rem;
      opacity: 0; transform: translateY(6px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .product-card:hover .product-card-overlay { opacity: 1; transform: translateY(0); }
    .product-card-overlay .btn-add {
      width: 100%; padding: 0.75rem 1rem;
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      background: var(--gold); color: #0d0d0d; text-align: center;
    }

    .product-card-cat   { font-size:0.65rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--text-faint); margin-bottom:0.35rem; }
    .product-card-name  { font-family:'Cormorant Garamond',serif; font-size:1.15rem; font-weight:400; color:var(--text); margin:0 0 0.5rem; line-height:1.3; }
    .product-card-price { font-family:'Cormorant Garamond',serif; font-size:1.25rem; color:var(--gold); }

    .shop-empty { grid-column:1/-1; text-align:center; padding:4rem 0; color:var(--text-muted); }
    .shop-empty-title { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--text); margin-bottom:0.5rem; }

    .hero-desc { font-size:0.95rem; color:var(--text-muted); max-width:520px; margin:0.75rem auto 0; line-height:1.8; text-align:center; }

/* ── PRODUTO.PHP ───────────────────────────────────────────────── */
/* ── PRODUTO DETALHE ────────────────────────────────────────────────────── */
    .produto-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
      margin-bottom: 5rem;
    }

    /* Galeria de imagem */
    .produto-gallery { position: sticky; top: calc(var(--header-h, 64px) + 2rem); }
    .produto-img-main {
      aspect-ratio: 1 / 1;
      background: var(--bg-2, #111);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-bottom: 1rem;
    }
    .produto-img-main img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 2.5rem;
      transition: opacity 0.25s ease;
    }
    .produto-thumbs {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }
    .produto-thumb {
      width: 72px;
      height: 72px;
      border: 1px solid var(--border, rgba(255,255,255,0.08));
      background: var(--bg-2, #111);
      cursor: pointer;
      overflow: hidden;
      transition: border-color 0.2s;
      flex-shrink: 0;
    }
    .produto-thumb:hover,
    .produto-thumb.active { border-color: var(--gold, #d4af37); }
    .produto-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

    /* Info */
    .produto-info { padding-top: 0.5rem; }
    .produto-cat {
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold, #d4af37);
      margin-bottom: 0.75rem;
    }
    .produto-nome {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.6rem;
      font-weight: 400;
      color: var(--text, #f0ead6);
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .produto-preco {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 400;
      color: var(--gold, #d4af37);
      margin-bottom: 1.5rem;
    }
    .produto-desc {
      font-size: 0.92rem;
      color: var(--text-muted, #888);
      line-height: 1.85;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--border, rgba(255,255,255,0.08));
    }

    /* Selector de nuances */
    .nuances-section { margin-bottom: 2rem; }
    .nuances-label {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted, #888);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .nuances-label span {
      color: var(--text, #f0ead6);
      font-weight: 500;
      letter-spacing: 0;
      text-transform: none;
      font-size: 0.85rem;
    }
    .nuances-select {
      width: 100%;
      padding: 0.85rem 1rem;
      border: 1px solid var(--border, rgba(255,255,255,0.1));
      background: var(--bg-2, #111);
      color: var(--text, #f0ead6);
      font-family: 'Jost', sans-serif;
      font-size: 0.9rem;
      appearance: none;
      cursor: pointer;
      transition: border-color 0.2s;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
    }
    .nuances-select:focus { outline: none; border-color: var(--gold, #d4af37); }

    /* Botões de acção */
    .produto-actions {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }
    .produto-actions .btn-add-cart {
      flex: 1;
      padding: 1rem;
      background: var(--gold, #d4af37);
      color: #0d0d0d;
      border: none;
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .produto-actions .btn-add-cart:hover { background: #e8c53a; transform: translateY(-1px); }
    .produto-actions .btn-back {
      padding: 1rem 1.5rem;
      border: 1px solid var(--border, rgba(255,255,255,0.1));
      background: transparent;
      color: var(--text-muted, #888);
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      display: flex;
      align-items: center;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }
    .produto-actions .btn-back:hover { border-color: var(--gold, #d4af37); color: var(--gold, #d4af37); }

    /* ── FÓRMULA E BENEFÍCIOS ─────────────────────────────────────────────── */
    .produto-details {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      padding: 4rem 0;
      border-top: 1px solid var(--border, rgba(255,255,255,0.08));
      border-bottom: 1px solid var(--border, rgba(255,255,255,0.08));
      margin-bottom: 5rem;
    }
    .details-block h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--text, #f0ead6);
      margin-bottom: 1.75rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border, rgba(255,255,255,0.08));
    }
    .details-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
    .details-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.88rem;
      color: var(--text-muted, #888);
      line-height: 1.75;
    }
    .details-list li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold, #d4af37);
      margin-top: 0.55rem;
      flex-shrink: 0;
    }
    .details-list li strong { color: var(--text, #f0ead6); font-weight: 500; }

    /* ── PRODUTOS RELACIONADOS ────────────────────────────────────────────── */
    .relacionados-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.75rem;
      font-weight: 400;
      text-align: center;
      color: var(--text, #f0ead6);
      margin-bottom: 3rem;
      padding-bottom: 1.5rem;
      position: relative;
    }
    .relacionados-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 1px;
      background: var(--gold, #d4af37);
    }
    .relacionados-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 2rem;
    }
    .rel-card { display: flex; flex-direction: column; }
    .rel-card-img {
      aspect-ratio: 1 / 1;
      background: var(--bg-2, #111);
      overflow: hidden;
      margin-bottom: 1rem;
    }
    .rel-card-img img {
      width: 100%; height: 100%;
      object-fit: contain;
      padding: 1.25rem;
      transition: transform 0.4s ease;
    }
    .rel-card:hover .rel-card-img img { transform: scale(1.05); }
    .rel-card-cat {
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-faint, var(--text-muted, #666));
      margin-bottom: 0.3rem;
    }
    .rel-card-nome {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--text, #f0ead6);
      margin-bottom: 0.4rem;
      text-decoration: none;
    }
    .rel-card-nome:hover { color: var(--gold, #d4af37); }
    .rel-card-preco {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--gold, #d4af37);
    }

    /* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
    @media (max-width: 900px) {
      .produto-layout { grid-template-columns: 1fr; gap: 2.5rem; }
      .produto-gallery { position: static; }
      .produto-details { grid-template-columns: 1fr; gap: 2rem; }
    }
    @media (max-width: 600px) {
      .produto-nome { font-size: 2rem; }
      .produto-actions { flex-direction: column; }
    }

/* ── SERVICES.PHP ──────────────────────────────────────────────── */
/* ── SLIDER DE SERVIÇOS ─────────────────────────────────────────────────── */

    .services-category {
      margin-bottom: 4rem;
    }

    /* Cabeçalho da categoria: título + setas */
    .services-category-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
      gap: 1rem;
    }

    .services-category-title {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--text);
      margin: 0;
    }

    .services-category-title svg {
      color: var(--gold);
      flex-shrink: 0;
    }

    /* Botões de navegação das setas */
    .slider-controls {
      display: flex;
      gap: 0.5rem;
      flex-shrink: 0;
    }

    .slider-arrow {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
      border-radius: 2px;
      flex-shrink: 0;
    }

    .slider-arrow:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* O slider horizontal */
    .services-slider {
      display: flex;
      gap: 1.25rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -ms-overflow-style: none;   /* IE/Edge */
      scrollbar-width: none;      /* Firefox */
      padding-bottom: 0.5rem;     /* espaço para sombra do card */
    }

    .services-slider::-webkit-scrollbar {
      display: none; /* Chrome/Safari */
    }

    /* Cada card de serviço */
    .service-card {
      flex: 0 0 calc(25% - 1rem); /* 4 cards visíveis em desktop */
      min-width: 220px;           /* móvel: scroll horizontal — reduzido */
      scroll-snap-align: start;
      border: 1px solid var(--border);
      background: var(--bg-card, var(--bg-2));
      display: flex;
      flex-direction: column;
      padding: 1.75rem 1.5rem 1.5rem;
      transition: border-color 0.25s;
    }

    .service-card:hover {
      border-color: var(--gold);
    }

    .service-card-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--text);
      margin: 0 0 0.6rem;
      line-height: 1.3;
    }

    .service-card-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.7;
      flex: 1; /* empurra footer para o fundo */
      margin: 0 0 1.25rem;
    }

    .service-card-duration {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-faint, var(--text-muted));
      margin-bottom: 1.25rem;
    }

    .service-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      margin-top: auto;
      padding-top: 1.25rem;
      border-top: 1px solid var(--border);
    }

    .service-card-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 400;
      color: var(--gold);
    }

    /* Estado vazio (sem serviços na categoria) */
    .services-empty {
      padding: 2rem;
      color: var(--text-muted);
      font-size: 0.9rem;
      border: 1px dashed var(--border);
      text-align: center;
    }

    /* ── RESPONSIVO ─────────────────────────────────────────────────────────── */
    @media (max-width: 1100px) {
      .service-card { flex: 0 0 calc(33.333% - 1rem); }
    }

    @media (max-width: 768px) {
      .service-card { flex: 0 0 calc(50% - 0.75rem); }
    }

    @media (max-width: 480px) {
      .service-card { flex: 0 0 85%; min-width: 0; }
      .services-category-title { font-size: 1.25rem; }
    }

/* ── SHOP SEARCH ─────────────────────────────────────────────────────────── */
.shop-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

.shop-search-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  pointer-events: none;
  flex-shrink: 0;
}

#shopSearch {
  width: 100%;
  padding: 0.75rem 2.75rem 0.75rem 2.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.04em;
  transition: border-color 0.2s;
  border-radius: var(--radius);
}
#shopSearch::placeholder { color: var(--text-muted); }
#shopSearch:focus { outline: none; border-color: var(--gold); }

#shopSearchClear {
  position: absolute;
  right: 0.85rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}
#shopSearchClear:hover { color: var(--text); }

/* ── SIDE-DRAWER: garantir que não afecta o layout da página ─────────────── */
#cartDrawer,
#cartDrawerOverlay {
  position: fixed !important;
  pointer-events: none;
  height: 0 !important;
  overflow: hidden !important;
}
#cartDrawer.open,
#cartDrawerOverlay.open {
  pointer-events: all;
  height: 100dvh !important;
  overflow: hidden !important;
}
#cartDrawerOverlay.open {
  height: 100% !important;
}
/* ── HEADER TEL ──────────────────────────────────────────────────────────── */
.header-tel {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .04em;
  padding: .3rem .6rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.header-tel:hover {
  color: var(--gold);
  border-color: var(--border);
}
.header-tel svg {
  flex-shrink: 0;
  opacity: .7;
}
/* Esconder o texto em mobile — fica só o ícone */
/* header-tel escondido em mobile via breakpoint 900px */

/* ==========================================================================
   RESPONSIVIDADE MOBILE — Páginas internas (de 50 em 50px)
   ========================================================================== */

/* ── 750px ──────────────────────────────────────────────────────────────── */
@media (max-width: 750px) {
  /* Serviços — slider passa a mostrar 1 card de cada vez */
  .service-card { flex: 0 0 90%; min-width: 0; }
}

/* ── 700px ──────────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  /* Contacto — coluna única garantida */
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  /* Sobre — coluna única */
  .about-intro-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── 650px ──────────────────────────────────────────────────────────────── */
@media (max-width: 650px) {
  /* Loja — grelha de 2 colunas mais apertada */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  /* Marcações — layout coluna única */
  .booking-layout { grid-template-columns: 1fr !important; }
}

/* ── 600px ──────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Padding do container mais generoso */
  .container, .container--wide { padding: 0 1rem; }

  /* Hero títulos das páginas internas */
  .page-hero-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }

  /* Marcações — passos da progress bar mais compactos */
  .booking-progress { gap: 0; overflow-x: auto; }
  .step-label { font-size: .65rem; }

  /* Serviços — card full width */
  .service-card { flex: 0 0 92%; min-width: 0; }

  /* Sobre — stats 2 colunas mantidas */
  .about-intro-stats { grid-template-columns: 1fr 1fr; }
}

/* ── 550px ──────────────────────────────────────────────────────────────── */
@media (max-width: 550px) {
  /* Loja — 2 colunas mas padding reduzido nos cards */
  .gama-card { padding: 1rem; }
  .product-card-inner { padding: .85rem; }

  /* Serviços — título da categoria mais pequeno */
  .services-category-title { font-size: 1.1rem; }
  .services-category-header { margin-bottom: 1rem; }
}

/* ── 500px ──────────────────────────────────────────────────────────────── */
@media (max-width: 500px) {
  /* Loja — coluna única */
  .products-grid { grid-template-columns: 1fr; }

  /* Galeria — coluna única */
  .gallery-grid { grid-template-columns: 1fr; }

  /* Sobre — stats coluna única */
  .about-intro-stats { grid-template-columns: 1fr; }

  /* Contacto — mapa mais baixo */
  .contact-map-section { height: 280px; }

  /* Secções com menos padding */
  .section { padding: 3rem 0; }
  .section--sm { padding: 2rem 0; }
}

/* ── 450px ──────────────────────────────────────────────────────────────── */
@media (max-width: 450px) {
  /* Container ainda mais apertado */
  .container, .container--wide { padding: 0 .85rem; }

  /* Loja — filtros de categoria em wrap */
  .shop-filters { flex-wrap: wrap; gap: .5rem; }
  .shop-filter-btn { font-size: .72rem; padding: .45rem .85rem; }

  /* Serviços — botão marcar largura total */
  .service-card-footer { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .service-card-footer .btn { width: 100%; text-align: center; font-size: .75rem; padding: .5rem; }

  /* Marcações — calendário */
  .calendar-day { font-size: .78rem; min-height: 36px; }
  .calendar-weekday { font-size: .65rem; }
}

/* ── 400px ──────────────────────────────────────────────────────────────── */
@media (max-width: 400px) {
  /* Padding mínimo */
  .container, .container--wide { padding: 0 .75rem; }

  /* Serviços — card quase full width */
  .service-card { flex: 0 0 95%; }

  /* Loja — imagens dos cards mais pequenas */
  .product-card-img { height: 160px; }
  .gama-card-img { height: 140px; }

  /* Títulos gerais */
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .page-hero-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  /* Contacto — horário em bloco */
  .contact-info-item { gap: .75rem; }

  /* Footer */
  .footer-grid { gap: 1.5rem; }
}

/* ── 350px ──────────────────────────────────────────────────────────────── */
@media (max-width: 350px) {
  .container, .container--wide { padding: 0 .65rem; }

  /* Cabeçalho do header compacto */
  .header-inner { gap: .5rem; }
  .header-actions { gap: .5rem; }

  /* Marcações — slots de hora em 2 colunas */
  .time-slots-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Serviços — setas de navegação mais pequenas */
  .slider-arrow { width: 28px; height: 28px; }
}

/* ==========================================================================
   MODAL CUSTOM (cgConfirm / cgAlert)
   ========================================================================== */
#cg-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity .2s ease;
}
#cg-modal-overlay.cg-modal-visible { opacity: 1; }

.cg-modal-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 2rem 1.5rem;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  transform: translateY(12px);
  transition: transform .2s ease;
}
#cg-modal-overlay.cg-modal-visible .cg-modal-box { transform: translateY(0); }

.cg-modal-msg {
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.cg-modal-actions {
  display: flex;
  gap: .75rem;
  justify-content: flex-end;
}

.cg-modal-btn {
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .6rem 1.4rem;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.cg-modal-cancel {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.cg-modal-cancel:hover {
  color: var(--text);
  border-color: var(--text-muted);
}
.cg-modal-ok {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.cg-modal-ok:hover { background: #b8962e; border-color: #b8962e; }

/* Indicador aberto/fechado — fundo adaptado ao tema */
.status-salao {
  background: rgba(0, 0, 0, 0.25);
}
[data-theme="light"] .status-salao {
  background: rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   BADGE DE STOCK
   ========================================================================== */
.stock-badge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 100px;
  margin-top: .4rem;
}
.stock-disponivel {
  background: rgba(46, 204, 113, .12);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, .3);
}
.stock-encomenda {
  background: rgba(212, 175, 55, .1);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, .3);
}
