/* ── RESET + VARS ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --accent:   #F5C400;
  --accent-dk:#c99b00;
  --dark:     #0f0f0f;
  --dark2:    #1a1a1a;
  --dark3:    #242424;
  --border:   #2e2e2e;
  --text:     #e5e5e5;
  --muted:    #888;
  --radius:   12px;
  --shadow:   0 4px 24px rgba(0,0,0,.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--accent);
}

h3 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #fff;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform .15s, opacity .15s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--accent-dk); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #000; }

.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-large { padding: 18px 36px; font-size: 1.05rem; }

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 1.05rem;
}

/* ─────────────────────────────────────
   HEADER
───────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 2px solid var(--accent);
  padding: 14px 0;
  transition: box-shadow .3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo-img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color .15s;
}
.nav-link:hover { color: var(--accent); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.70) 50%,
    rgba(0,0,0,.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,196,0,.15);
  color: var(--accent);
  border: 1px solid rgba(245,196,0,.35);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.hero-slogan {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--accent); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 28px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-l {
  font-size: 0.72rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ─────────────────────────────────────
   DIFERENCIAIS
───────────────────────────────────── */
.diferenciais {
  background: var(--dark2);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.diferencial-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .2s;
}
.diferencial-card:hover { border-color: var(--accent); }

.diferencial-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.diferencial-card h3 { margin-bottom: 10px; }
.diferencial-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ─────────────────────────────────────
   MODALIDADES
───────────────────────────────────── */
.modalidades { padding: 80px 0; }

.modalidades-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: start;
}

.modalidades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.modalidade-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.modalidade-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.modalidade-icon { font-size: 1.8rem; margin-bottom: 12px; }
.modalidade-card h3 { margin-bottom: 8px; }
.modalidade-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

.modalidades-image img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  position: sticky;
  top: 80px;
  max-height: 520px;
}

/* ─────────────────────────────────────
   PLANOS
───────────────────────────────────── */
.planos {
  background: var(--dark2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plano-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.plano-destaque {
  border-color: var(--accent);
  transform: scale(1.04);
  background: var(--dark2);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}

.plano-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plano-nome {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 12px;
}

.plano-preco {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.plano-rs {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--muted);
  vertical-align: top;
  margin-top: 12px;
  display: inline-block;
}

.plano-preco small {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
}

.plano-desc {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 14px 0 24px;
  flex-grow: 1;
}

.planos-nota {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 28px;
}

/* ─────────────────────────────────────
   SOBRE
───────────────────────────────────── */
.sobre { padding: 80px 0; }

.sobre-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}


.sobre-video {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-width: 280px;
  max-width: 320px;
}
.sobre-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 480px;
}

.sobre-content h2 { margin-bottom: 24px; }
.sobre-content p {
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 0.97rem;
}
.sobre-content .btn { margin-top: 8px; }

/* ─────────────────────────────────────
   HORÁRIOS
───────────────────────────────────── */
.horarios {
  background: var(--dark2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.horarios-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.horarios-content h2 { margin-bottom: 28px; }

.horarios-table {
  width: 100%;
  border-collapse: collapse;
}
.horarios-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
}
.horarios-table td:last-child { text-align: right; }
.horarios-table td strong { color: var(--accent); }

.horarios-nota {
  color: var(--muted);
  font-size: 0.83rem;
  margin-top: 20px;
  font-style: italic;
}

.horarios-image img {
  border-radius: var(--radius);
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

/* ─────────────────────────────────────
   FAQ
───────────────────────────────────── */
.faq { padding: 80px 0; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .15s;
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform .3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer.open { max-height: 300px; padding-bottom: 22px; }
.faq-answer p { color: var(--muted); line-height: 1.75; font-size: 0.95rem; }
.faq-answer a { color: var(--accent); text-decoration: underline; }

/* ─────────────────────────────────────
   LOCALIZAÇÃO
───────────────────────────────────── */
.localizacao {
  background: var(--dark2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.localizacao-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.mapa-wrap h2 { margin-bottom: 16px; }

.mapa-endereco {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.mapa-btns {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn-maps,
.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: background .15s, transform .15s, border-color .15s;
  white-space: nowrap;
}
.btn-maps:hover,
.btn-review:hover { transform: translateY(-2px); }

.btn-maps {
  background: var(--accent);
  color: #000;
}
.btn-maps:hover { background: var(--accent-dk); }

.btn-review {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-review:hover { background: rgba(245,196,0,.1); }

.mapa-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.cta-final {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-mascote {
  border-radius: var(--radius);
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: top;
}

.cta-box {
  background: var(--dark3);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}
.cta-rating {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.cta-rating span { color: var(--accent); font-weight: 600; }

.cta-box h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 12px;
}
.cta-box p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.93rem;
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.footer {
  background: #080808;
  border-top: 2px solid var(--accent);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-info h4,
.footer-links h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 14px;
}

.footer-info p {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4 { margin-bottom: 4px; }
.footer-links a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color .15s;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

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

.footer-assinatura strong { color: var(--accent); }
.footer-assinatura-wa {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid rgba(245,196,0,.4);
  transition: opacity .15s;
  white-space: nowrap;
}
.footer-assinatura-wa:hover { opacity: .7; }

@media (max-width: 600px) {
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ─────────────────────────────────────
   FLOATING WHATSAPP
───────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}

/* ─────────────────────────────────────
   RESPONSIVE — 960px
───────────────────────────────────── */
@media (max-width: 960px) {
  .menu-toggle { display: flex; }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: -20px;
    right: -20px;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 4px;
    box-shadow: var(--shadow);
  }
  .nav.nav-open { display: flex; }
  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav .btn { margin-top: 8px; }

  .hero { min-height: 80vh; }
  .hero-stats { gap: 20px; }

  .diferenciais-grid { grid-template-columns: 1fr; }

  .modalidades-inner { grid-template-columns: 1fr; }
  .modalidades-image { display: none; }

  .planos-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .plano-destaque { transform: none; }

  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-image { display: none; }
  .sobre-video { max-width: 100%; min-width: unset; }

  .horarios-inner { grid-template-columns: 1fr; }
  .horarios-image { display: none; }

  .localizacao-inner { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ─────────────────────────────────────
   RESPONSIVE — 600px
───────────────────────────────────── */
@media (max-width: 600px) {
  .hero { min-height: 70vh; }
  .hero-content { padding: 60px 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }

  .modalidades-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }

  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }

  .btn-large { padding: 16px 24px; font-size: 0.95rem; }
}
