/* ============================================================
   Jô Garçons — Design System Multi-página
   Forjado pra durar. Cada detalhe importa.
   ============================================================ */

:root {
  /* Paleta */
  --preto: #0F0F0F;
  --preto-soft: #1A1A1A;
  --preto-card: #1E1E1E;
  --preto-border: #2C2C2C;
  --preto-elevated: #242424;
  
  --dourado: #D4AF37;
  --dourado-claro: #E8C547;
  --dourado-escuro: #B8941F;
  --dourado-glow: rgba(212, 175, 55, 0.15);
  
  --brasa: #C0392B;
  --brasa-claro: #E74C3C;
  --brasa-glow: rgba(192, 57, 43, 0.12);
  
  --creme: #F5E6D3;
  --branco: #FFFFFF;
  --texto: #E8E8E8;
  --texto-muted: #888888;
  --texto-soft: #AAAAAA;
  
  /* Tipografia */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --pad: clamp(1rem, 5vw, 2rem);
  --max: 1200px;
  --max-wide: 1400px;
  --max-narrow: 800px;
  
  /* Transições */
  --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--preto);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
a { color: var(--dourado); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--dourado-claro); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

::selection { background: var(--dourado); color: var(--preto); }
:focus-visible { outline: 2px solid var(--dourado); outline-offset: 2px; border-radius: 4px; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--preto-soft); }
::-webkit-scrollbar-thumb { background: var(--preto-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--dourado-escuro); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.container-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 var(--pad); }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--pad); }

.section { padding: 5rem 0; }
.section-tight { padding: 3rem 0; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dourado);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--texto-soft);
  max-width: 600px;
  line-height: 1.7;
}

.gold { color: var(--dourado); }
.brasa { color: var(--brasa-claro); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--t);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: var(--dourado);
  color: var(--preto);
}
.btn-gold:hover {
  background: var(--dourado-claro);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--dourado-glow);
  color: var(--preto);
}

.btn-ghost {
  background: transparent;
  color: var(--branco);
  border: 1px solid var(--preto-border);
}
.btn-ghost:hover {
  border-color: var(--dourado);
  color: var(--dourado);
}

.btn-wa {
  background: #25D366;
  color: var(--preto);
}
.btn-wa:hover {
  background: #2DE266;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  color: var(--preto);
}

/* ============================================================
   HEADER (compartilhado)
   ============================================================ */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--t);
}

.header.scrolled {
  background: rgba(15, 15, 15, 0.98);
  border-bottom-color: var(--preto-border);
}

.header-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--branco);
}

.brand-logo {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--dourado);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
}

.nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav a {
  color: var(--texto-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--t);
  position: relative;
}

.nav a:hover, .nav a.active {
  color: var(--dourado);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--dourado);
  border-radius: 1px;
}

.header-cta {
  background: var(--dourado);
  color: var(--preto);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--t);
}

.header-cta:hover {
  background: var(--dourado-claro);
  transform: translateY(-1px);
  color: var(--preto);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--branco);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* ============================================================
   FOOTER (compartilhado)
   ============================================================ */

.footer {
  background: var(--preto-soft);
  border-top: 1px solid var(--preto-border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand .brand { margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.875rem; color: var(--texto-muted); line-height: 1.6; max-width: 280px; }

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dourado);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--texto-muted);
  padding: 0.25rem 0;
  transition: color var(--t);
}

.footer-col a:hover { color: var(--dourado); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem var(--pad) 0;
  border-top: 1px solid var(--preto-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p { font-size: 0.75rem; color: var(--texto-muted); }
.footer-bottom a { font-size: 0.75rem; }

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--preto-card);
  border: 1px solid var(--preto-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-muted);
  transition: var(--t);
}

.footer-social a:hover {
  border-color: var(--dourado);
  color: var(--dourado);
}

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

/* ============================================================
   HERO (Home)
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--pad) 4rem;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, var(--brasa-glow) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, var(--dourado-glow) 0%, transparent 60%),
    var(--preto);
}

.hero-stamp {
  position: absolute;
  top: 15%;
  right: 8%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 1rem 1.5rem;
  border: 2px solid var(--brasa);
  border-radius: 50%;
  transform: rotate(-12deg);
  opacity: 0.4;
  pointer-events: none;
}

.hero-stamp span {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--brasa);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.hero-stamp span:nth-child(2) { font-size: 0.5625rem; font-weight: 400; }

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

.hero-logo-wrap { margin-bottom: 2rem; }

.hero-logo {
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 3px solid var(--dourado);
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.06), 0 0 50px var(--dourado-glow);
  margin: 0 auto;
}

.hero-headline {
  font-size: clamp(2.25rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-answer {
  font-size: 1rem;
  color: var(--texto-muted);
  line-height: 2;
  max-width: 400px;
  margin: 0 auto;
}

.hero-wa-inline {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--dourado);
  font-weight: 600;
  font-size: 1.0625rem;
  border-bottom: 1px solid var(--dourado);
  padding-bottom: 2px;
}

/* ============================================================
   CARDS DE SERVIÇO (preview na home)
   ============================================================ */

.services-preview {
  padding: 5rem 0;
  background: var(--preto-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--preto-card);
  border: 1px solid var(--preto-border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: var(--t);
}

.service-card:hover {
  border-color: var(--dourado-escuro);
  transform: translateY(-3px);
}

.service-card-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brasa);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--dourado);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--texto-muted);
  line-height: 1.6;
}

/* ============================================================
   TIPOS DE EVENTO
   ============================================================ */

.event-types {
  padding: 5rem 0;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.event-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--preto-card);
  border: 1px solid var(--preto-border);
  padding: 2rem;
  transition: var(--t);
}

.event-card:hover {
  border-color: var(--dourado-escuro);
}

.event-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.event-card p {
  font-size: 0.875rem;
  color: var(--texto-muted);
  line-height: 1.6;
}

.event-card-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--dourado-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--dourado);
  font-size: 1.25rem;
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */

.how-it-works {
  padding: 5rem 0;
  background: var(--preto-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.step {
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brasa);
  opacity: 0.4;
  line-height: 1;
}

.step h3 { font-size: 1.0625rem; margin: 0.75rem 0 0.5rem; }
.step p { font-size: 0.875rem; color: var(--texto-muted); line-height: 1.6; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */

.testimonials {
  padding: 5rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial {
  background: var(--preto-card);
  border: 1px solid var(--preto-border);
  border-radius: 12px;
  padding: 1.75rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--texto);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dourado);
}

.testimonial-author-event {
  font-size: 0.75rem;
  color: var(--texto-muted);
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  padding: 5rem 0;
  background: var(--preto-soft);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.0625rem;
  color: var(--texto-soft);
  margin-bottom: 2rem;
}

/* ============================================================
   SERVIÇOS PAGE
   ============================================================ */

.service-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--preto-border);
}

.service-detail:last-child { border-bottom: none; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.service-detail-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brasa);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.service-detail h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.service-detail p {
  font-size: 1rem;
  color: var(--texto-soft);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.service-includes {
  margin-top: 1.5rem;
}

.service-includes li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--texto);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-includes li::before {
  content: '✓';
  color: var(--dourado);
  font-weight: 700;
}

.service-detail-visual {
  background: var(--preto-card);
  border: 1px solid var(--preto-border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.service-detail-visual .photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  border: 2px solid var(--dourado);
  background: radial-gradient(circle at center, var(--dourado-glow) 0%, var(--preto-soft) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-visual .photo-placeholder img {
  width: 40%;
  border-radius: 50%;
  border: 2px solid var(--dourado);
}

/* ============================================================
   GALERIA PAGE
   ============================================================ */

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

.gallery-item {
  aspect-ratio: 1;
  border-radius: 12px;
  border: 1px solid var(--preto-border);
  background: var(--preto-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: var(--t);
  position: relative;
}

.gallery-item:hover {
  border-color: var(--dourado);
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--texto-muted);
}

.gallery-placeholder img {
  width: 40%;
  border-radius: 50%;
  border: 2px solid var(--dourado);
  opacity: 0.5;
}

.gallery-placeholder span {
  font-size: 0.75rem;
}

.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gallery-filter {
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--preto-card);
  border: 1px solid var(--preto-border);
  color: var(--texto-muted);
  cursor: pointer;
  transition: var(--t);
}

.gallery-filter:hover, .gallery-filter.active {
  background: var(--dourado);
  color: var(--preto);
  border-color: var(--dourado);
}

/* ============================================================
   SOBRE PAGE
   ============================================================ */

.about-hero {
  padding: 8rem 0 4rem;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.about-hero p {
  font-size: 1.125rem;
  color: var(--texto-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-story {
  padding: 4rem 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.about-story-text h2 { font-size: 1.75rem; margin-bottom: 1.25rem; }
.about-story-text p { font-size: 1rem; color: var(--texto-soft); line-height: 1.8; margin-bottom: 1rem; }

.about-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dourado);
  border-left: 3px solid var(--dourado);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

.about-values {
  padding: 4rem 0;
  background: var(--preto-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  padding: 1.5rem;
  background: var(--preto-card);
  border: 1px solid var(--preto-border);
  border-radius: 12px;
}

.value-card h3 { font-size: 1.0625rem; color: var(--dourado); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--texto-muted); line-height: 1.6; }

.about-partners {
  padding: 4rem 0;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: center;
}

.partner {
  padding: 1rem 1.5rem;
  background: var(--preto-card);
  border: 1px solid var(--preto-border);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--texto-soft);
  font-weight: 500;
}

/* ============================================================
   ORÇAMENTO PAGE (multi-step form)
   ============================================================ */

.orcamento {
  padding: 8rem 0 4rem;
}

.orcamento-progress {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.progress-step:last-child { flex: 0; }

.progress-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--preto-card);
  border: 2px solid var(--preto-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--texto-muted);
  transition: var(--t);
  flex-shrink: 0;
}

.progress-step.active .progress-dot {
  background: var(--dourado);
  border-color: var(--dourado);
  color: var(--preto);
}

.progress-step.done .progress-dot {
  background: var(--dourado-escuro);
  border-color: var(--dourado-escuro);
  color: var(--preto);
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--preto-border);
  margin: 0 0.5rem;
}

.progress-step.done .progress-line {
  background: var(--dourado-escuro);
}

.orcamento-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--preto-card);
  border: 1px solid var(--preto-border);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-step h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-step p {
  font-size: 0.9375rem;
  color: var(--texto-muted);
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--texto-soft);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--preto);
  border: 1px solid var(--preto-border);
  border-radius: 8px;
  color: var(--branco);
  font-size: 0.9375rem;
  transition: var(--t);
}

.form-input:focus {
  outline: none;
  border-color: var(--dourado);
  box-shadow: 0 0 0 3px var(--dourado-glow);
}

.form-input::placeholder { color: var(--texto-muted); }

select.form-input {
  cursor: pointer;
  appearance: none;
  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='%23D4AF37' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-option {
  padding: 1rem;
  background: var(--preto);
  border: 1px solid var(--preto-border);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--t);
  text-align: center;
}

.form-option:hover { border-color: var(--dourado-escuro); }

.form-option.selected {
  background: var(--dourado-glow);
  border-color: var(--dourado);
}

.form-option-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--texto);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.form-summary {
  background: var(--preto);
  border: 1px solid var(--preto-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.form-summary h3 {
  font-size: 0.875rem;
  color: var(--dourado);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.form-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--preto-border);
}

.form-summary-row:last-child { border-bottom: none; }
.form-summary-row span:first-child { color: var(--texto-muted); }
.form-summary-row span:last-child { color: var(--branco); font-weight: 500; }

/* ============================================================
   CONTATO PAGE
   ============================================================ */

.contato-page {
  padding: 8rem 0 4rem;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.contato-info-card {
  background: var(--preto-card);
  border: 1px solid var(--preto-border);
  border-radius: 12px;
  padding: 2rem;
}

.contato-info-card h3 {
  font-size: 1.125rem;
  color: var(--dourado);
  margin-bottom: 1rem;
}

.contato-info-list { list-style: none; }

.contato-info-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--preto-border);
  font-size: 0.9375rem;
}

.contato-info-list li:last-child { border-bottom: none; }
.contato-info-list .label { color: var(--texto-muted); }
.contato-info-list .value { color: var(--branco); font-weight: 500; }

/* ============================================================
   PAGE HEADER (interno)
   ============================================================ */

.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.0625rem;
  color: var(--texto-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 260px;
  height: 100vh;
  background: var(--preto-soft);
  border-left: 1px solid var(--preto-border);
  z-index: 200;
  padding: 80px 1.5rem 1.5rem;
  transition: right var(--t);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
  color: var(--branco);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--preto-border);
}

.mobile-menu a:hover { color: var(--dourado); }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: var(--t);
}

.menu-overlay.open { opacity: 1; visibility: visible; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav, .header-cta { display: none; }
  .menu-btn { display: block; }
  
  .hero-stamp { display: none; }
  .hero-logo { width: 100px; height: 100px; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .form-row { grid-template-columns: 1fr; }
  .form-options { grid-template-columns: 1fr; }
  
  .section, .services-preview, .event-types, .how-it-works, .testimonials, .cta-section { padding: 3rem 0; }
  .orcamento-form { padding: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
