html {
  scroll-behavior: smooth;
}

:root {
  --bg: #0e0f11;
  --paper: #14161a;
  --ink: #e8e8ec;
  --muted: #9aa0a6;
  --accent: #c2410c;
  --line: rgba(255, 255, 255, .08);
  --radius: 14px;
  --shadow: 0 10px 24px rgba(0, 0, 0, .35);
  --grid-max: 1120px;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  width: min(var(--grid-max), 92%);
  margin: 0 auto
}

.btn {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: .6rem;
  padding: .85rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--line);
  background: #1a1d22;
  color: var(--ink);
  transition: .2s ease
}

.btn:hover {
  transform: translateY(-1px)
}

.btn.primary {
  background: #1f2329;
  border-color: #2a2f36
}

.btn.accent {
  background: var(--accent);
  color: #140e0b;
  border-color: #6b2a08
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .32rem .6rem;
  border-radius: 999px;
  font-size: .78rem;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #121418
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 12, .85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: Oswald, sans-serif
}

.mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #1a1d22;
  border: 1px solid var(--line)
}

/* Desktop menu (sempre visível em >980px) */
nav ul.desktop {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0
}

nav a {
  color: var(--muted);
  font-weight: 500
}

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

/* Mobile menu (só aparece <=980px) */
.menu-toggle {
  display: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border: none;
  background: none
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--ink);
  margin: 6px 0;
  transition: .3s ease
}

nav ul.mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 64px;
  right: 0;
  width: 70vw;
  max-width: 320px;
  height: calc(100vh - 64px);
  background: rgba(10, 11, 12, .95);
  padding: 2rem 1.4rem;
  transform: translateX(100%);
  transition: transform .3s ease;
  border-left: 1px solid var(--line)
}

nav ul.mobile.open {
  display: flex;
  transform: translateX(0)
}

nav ul.mobile li {
  margin-bottom: 1rem
}

/* HERO */
.hero {
  position: relative;
  padding: 86px 0 56px;
  overflow: hidden
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent 40%), url('https://images.unsplash.com/photo-1571771685300-b7601744aaa0?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  opacity: .35;
  filter: grayscale(40%)
}

.hero>.container {
  position: relative
}

.grid-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.6rem;
  align-items: center
}

h1 {
  font-family: Oswald, sans-serif;
  font-size: clamp(2rem, 1.3rem + 2.8vw, 3.4rem);
  line-height: 1.05;
  margin: .2rem 0 .6rem
}

.lead {
  color: var(--muted);
  max-width: 58ch
}

.hero-card {
  border: 1px solid var(--line);
  background: #111317;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow)
}

.hero-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(20%) contrast(1.05)
}

.hero-ctas {
  margin-top: 1rem;
  display: flex;
  gap: .6rem;
  flex-wrap: wrap
}

.badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .8rem
}

section {
  padding: 56px 0;
  position: relative
}

.section-title {
  font-family: Oswald, sans-serif;
  font-size: clamp(1.4rem, 1rem + 1.4vw, 2rem);
  margin: 0 0 .4rem
}

.section-sub {
  color: var(--muted);
  margin: 0 0 1.4rem
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem
}

.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem
}

.feature h3 {
  margin: .2rem 0 .2rem;
  font-size: 1.05rem
}

.feature p {
  color: var(--muted);
  margin: 0
}

/* Schedule (tabela antiga segue disponível, mas agora usamos cards) */
.schedule {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1rem
}

.tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap
}

.obs {
  color: var(--muted);
  display: block;
  margin-top: .6rem
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden
}

th,
td {
  padding: .7rem .8rem;
  text-align: left;
  border-bottom: 1px solid var(--line)
}

th {
  font-family: Oswald, sans-serif;
  font-weight: 500;
  color: #d7d7dd;
  background: #14161a
}

tr:hover td {
  background: #121418
}

.belt {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem
}

.belt i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--accent)
}

/* Coaches */
.coaches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem
}

.coach {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden
}

.coach img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(25%)
}

.coach .info {
  padding: .8rem 1rem 1rem
}

.coach .info small {
  color: var(--muted)
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem
}

.plan {
  background: #111317;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem
}

.price {
  font-family: Oswald, sans-serif;
  font-size: 2rem
}

.plan ul {
  margin: .6rem 0 1rem;
  padding-left: 1rem;
  color: var(--muted)
}

/* Quotes */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem
}

.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  font-style: italic
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem
}

details {
  background: #111317;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .7rem 1rem
}

summary {
  cursor: pointer;
  font-weight: 600
}

details p {
  color: var(--muted)
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

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

form input,
form select,
form textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0f1115;
  color: var(--ink)
}

form textarea {
  grid-column: span 2;
  min-height: 110px
}

.map {
  width: 100%;
  height: 320px;
  border: 1px solid var(--line);
  border-radius: 12px
}


footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 50px;
  color: var(--muted)
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap
}

.float-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100
}

.float-wa a {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1f7a36;
  color: #fff;
  font-weight: 800;
  border: 2px solid #0a0f0c
}


.schedule-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 1rem;
  align-items: stretch;
}

.day-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  box-shadow: var(--shadow);
}

.day-card h3 {
  margin: 0;
  font-family: Oswald, sans-serif;
  font-size: 1.1rem;
}

.day-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.day-card li b {
  color: var(--ink);
}

.day-card .btn {
  align-self: flex-start;
  margin-top: .4rem;
}


@media (max-width: 980px) {


  nav ul.desktop {
    display: none
  }

  .menu-toggle {
    display: block
  }

  .grid-hero {
    grid-template-columns: 1fr
  }

  .hero-img {
    max-width: 380px;
    margin: 0 auto
  }

  .features {
    grid-template-columns: 1fr
  }


  .schedule-cards {
    grid-template-columns: 1fr
  }

  .schedule {
    grid-template-columns: 1fr
  }

  .coaches {
    grid-template-columns: repeat(2, 1fr)
  }

  .plans {
    grid-template-columns: 1fr
  }

  .quotes {
    grid-template-columns: 1fr
  }

  .contact {
    grid-template-columns: 1fr
  }

  .nav-cta {
    display: none !important;
  }

  header .nav {
    padding: 0.6rem 0;
  }

  .brand b {
    font-size: 1rem;
  }

  .menu-toggle {
    margin-left: auto;
  }
}

@media (min-width: 981px) {


  nav ul.mobile {
    display: none !important
  }

  .menu-toggle {
    display: none
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem
  }

  .btn {
    padding: .6rem .8rem;
    font-size: .9rem
  }

  .hero {
    padding: 64px 0 32px
  }
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.btn:hover:not(.accent) {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}


.my-float {
  margin-top: 16px;
}

.highlight {
  background: linear-gradient(90deg, #ff7a00, #ffbd59);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.spaced {
  margin-top: 36px;
}

.titles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.titles li {
  padding: .4rem 0;
  border-bottom: 1px solid var(--line);
}

.titles li:last-child {
  border-bottom: none;
}

.logo-header {
  height: 48px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  background-color: #000; /* reforça o círculo */
  padding: 2px;
  box-shadow: 0 0 8px rgba(0, 0, 0, .3);
}

.hero-logo {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 90px;
  opacity: 0.18;
  pointer-events: none;
  filter: brightness(1.2);
}

.logo-footer {
  height: 90px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  background-color: #000;
  padding: 4px;
  margin-bottom: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, .5);
}

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

.famous-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.famous-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .45);
}

.famous-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.05);
  transition: filter .25s ease;
}

.famous-card span {
  display: block;
  text-align: center;
  padding: .6rem;
  font-weight: 600;
  color: var(--ink);
  font-family: Oswald, sans-serif;
  background: #0f1115;
  border-top: 1px solid var(--line);
}

/* === SELO DE FEDERAÇÃO === */
.accreditation {
  margin-top: 1.2rem;
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .05rem;
}

@media (max-width: 768px) {
  .logo-header {
    height: 40px;
  }
  .hero-logo {
    width: 70px;
    opacity: 0.22;
  }
  .logo-footer {
    height: 70px;
  }
  .famous-card img {
    height: 220px;
  }
}


.famous-card span {
  display: block;
  text-align: center;
  padding: .6rem .4rem 0;
  font-weight: 600;
  color: var(--ink);
  font-family: Oswald, sans-serif;
}

.famous-card .famous-role {
  display: block;
  text-align: center;
  padding-bottom: .8rem;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 400;
}

/* === FIX: estilo consistente para <select> em todos os navegadores === */

form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23e8e8ec'%3E%3Cpath d='M4 5l3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 42px; /* espaço para a seta */
  font-size: 1rem;
  transition: 0.15s ease;
}

/* hover e focus para deixar igual ao input */
form select:hover,
form select:focus {
  border-color: var(--accent);
  outline: none;
}

/* evitar zoom em iOS */
@supports (-webkit-touch-callout: none) {
  form select {
    font-size: 16px;
  }
}


.plan .chip {
  background: #1f2329;
  border-color: #2a2f36;
  color: var(--ink);
  font-weight: 600;
}

.plan.private .chip {
  background: var(--accent);
  color: #140e0b;
  border-color: #8b3908;
  font-weight: 700;
  transform: scale(1.06);
}
.plan.private {
  box-shadow: 0 0 12px rgba(194, 65, 12, .35);
  border-color: var(--accent);
}

/* Destaque visual do plano privado */
.plan.private {
  border-color: var(--accent);
  box-shadow: 0 0 14px rgba(194, 65, 12, 0.4);
  transform: scale(1.02);
}

.plan.private .chip {
  background: var(--accent);
  color: #140e0b;
  border-color: #8b3908;
  font-weight: 700;
}

/* Estilização dos chips dos outros planos */
.plan .chip {
  background: #1f2329;
  border-color: #2a2f36;
  color: var(--ink);
  font-weight: 600;
}

/* Descrição do plano */
.plan-info {
  color: var(--muted);
  margin: .4rem 0 .8rem;
}
.plan.private .header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .8rem;
}

.plan.private .badge {
  margin-right: auto;
}

.plan.private .chip {
  margin-left: 1rem;
  transform: scale(1.05);
}

.plan-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.plan.private .badge {
  background: var(--accent);
  color: #140e0b;
  border-radius: 8px;
  padding: .2rem .6rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03rem;
}

.plan.private .chip {
  background: #1f2329;
  border: 1px solid #2a2f36;
  padding: .25rem .65rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  margin-left: auto; /* <-- empurra o chip para a direita */
}

.plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* empurra o botão para o final */
  height: 100%; /* garante altura igual entre os cards */
}

.plan a.btn {
  margin-top: auto; /* força o botão a ir para a parte inferior */
}
.plan .chip,
.plan .badge {
  width: fit-content;
  display: inline-flex; /* garante que fique só do tamanho do texto */
}

.plan > .plan-info {
  margin-top: 1.2rem;
}
