/* ============================================================
   Barhouch – Cidades SEO
   Tipografia: Oswald (títulos) + Roboto (corpo) — igual ao site principal
   Cor de destaque: #b2a377 (bronze/dourado do site original)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Abel&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&display=swap');

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

:root {
  --bg:        #ffffff;
  --bg-alt:    #f1f1f1;
  --fg:        #252525;
  --fg-muted:  #666666;
  --border:    #e0e0e0;
  --gold:      #b2a377;
  --gold-dark: #8a7d5c;
  --gold-light: #cbbf9a;
  --gold-rgb:  178, 163, 119;
  --dark-bg:   #333333;
  --dark-bg2:  #292929;
  --radius:    4px;
  --max-w:     1200px;
  --header-h:  80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { font-weight: 700; }

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding-block: 70px; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark-bg); color: #fff; }
.section--darker { background: var(--dark-bg2); color: #fff; }

.gold { color: var(--gold); }
.text-center { text-align: center; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo img {
  height: 52px;
  width: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--fg);
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.btn-header {
  background: var(--gold);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-header:hover { background: var(--gold-dark); }

/* Mobile nav toggle (CSS-only) */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  transition: 0.25s;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #fff;
  z-index: 99;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.nav-toggle:checked ~ .mobile-nav { display: flex; }
.nav-toggle:checked + .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked + .nav-toggle-label span:nth-child(2) { opacity: 0; }
.nav-toggle:checked + .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
  .site-nav { display: flex; }
  .nav-toggle-label { display: none; }
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: inherit; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.5; font-size: 0.7rem; }
.breadcrumb .current { color: var(--gold); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.80) 0%, rgba(0,0,0,.40) 50%, rgba(0,0,0,.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 3.5rem;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: #fff;
  max-width: 38rem;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 .gold { color: var(--gold); }

.hero__sub {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 34rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

/* ── Botões ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 12px rgba(var(--gold-rgb), 0.4);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

/* ── Divisor dourado ──────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 1.5rem;
}
.divider__line {
  height: 1px;
  width: 3rem;
  background: var(--gold);
}
.divider__icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ── Seção cabeçalho ──────────────────────────────────────── */
.section__eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section__lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.8;
}
.section--dark .section__lead,
.section--darker .section__lead { color: rgba(255,255,255,0.65); }

/* ── Introdução / Citável ─────────────────────────────────── */
.lp-intro { text-align: center; max-width: 54rem; margin-inline: auto; }

.lp-citavel {
  font-size: 1rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.85;
  margin-top: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat { text-align: center; }
.stat__value {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 6px;
}

/* ── Diferenciais ─────────────────────────────────────────── */
.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 560px) { .diferenciais-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .diferenciais-grid { grid-template-columns: repeat(4, 1fr); } }

.card-diferencial {
  background: #fff;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.25s, transform 0.25s;
}
.card-diferencial:hover {
  box-shadow: 0 20px 40px rgba(var(--gold-rgb), 0.18);
  transform: translateY(-3px);
}

.card-diferencial__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  color: var(--gold);
  transition: background 0.2s;
}
.card-diferencial__icon i { line-height: 1; }
.card-diferencial:hover .card-diferencial__icon { background: rgba(var(--gold-rgb), 0.25); }

.card-diferencial h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.card-diferencial p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── Como Chegar ──────────────────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(var(--gold-rgb), 0.15);
  max-width: 900px;
  margin-inline: auto;
  margin-top: 2.5rem;
}
.map-wrapper iframe { display: block; width: 100%; }

/* ── Tipos de Evento ──────────────────────────────────────── */
.eventos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 860px;
  margin-inline: auto;
  margin-top: 3rem;
}
@media (min-width: 640px) { .eventos-grid { grid-template-columns: repeat(2, 1fr); } }

.card-evento {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.card-evento:hover {
  border-color: rgba(var(--gold-rgb), 0.4);
  background: rgba(255,255,255,0.03);
}

.card-evento__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.card-evento__icon i { line-height: 1; }

.card-evento h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.card-evento p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── Depoimentos ──────────────────────────────────────────── */
.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin-inline: auto;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .depoimentos-grid { grid-template-columns: repeat(3, 1fr); } }

.card-depoimento {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(var(--gold-rgb), 0.08);
  transition: box-shadow 0.25s, transform 0.25s;
}
.card-depoimento:hover {
  box-shadow: 0 20px 40px rgba(var(--gold-rgb), 0.22);
  transform: translateY(-3px);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.stars i { margin-inline: 1px; }

.card-depoimento blockquote {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.card-depoimento .autor {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg);
  text-transform: uppercase;
}

.card-depoimento .fonte {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 3px;
}

/* ── Galeria CTA ──────────────────────────────────────────── */
.galeria-cta { text-align: center; }
.galeria-cta p {
  max-width: 42rem;
  margin-inline: auto;
  margin-block: 1rem 2rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ── CTA Contatos ─────────────────────────────────────────── */
.cta-contatos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  margin-block: 2.5rem;
}

.cta-contato-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.2s;
}
.cta-contato-item:hover { color: var(--gold-light); }
.cta-contato-item i { font-size: 1rem; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { margin-block: 0.5rem; }

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.faq-section details {
  border-bottom: 1px solid var(--border);
}

.faq-section summary {
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding-block: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--fg);
  transition: color 0.2s;
  user-select: none;
}
.faq-section summary::-webkit-details-marker { display: none; }
.faq-section summary:hover { color: var(--gold); }

.faq-section summary::before {
  content: "+";
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
  font-family: 'Roboto', sans-serif;
}
.faq-section details[open] summary::before { content: "−"; }

.faq-section details p {
  padding: 0 0 1.25rem 1.75rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-size: 0.925rem;
  font-weight: 300;
}
.faq-section details a { color: var(--gold); text-decoration: underline; }

/* ── Cross-links ──────────────────────────────────────────── */
.lp-outras-cidades {
  background: var(--bg-alt);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.75rem 2rem;
  margin-top: 3rem;
}

.lp-outras-cidades h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.lp-outras-cidades p {
  color: var(--fg-muted);
  line-height: 2;
  font-size: 0.9rem;
  font-weight: 300;
}

.lp-outras-cidades a {
  color: var(--gold);
  font-weight: 500;
  transition: color 0.2s;
}
.lp-outras-cidades a:hover { color: var(--gold-dark); text-decoration: underline; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--gold);
  color: #fff;
  padding-block: 2.5rem;
  font-size: 0.875rem;
  line-height: 2;
  text-align: center;
}

.site-footer strong { color: #fff; font-weight: 700; }

.site-footer a {
  color: #faeaa8;
  transition: opacity 0.2s;
}
.site-footer a:hover { opacity: 0.8; text-decoration: underline; }

.footer-divider {
  margin-block: 1rem;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.25);
}

/* ── WhatsApp flutuante ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: background 0.2s, transform 0.2s;
}
.whatsapp-float:hover { background: #1da851; transform: scale(1.08); }
