:root {
  --charcoal: #2b2a28;
  --charcoal-light: #38362f;
  --gold: #c9a875;
  --gold-light: #e2cca0;
  --cream: #f7f3ec;
  --rose: #caa093;
  --rose-dark: #a9776a;
  --wood: #a97c50;
  --text-dark: #2b2a28;
  --text-muted: #6b665c;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  margin: 0 0 0.5em;
  color: var(--charcoal);
}

p { margin: 0 0 1em; color: var(--text-muted); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section { padding: 96px 0; }
.section h2 { font-size: 2.4rem; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--wood);
  margin-bottom: 0.75em;
  font-weight: 500;
}
.center { text-align: center; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(43, 42, 40, 0.92);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.brand-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.main-nav a:hover { opacity: 1; }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 8px 18px;
  border-radius: 2px;
  opacity: 1 !important;
  color: var(--gold) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--cream);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(43,42,40,0.6), rgba(43,42,40,0.88)),
    url('images/hero-salao-principal.webp') center/cover no-repeat;
  color: var(--cream);
}
.hero-content { position: relative; z-index: 1; text-align: center; margin: 0 auto; max-width: 720px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 1.5em;
}
.hero h1 {
  font-size: 4.5rem;
  color: var(--cream);
  margin-bottom: 0.2em;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gold-light);
  max-width: 520px;
  margin: 0 auto 2em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5em;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost {
  border: 1px solid rgba(247,243,236,0.4);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--cream); }
.hero-rating {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.85;
}
.stars { color: var(--gold); letter-spacing: 2px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { font-size: 2.6rem; }
.text-link {
  color: var(--wood);
  font-weight: 500;
  border-bottom: 1px solid var(--wood);
  padding-bottom: 2px;
}
.about-photo {
  aspect-ratio: 3/2;
  border-radius: 4px;
  align-self: center;
  background: url('images/sobre-logo-parede.webp') center/cover no-repeat;
}

/* Services */
.services { background: var(--charcoal-light); }
.services h2, .services p.section-eyebrow { color: var(--gold); }
.services h2 { color: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: rgba(247,243,236,0.04);
  border: 1px solid rgba(201,168,117,0.25);
  padding: 32px 28px;
  border-radius: 4px;
}
.service-card h3 {
  color: var(--gold-light);
  font-size: 1.4rem;
}
.service-card p { color: rgba(247,243,236,0.65); margin: 0; }

/* Gallery carousel */
.carousel {
  position: relative;
  max-width: 1140px;
  margin: 48px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 24px 50px rgba(43,42,40,0.18);
}
.carousel-track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  flex: 0 0 100%;
  aspect-ratio: 16/9;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-arrow {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(43,42,40,0.15);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.carousel-arrow:hover { background: var(--gold); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px auto 0;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(43,42,40,0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dots button.active {
  background: var(--wood);
  transform: scale(1.35);
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--wood), var(--rose-dark));
  color: var(--cream);
  padding: 80px 0;
}
.cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-inner h2 { color: var(--cream); font-size: 2.2rem; }
.cta-inner p { color: rgba(247,243,236,0.85); }
.btn-lg { padding: 16px 40px; font-size: 0.9rem; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(43,42,40,0.35);
  z-index: 90;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.location-address { font-size: 1.05rem; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}
.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(43,42,40,0.1);
  font-size: 0.9rem;
}
.hours-table td:last-child { text-align: right; color: var(--wood); font-weight: 500; }
.location-map {
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(43,42,40,0.15);
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(247,243,236,0.7);
  padding: 56px 0 32px;
}
.footer-inner { text-align: center; }
.footer-brand .brand-name { display: block; font-size: 1.8rem; color: var(--cream); }
.footer-brand .brand-tagline { color: var(--gold); }
.footer-contact {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 24px 0;
  flex-wrap: wrap;
}
.footer-contact a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.footer-contact a:hover { border-color: var(--gold); }
.footer-address { font-size: 0.85rem; }
.footer-copy { font-size: 0.75rem; margin-top: 24px; opacity: 0.6; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 16px 24px 24px;
    display: none;
    gap: 20px;
  }
  .main-nav.open { display: flex; }
  .hero h1 { font-size: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .carousel { gap: 8px; padding: 0 12px; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
  .carousel-slide { aspect-ratio: 4/3; }
  .cta-inner h2 { font-size: 1.8rem; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}
