* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

:root {
  --primary: #5a2e1f;      /* marrom chocolate */
  --secondary: #c69c6d;    /* dourado sofisticado */
  --dark: #0b0b0b;         /* preto premium */
  --card: #161616;         /* fundo card */
  --text-light: #f5f5f5;
}

body {
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* HERO */

.hero {
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95));
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  color: var(--secondary);
  font-weight: 400;
  letter-spacing: 2px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-text p {
  margin-bottom: 30px;
  max-width: 500px;
  color: #ccc;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* BOTÃO PRINCIPAL */

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--secondary);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: 0.3s;
}

.btn:hover {
  background: #e0b27c;
  transform: translateY(-3px);
}

/* SECTIONS */

section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: var(--secondary);
}

/* SOBRE */

.sobre p {
  max-width: 800px;
  margin: auto;
  text-align: center;
  color: #ccc;
}

/* SABORES (antigo treinos) */

.treinos {
  padding: 100px 20px;
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9));
  color: white;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: var(--card);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #222;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
}

.card h3 {
  margin-bottom: 15px;
  color: var(--secondary);
}

.card p {
  color: #bbb;
}

/* TABELA */

.horarios {
  padding: 80px 20px;
  text-align: center;
  background-color: #111;
  color: white;
}

.tabela-wrapper {
  overflow-x: auto;
}

.tabela-horarios {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 16px;
}

.tabela-horarios th {
  background-color: var(--primary);
  padding: 15px;
  font-weight: 600;
  color: white;
}

.tabela-horarios td {
  padding: 20px 10px;
  background-color: var(--card);
  border-bottom: 1px solid #222;
}

.tabela-horarios tbody tr:hover td {
  background-color: #1f1f1f;
  transition: 0.3s;
}

.tabela-horarios td:first-child {
  font-weight: 600;
  background-color: #141414;
}

/* CTA */

.cta {
  background: var(--secondary);
  color: #000;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  color: #000;
  margin-bottom: 20px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: #000;
  transform: translateY(-3px);
}

/* REDES */

.redes {
  background: #111;
  padding: 80px 20px;
  text-align: center;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* FOOTER */

.footer {
  background: #0a0a0a;
  text-align: center;
  padding: 40px 20px;
  color: #777;
  font-size: 14px;
}

.footer-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  margin: 0 auto 20px auto;
  border-radius: 10px;
}

.footer-text {
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.brand a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.brand a:hover {
  color: var(--secondary);
}

/* RESPONSIVO */

@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding: 60px 20px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-image img {
    max-width: 280px;
  }

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

  .tabela-horarios {
    font-size: 14px;
  }

  .tabela-horarios th,
  .tabela-horarios td {
    padding: 10px 6px;
  }

  .cta {
    padding: 40px 20px;
  }
}

/* BOTÃO TIKTOK */

.btn-tiktok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background: #000;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: 0.3s;
  border: 1px solid #333;
}

.btn-tiktok:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  background: #111;
}
