/* ============================
   RESET & VARIÁVEIS BÁSICAS
============================ */
:root {
  --black: #080808;
  --dark: #141414;
  --gold: #e8b830;
  --gold-light: #f5d878;
  --gold-dark: #c8890e;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --grad: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Tipografia Especial */
h1, h2, h3, .brand { font-family: 'Cormorant Garamond', serif; }

/* ============================
   FUNDO GEOMÉTRICO
============================ */
.geo-bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1; pointer-events: none; opacity: 0.4;
}

/* ============================
   NAVIGATION
============================ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 2rem;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 184, 48, 0.2);
  z-index: 1000;
}

.nav-brand {
  font-style: italic; font-size: 1.2rem;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-book {
  padding: 0.6rem 1.5rem; border: 1px solid var(--gold-dark);
  color: var(--gold); text-decoration: none; text-transform: uppercase;
  font-size: 0.8rem; letter-spacing: 1px; transition: 0.3s;
}
.nav-book:hover { background: var(--grad); color: var(--black); border-color: transparent; }

.hamburger { display: none; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

/* ============================
   SECTIONS GENERAL
============================ */
section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.label { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.s-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; line-height: 1.1; }
.divider.c { width: 60px; height: 2px; background: var(--gold); margin: 1rem auto; }

/* ============================
   SOBRE & SERVIÇOS
============================ */
.service-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-col li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(232, 184, 48, 0.2);
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.2rem;
}

/* Adiciona um pequeno indicador dourao em vez de bolinha */
.service-col li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ============================
   GALERIA (SIMPLIFICADA)
============================ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px; background: rgba(232, 184, 48, 0.1); padding: 10px;
}
.gallery-item {
  aspect-ratio: 1; overflow: hidden; cursor: pointer;
  background: var(--dark); position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.gallery-item:hover img { transform: scale(1.1); }

/* ============================
   LIGHTBOX (MODAL)
============================ */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.95); z-index: 2000;
  justify-content: center; align-items: center;
}
.lightbox.open { display: flex; }
#lightbox-img { max-width: 90%; max-height: 90vh; object-fit: contain; }
.lb-close {
  position: absolute; top: 20px; right: 30px;
  font-size: 3rem; color: white; cursor: pointer;
}

/* ============================
   AGENDAR & FOOTER
============================ */
#agendar { text-align: center; background: radial-gradient(circle, rgba(232,184,48,0.1) 0%, transparent 70%); }
.book-h { font-size: clamp(2rem, 5vw, 3.5rem); font-style: italic; margin-bottom: 1rem; }
.book-h strong { color: var(--gold); font-style: normal; }
.book-hours { color: var(--gold); letter-spacing: 2px; margin-bottom: 2rem; }

footer {
  padding: 3rem 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--dark);
}
.footer-inner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; text-align: center; max-width: 1200px; margin: 0 auto;
}
.foot-brand { font-style: italic; font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; }
.foot-links a { display: block; color: var(--text-muted); text-decoration: none; margin: 0.5rem 0; transition: 0.3s; }
.foot-links a:hover { color: var(--gold); }
.foot-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-top: 2rem; }

/* ============================
   MOBILE RESPONSIVE
============================ */
@media (max-width: 768px) {
  nav { padding: 1rem; }
  .hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--black);
    padding: 2rem; border-bottom: 1px solid var(--gold-dark);
  }
  .nav-links.open { display: flex; }
  #sobre { grid-template-columns: 1fr; }
  .footer-inner { text-align: center; }
}