:root {
  --bg: #0d0d0d;
  --bg-alt: #1a1a1a;
  --bg-alt-2: #161616;
  --orange: #F5821F;
  --orange-dark: #D96A0F;
  --text: #F5F3EF;
  --text-dim: #b8b3aa;
  --line: #2c2c2c;
  --font-display: 'Anton', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.08; }
h2 { font-size: clamp(30px, 4.2vw, 46px); }
h3 { font-size: 20px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block; }

.section { padding: 90px 0; position: relative; }
.section--alt { background: var(--bg-alt-2); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head p { color: var(--text-dim); margin-top: 14px; font-size: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn__icon { flex: none; }
.btn--solid { background: var(--orange); color: #16130f; }
.btn--solid:hover { background: #ff9636; transform: translateY(-2px); }
.btn--outline { border-color: var(--orange); color: var(--orange); }
.btn--outline:hover { background: var(--orange); color: #16130f; }
.btn--small { padding: 10px 18px; font-size: 12.5px; }

/* ---------- HEADER ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1180px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 20px; letter-spacing: 0.02em; }
.logo__img { height: 42px; width: auto; }
.logo__fallback {
  height: 42px; width: 42px; border: 2px solid var(--orange); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 18px;
}
.nav { display: flex; gap: 30px; }
.nav a { font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-dim); transition: color .15s; }
.nav a:hover { color: var(--orange); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); display: block; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1208 0%, #0d0d0d 55%, #0d0d0d 100%);
  background-size: cover; background-position: center;
}
.hero__bg--photo { background-image: linear-gradient(180deg, rgba(13,13,13,0.55), rgba(13,13,13,0.92)), url('../fotos/hero.jpg'); }
.hero__overlay { position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(245,130,31,0.1), transparent 55%); }
.hero__content { position: relative; z-index: 2; max-width: 720px; }
.hero__eyebrow { color: var(--orange); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; font-size: 13.5px; margin-bottom: 18px; }
.hero__welcome { font-family: var(--font-body); font-weight: 300; letter-spacing: 0.35em; text-transform: uppercase; font-size: 15px; color: var(--text); margin-bottom: 6px; }
.hero h1 { font-size: clamp(42px, 7vw, 74px); }
.hero h1 span { color: var(--orange); }
.hero__tagline { font-size: 18px; color: var(--text-dim); margin: 20px 0 34px; max-width: 52ch; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 64px; margin-top: 56px; }
.hero__stat b { font-family: var(--font-display); font-size: 30px; color: var(--orange); display: block; }
.hero__stat span { font-size: 12.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- SOBRE / DIFERENCIAIS ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); }
.feature { background: var(--bg); padding: 40px 30px; }
.feature__icon { color: var(--orange); margin-bottom: 18px; }
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--text-dim); font-size: 14.5px; }

/* ---------- MODALIDADES (foto cheia + overlay) ---------- */
.modalidades { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.modalidade-card {
  position: relative;
  aspect-ratio: 3 / 3.6;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-alt);
}
.modalidade-card__photo { position: absolute; inset: 0; }
.modalidade-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.modalidade-card:hover .modalidade-card__photo img { transform: scale(1.08); }
.modalidade-card__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 18px 18px;
  background: linear-gradient(0deg, rgba(13,13,13,0.95) 10%, rgba(13,13,13,0.55) 60%, rgba(13,13,13,0) 100%);
}
.modalidade-card__icon { display: none; }
.modalidade-card__rule { width: 26px; height: 3px; background: var(--orange); margin: 8px 0 8px; }
.modalidade-card h3 { font-size: 19px; margin-bottom: 0; color: #fff; letter-spacing: 0.01em; }
.modalidade-card p { font-size: 13.5px; color: var(--text-dim); margin-top: 0; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .3s ease, opacity .3s ease; }
.modalidade-card:hover p { max-height: 80px; opacity: 1; }

/* ---------- SOBRE NOS ---------- */
.about { display: grid; grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: center; }
.about__photo { border: 2px solid var(--orange); border-radius: 6px; overflow: hidden; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__text { color: var(--text-dim); margin: 18px 0 26px; font-size: 15.5px; }
.about__feats { display: grid; gap: 18px; }
.about__feat { display: flex; gap: 14px; align-items: flex-start; }
.about__feat-icon { color: var(--orange); flex: none; margin-top: 2px; }
.about__feat h4 { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 14.5px; margin-bottom: 4px; color: #fff; }
.about__feat p { margin: 0; font-size: 13.5px; color: var(--text-dim); }

/* ---------- GALERIA ---------- */
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 10px;
}
.galeria__item {
  background: linear-gradient(135deg, #201607, #0d0d0d);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.galeria__item img { width: 100%; height: 100%; object-fit: cover; }
.galeria__item--wide { grid-column: span 2; }
.galeria__item--tall { grid-row: span 2; }
.galeria__placeholder { color: #4a3d2a; }
.galeria__item:hover .galeria__zoom { opacity: 1; }
.galeria__zoom {
  position: absolute; inset: 0; background: rgba(13,13,13,0.55);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); opacity: 0; transition: opacity .15s;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
}

.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 200; align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 85vh; border: 2px solid var(--orange); }
@keyframes lightboxPop { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox img.pop { animation: lightboxPop 0.22s ease; }
.lightbox__close {
  position: absolute; top: 24px; right: 32px; background: none; border: none;
  color: var(--text); font-size: 34px; cursor: pointer;
  z-index: 2;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(20,20,20,0.7); border: 1px solid var(--line);
  color: var(--text); width: 52px; height: 52px; border-radius: 50%;
  font-size: 28px; line-height: 1; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.lightbox__nav:hover { background: var(--orange); color: #16130f; border-color: var(--orange); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
@media (max-width: 720px) {
  .lightbox__nav { width: 42px; height: 42px; font-size: 22px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

/* ---------- PLANO ---------- */
.planos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 44px; }
.plano-card {
  background: linear-gradient(160deg, var(--bg-alt) 0%, #120d06 100%);
  border: 1px solid var(--orange);
  border-radius: 10px;
  padding: 34px 26px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plano-card .eyebrow { justify-content: center; }
.plano-card__title { margin: 8px 0 0; font-size: 19px; }
.plano-card__sub { display: block; font-family: var(--font-body); text-transform: none; letter-spacing: normal; font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.plano-card__price { font-family: var(--font-display); font-size: 42px; color: var(--orange); margin: 12px 0; }
.plano-card__price span { font-size: 16px; color: var(--text-dim); font-family: var(--font-body); }
.plano-card ul { text-align: left; margin: 8px 0 26px; display: grid; gap: 10px; flex-grow: 1; }
.plano-card li { display: flex; gap: 10px; font-size: 13.5px; color: var(--text-dim); }
.plano-card li::before { content: "✓"; color: var(--orange); font-weight: 700; }
.plano-card > .btn { margin-top: auto; }
.plano-nota { margin-top: 18px; font-size: 12px; color: var(--text-dim); opacity: 0.7; }

/* ---------- HORARIOS ---------- */
.horarios { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.horario-card {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 6px;
  padding: 26px 20px; text-align: center;
}
.horario-card__dia { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 12px; }
.horario-card__hora { font-family: var(--font-display); font-size: 24px; color: var(--orange); }

/* ---------- AVALIACOES ---------- */
.avaliacoes__top { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.avaliacoes__badge {
  font-family: var(--font-display); font-size: 42px; color: var(--orange);
}
.avaliacoes__meta { font-size: 14px; color: var(--text-dim); }
.avaliacoes__meta a { color: var(--orange); font-weight: 600; }
.avaliacoes__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; align-items: start; }
.avaliacao-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 6px; padding: 26px; }
.avaliacao-card__estrelas { color: var(--orange); margin-bottom: 12px; font-size: 14px; letter-spacing: 2px; }
.avaliacao-card p { font-size: 14.5px; color: var(--text-dim); font-style: italic; }
.avaliacao-card cite { display: block; margin-top: 14px; font-style: normal; font-size: 13px; font-weight: 700; color: var(--text); }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: 48px; align-items: center; }
.faq__photo { border-radius: 6px; overflow: hidden; border: 1px solid var(--line); }
.faq__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.faq__list details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq__list summary {
  cursor: pointer; font-family: var(--font-body); font-weight: 700; font-size: 16px; letter-spacing: 0.01em;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--text);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: "+"; font-family: var(--font-body); font-size: 20px; color: var(--orange); flex: none; }
.faq__list details[open] summary::after { content: "–"; }
.faq__list p { margin-top: 12px; color: var(--text-dim); font-size: 14.5px; }
.faq__list summary:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }

/* ---------- LOCALIZACAO ---------- */
.localizacao__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.localizacao__info p { color: var(--text-dim); margin-bottom: 20px; }
.localizacao__info a.tel { display: block; color: var(--orange); font-weight: 700; margin-bottom: 6px; }
.mapa { border-radius: 6px; overflow: hidden; border: 1px solid var(--line); filter: grayscale(0.4) contrast(1.1); }
.mapa iframe { display: block; width: 100%; }

/* ---------- CTA FINAL ---------- */
.cta-final {
  background: var(--orange);
  color: #16130f;
  text-align: center;
  padding: 70px 24px;
}
.cta-final h2 { color: #16130f; }
.cta-final p { margin: 16px 0 30px; opacity: 0.85; }
.cta-final .btn--solid { background: #16130f; color: var(--orange); }
.cta-final .btn--solid:hover { background: #262019; }

/* ---------- FOOTER ---------- */
.footer { padding: 50px 0 26px; border-top: 1px solid var(--line); }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; }
.footer__brand p { color: var(--text-dim); font-size: 13.5px; margin-top: 10px; max-width: 30ch; }
.footer__col h4 { font-size: 13px; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 14px; }
.footer__col a, .footer__col p { font-size: 13.5px; color: var(--text-dim); display: block; margin-bottom: 8px; }
.footer__col a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 14px; margin-top: 4px; }
.footer__social a { display: inline-flex; margin-bottom: 0; }
.footer__bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12px; color: #6b6b6b; text-align: center; }

.model-switch {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  background: var(--orange); color: #14130f; border-radius: 30px; padding: 10px 20px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px; box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap; max-width: 220px;
}
.model-switch a { color: #14130f; text-decoration: underline; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .modalidades { grid-template-columns: repeat(2, 1fr); }
  .galeria__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .galeria__item--wide { grid-column: span 2; }
  .horarios { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .avaliacoes__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .localizacao__grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { position: fixed; top: 70px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .2s; }
  .nav.is-open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .header__inner .header__cta { display: none; }
  .features { grid-template-columns: 1fr; }
  .modalidades { grid-template-columns: 1fr; }
  .galeria__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .galeria__item--wide { grid-column: span 1; }
  .modalidade-card { aspect-ratio: 3 / 2.2; }
  .modalidade-card p { max-height: none; opacity: 1; overflow: visible; }
  .hero__stats { gap: 34px; }
  .btn { font-size: 13px; padding: 13px 20px; gap: 8px; letter-spacing: 0.01em; }
  .section { padding: 64px 0; }
}
