:root {
  --black: #000000;
  --black-soft: #0d0f0e;

  --gold: #c9a04a;
  --gold-bright: #e6c47a;
  --gold-rgb: 201, 160, 74;

  --on-dark: #ffffff;
  --on-dark-soft: rgba(255, 255, 255, 0.72);
  --on-dark-border: rgba(255, 255, 255, 0.22);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius-md: 10px;

  --container-w: 720px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--on-dark);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  animation: pageFadeIn .5s ease;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2 { line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0 0 1em; color: var(--on-dark-soft); }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #1a1206;
  font-weight: 700;
  padding: 10px 16px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .7em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary {
  position: relative;
  background: var(--gold);
  color: #1a1206;
  box-shadow: 0 6px 20px rgba(201, 160, 74, 0.25);
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 8px 26px rgba(201, 160, 74, 0.4);
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn-primary:hover::after { left: 130%; }
.btn-outline { border-color: var(--on-dark-border); color: var(--on-dark); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-small { padding: 9px 18px; font-size: .85rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  animation: fadeDown .5s ease both;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(var(--gold-rgb), 0.25);
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 18px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--on-dark);
}
.logo-mark {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  filter: drop-shadow(0 0 6px rgba(201, 160, 74, 0.55));
  animation: logoGlow 3.2s ease-in-out infinite;
  transition: transform .35s ease;
}
.logo:hover .logo-mark { transform: scale(1.1) rotate(10deg); }
.logo-dot { color: var(--gold); }

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(201, 160, 74, 0.5)); }
  50% { filter: drop-shadow(0 0 11px rgba(201, 160, 74, 0.9)); }
}

.hero-simple {
  position: relative;
  background: var(--black);
  padding-block: 80px 96px;
  text-align: center;
  overflow: hidden;
}
.hero-simple::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 160, 74, 0.15), transparent 68%);
  pointer-events: none;
  animation: glowBreathe 7s ease-in-out infinite;
}
.hero-simple::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 640px;
  height: 640px;
  transform: translate(-50%, -55%);
  border: 1px solid rgba(201, 160, 74, 0.09);
  border-radius: 50%;
  pointer-events: none;
  animation: ringBreathe 9s ease-in-out infinite;
}
.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 15%), rgba(201, 160, 74, 0.16), transparent 70%);
}
.hero-simple .container { position: relative; }
.hero-simple .eyebrow { animation: fadeUp .6s ease both; }
.hero-simple h1 {
  font-size: clamp(2.1rem, 4.5vw, 2.9rem);
  color: var(--on-dark);
  animation: fadeUp .6s .1s ease both;
}
.hero-lead {
  color: var(--on-dark-soft);
  font-size: 1.05rem;
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 1.6em;
  animation: fadeUp .6s .2s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.hero-actions .btn { animation: fadeUp .6s ease both; }
.hero-actions .btn:nth-child(1) { animation-delay: .3s; }
.hero-actions .btn:nth-child(2) { animation-delay: .4s; }
.hero-actions .btn:nth-child(3) { animation-delay: .5s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes glowBreathe {
  0%, 100% { opacity: .75; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
@keyframes ringBreathe {
  0%, 100% { opacity: .6; }
  50% { opacity: 1; }
}

.contato {
  background: var(--black);
  padding-block: 88px;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(201, 160, 74, 0.35), transparent) 1;
}
.contato-inner { text-align: center; perspective: 1000px; }
.contato h2 {
  font-size: 1.6rem;
  color: var(--on-dark);
  margin-bottom: .4em;
}
.contato h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin: 14px auto 0;
  background: var(--gold);
  transition: width .7s ease .15s;
}
.contato-inner.is-visible h2::after { width: 52px; }
.contato-horario {
  color: var(--on-dark-soft);
  margin-top: 0;
}
.contact-list {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  margin: 32px 0;
  padding: 28px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transform: rotateX(0deg) rotateY(0deg);
  transition: transform .2s ease-out, box-shadow .3s ease-out, border-color .3s ease-out;
  will-change: transform;
}
.contact-list:hover {
  border-color: rgba(201, 160, 74, 0.3);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 160, 74, 0.08);
}
.contact-list::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(220px circle at var(--cx, 50%) var(--cy, 50%), rgba(201, 160, 74, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.contact-list:hover::after { opacity: 1; }
.contact-list li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 8px;
  transition: transform .25s ease;
}
.contact-list li:hover { transform: translateX(4px); }
.contact-list li:hover strong { color: var(--gold); }
.contact-list strong {
  color: var(--on-dark-soft);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color .25s ease;
}
.contact-list a { color: var(--on-dark); font-weight: 600; font-size: 1.05rem; transition: color .2s ease; }
.contact-list a:hover { color: var(--gold); }
.contact-list span { color: var(--on-dark); font-weight: 600; font-size: 1.02rem; }

.site-footer-simple {
  background: var(--black-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-simple-inner {
  text-align: center;
  padding-block: 22px;
  font-size: .85rem;
  color: var(--on-dark-soft);
}
.footer-simple-inner p { margin: 0; }
.footer-legal {
  margin-top: 8px;
  font-size: .78rem;
  opacity: .7;
}
.footer-links { margin-top: 8px; font-size: .82rem; }
.footer-links a { text-decoration: underline; text-underline-offset: 3px; }
.footer-links a:hover { color: var(--gold); }

.legal-hero {
  background: var(--black);
  padding-block: 64px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--on-dark); }
.legal-hero h1::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin-top: 16px;
  background: var(--gold);
  transition: width .7s ease .2s;
}
.legal-hero .container.is-visible h1::after { width: 52px; }
.legal-hero .legal-meta { color: var(--on-dark-soft); margin: 0; font-size: .95rem; }

.legal-content { padding-block: 48px 88px; }
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--on-dark);
  margin-top: 2.2em;
  margin-bottom: .6em;
  font-weight: 800;
  letter-spacing: -.01em;
}
.legal-content .reveal-item:first-child > h2 { margin-top: 0; }
.legal-content h3 {
  font-size: 1.02rem;
  color: var(--on-dark);
  margin: 1.6em 0 .5em;
  font-weight: 700;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.3em;
  margin: 0 0 1em;
}
.legal-content li { margin-bottom: .4em; color: var(--on-dark-soft); }
.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--gold-bright); }

.legal-table-wrap {
  overflow-x: auto;
  margin: 0 0 1.6em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}
.legal-table-wrap table { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 480px; }
.legal-table-wrap th, .legal-table-wrap td { padding: 12px 16px; text-align: left; }
.legal-table-wrap th {
  color: var(--on-dark-soft);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-table-wrap td { color: var(--on-dark-soft); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.legal-table-wrap tr:last-child td { border-bottom: none; }
.legal-table-wrap td:first-child { color: var(--on-dark); font-weight: 600; }

.legal-closing {
  margin-top: 2.4em;
  font-size: .85rem;
  opacity: .6;
}

.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 24px;
}

.reveal > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible > * { opacity: 1; transform: none; }
.reveal.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal.is-visible > *:nth-child(2) { transition-delay: .1s; }
.reveal.is-visible > *:nth-child(3) { transition-delay: .2s; }
.reveal.is-visible > *:nth-child(4) { transition-delay: .3s; }
.reveal.is-visible > *:nth-child(5) { transition-delay: .4s; }

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-item.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; }
  .reveal > * { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
