.elementor-52 .elementor-element.elementor-element-49ce52d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-6308e81 */* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0b0b0b;
  --bg-soft: #161616;
  --orange: #ff6a00;
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.accent { color: var(--orange); }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.25s;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #e65f00; }
.btn-outline { border: 1px solid #444; color: #fff; }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,11,11,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1f1f1f;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
}
.logo { font-family: 'Anton', sans-serif; font-size: 22px; letter-spacing: 1px; }
.logo span { color: var(--orange); }
.nav { display: flex; gap: 28px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.nav a:hover { color: #fff; }
.burger { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }

/* Hero */
.hero { padding: 80px 0; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px;
}
.tag {
  display: inline-block; background: rgba(255,106,0,0.12); color: var(--orange);
  padding: 6px 14px; border-radius: 20px; font-size: 13px; margin-bottom: 18px;
}
.hero-text h1 { font-size: 56px; margin-bottom: 18px; }
.hero-text p { color: var(--text-muted); max-width: 420px; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 16px; }
.hero-img img { width: 100%; border-radius: 16px; display: block; }

/* Programs */
.programs { padding: 80px 0; background: var(--bg-soft); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 36px; margin-bottom: 12px; }
.section-title p { color: var(--text-muted); }
.programs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.program-card {
  height: 280px; border-radius: 16px; background-size: cover; background-position: center;
  position: relative; overflow: hidden; display: flex; align-items: flex-end;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px -16px rgba(255,106,0,0.45); }
.program-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
}
.program-info { position: relative; padding: 24px; display: flex; align-items: flex-end; justify-content: space-between; width: 100%; gap: 12px; }
.program-info h3 { font-size: 20px; margin-bottom: 6px; }
.program-info p { font-size: 13px; color: #ddd; max-width: 220px; }
.arrow {
  background: var(--orange); color: #fff; min-width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.see-all { text-align: center; margin-top: 36px; }

/* Shape */
.shape { padding: 90px 0; }
.shape-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.shape-img img { width: 100%; border-radius: 16px; }
.shape-text h2 { font-size: 36px; margin-bottom: 18px; }
.shape-text p { color: var(--text-muted); margin-bottom: 26px; }

/* Schedule */
.schedule { padding: 80px 0; background: var(--bg-soft); }
.schedule-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.tab {
  background: transparent; border: 1px solid #333; color: var(--text-muted);
  padding: 10px 20px; border-radius: 20px; font-size: 13px; cursor: pointer; transition: 0.2s;
}
.tab.active, .tab:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.schedule-hint { text-align: center; color: var(--text-muted); font-size: 13px; margin-bottom: 24px; }
.schedule-table { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 14px; border: 1px solid #262626; text-align: center; font-size: 13px; color: var(--text-muted); white-space: nowrap; }
th { background: #1f1f1f; color: #fff; font-size: 12px; text-transform: uppercase; }
td.day { background: var(--orange); color: #fff; font-weight: 600; }

/* Trainers */
.trainers { padding: 90px 0; }
.trainers-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.trainers-img img { width: 100%; border-radius: 16px; }
.trainers-text h2 { font-size: 30px; margin-bottom: 18px; }
.trainers-text p { color: var(--text-muted); margin-bottom: 26px; }
.bar { margin-bottom: 18px; }
.bar span { display: block; margin-bottom: 6px; font-size: 14px; }
.bar-bg { background: #262626; border-radius: 10px; height: 8px; overflow: hidden; }
.bar-fill { background: var(--orange); height: 100%; border-radius: 10px; }

/* Plans */
.plans { padding: 90px 0; background: var(--bg-soft); }
.plans-group-title {
  text-align: center; color: var(--orange); text-transform: uppercase; font-size: 13px;
  font-weight: 600; letter-spacing: 1px; margin: 40px 0 24px;
}
.plans-group-title:first-of-type { margin-top: 0; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
  background: var(--bg); border: 1px solid #262626; border-radius: 16px;
  padding: 36px 28px 28px; text-align: center; position: relative; transition: 0.2s;
  display: flex; flex-direction: column;
}
.plan-card.featured { border-color: var(--orange); }
.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 11px; padding: 4px 14px; border-radius: 12px; white-space: nowrap;
}
.plan-card h4 { font-size: 17px; margin-bottom: 14px; }
.plan-card h4 small { display: block; color: var(--text-muted); font-size: 12px; font-family: 'Poppins', sans-serif; text-transform: none; margin-top: 4px; font-weight: 400; }
.plan-card .price { font-size: 30px; font-weight: 700; color: var(--orange); margin-bottom: 20px; font-family: 'Anton', sans-serif; }
.plan-card .price .cents { font-size: 18px; }
.plan-card .price span:last-child { font-size: 13px; color: var(--text-muted); font-family: 'Poppins', sans-serif; }
.plan-card ul { margin-bottom: 26px; text-align: left; flex: 1; }
.plan-card li { color: var(--text-muted); font-size: 13px; padding: 5px 0; }
.plan-card .btn { margin-top: auto; }

/* Footer */
.footer { background: #060606; padding: 60px 0 20px; border-top: 1px solid #1f1f1f; }
.footer-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 30px; }
.footer h5 { margin-bottom: 12px; font-size: 14px; text-transform: uppercase; color: var(--orange); }
.footer p { color: var(--text-muted); font-size: 14px; margin-bottom: 6px; }
.footer a:hover { color: var(--orange); }
.copy { text-align: center; color: #555; font-size: 13px; padding-top: 20px; border-top: 1px solid #1f1f1f; }

/* Responsive */
/* WhatsApp floating button */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 26px; box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  z-index: 200; text-decoration: none;
}

/* Schedule legend / links */
.schedule-table td a { color: inherit; text-decoration: none; }
.schedule-table td a:hover { text-decoration: underline; }
td.empty { background: transparent; }

/* Modalidade accent colors (used for icon/border/glow, not full fills) */
.mod-pilates { --accent: #2ec1e8; --accent-text: #06222b; }
.mod-zumba { --accent: #f4e83a; --accent-text: #2b2700; }
.mod-alongamento { --accent: #8a5cf6; --accent-text: #ffffff; }
.mod-funcional { --accent: #1bab66; --accent-text: #ffffff; }
.mod-step { --accent: #f5933e; --accent-text: #2b1700; }
.mod-fitdance { --accent: #e8453c; --accent-text: #ffffff; }
.mod-kids { --accent: #4fd9a8; --accent-text: #06301f; }
.mod-ballet { --accent: #f6b6cf; --accent-text: #4a0a26; }
.mod-ritbox { --accent: #b8b8b8; --accent-text: #1a1a1a; }
.mod-fortalec { --accent: #9be36a; --accent-text: #1f3400; }
.mod-sertanejo { --accent: #6b7dee; --accent-text: #ffffff; }

/* Schedule table cells keep flat fills for fast scanning of the grid */
.schedule-table td.mod-pilates, .schedule-table td.mod-zumba, .schedule-table td.mod-alongamento,
.schedule-table td.mod-funcional, .schedule-table td.mod-step, .schedule-table td.mod-fitdance,
.schedule-table td.mod-kids, .schedule-table td.mod-ballet, .schedule-table td.mod-ritbox,
.schedule-table td.mod-fortalec, .schedule-table td.mod-sertanejo {
  background: var(--accent); color: var(--accent-text); font-weight: 600;
}

/* Modalidade detail pages */
.mod-hero {
  padding: 90px 0 60px; text-align: center; position: relative; overflow: hidden;
  background: var(--bg-soft); border-bottom: 1px solid #1f1f1f;
}
.mod-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 65%);
  pointer-events: none;
}
.mod-hero .container { position: relative; }
.mod-hero .tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
  color: var(--accent); padding: 6px 16px; border-radius: 20px; font-size: 13px; margin-bottom: 18px;
}
.mod-hero h1 { font-size: 42px; margin-bottom: 12px; color: #fff; }
.mod-hero p { max-width: 480px; margin: 0 auto 26px; color: var(--text-muted); }
.mod-index-hero .tag { background: rgba(255,106,0,0.12); color: var(--orange); border-color: rgba(255,106,0,0.4); }

.mod-body { padding: 70px 0; background: var(--bg); }
.mod-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.mod-desc { color: var(--text-muted); margin-bottom: 18px; }
.mod-public { margin-bottom: 26px; color: var(--text-muted); }
.mod-benefits li { color: var(--text-muted); padding: 6px 0; }
.mod-side {
  background: var(--bg-soft); border: 1px solid #262626; border-radius: 16px; padding: 28px;
  height: fit-content;
}
.mod-side h3 { font-size: 16px; margin-bottom: 16px; }
.mod-horarios { margin-bottom: 24px; }
.mod-horarios li { color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid #262626; font-size: 14px; }
.btn.full { display: block; text-align: center; margin-bottom: 12px; }

.mod-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mod-card {
  background: linear-gradient(155deg, #181818, #101010);
  border: 1px solid #262626;
  border-radius: 16px;
  padding: 28px 24px 26px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative; min-height: 160px; overflow: hidden;
  color: var(--text);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.mod-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
}
.mod-card .mod-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.mod-card .mod-icon::after {
  content: ""; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); display: block;
}
.mod-card h3 { font-size: 17px; color: #fff; margin-bottom: 2px; }
.mod-card p { font-size: 13px; color: var(--text-muted); padding-right: 30px; }
.mod-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 60%, #262626);
  box-shadow: 0 16px 34px -16px color-mix(in srgb, var(--accent) 70%, transparent);
}
.mod-card .arrow {
  position: absolute; bottom: 20px; right: 20px; width: 32px; height: 32px;
  border-radius: 50%; background: var(--accent); color: var(--accent-text);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
  transition: transform 0.25s ease;
}
.mod-card:hover .arrow { transform: translateX(3px); }

.mod-cta { background: var(--bg-soft); padding: 70px 0; text-align: center; }
.mod-cta h2 { font-size: 30px; margin-bottom: 12px; }
.mod-cta p { color: var(--text-muted); margin-bottom: 24px; }

@media (max-width: 900px) {
  .mod-grid { grid-template-columns: 1fr; }
  .mod-list { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav, .header-inner > .btn-primary { display: none; }
  .burger { display: block; }
  .hero-inner, .shape-inner, .trainers-inner { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .programs-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 40px; }
}/* End custom CSS */