:root {
  --bg: #070a10;
  --bg2: #0b1220;
  --panel: #0e1730;
  --text: #eaf0ff;
  --muted: #9aa8c7;
  --border: rgba(255, 255, 255, 0.1);

  --orange: #ff6a00;
  --orange2: #ff9a3d;
  --blue: #4a90d9;

  --green: #00c896;
  --green2: #4ae8b8;
  --teal: #0fa68e;

  /* Accent text (dark mode: light tones) */
  --orange-text: #ff9a3d;
  --green-text: #4ae8b8;
  --blue-text: rgba(180, 210, 255, 0.95);
  --tag-orange-text: rgba(255, 220, 200, 0.95);
  --tag-green-text: rgba(200, 255, 230, 0.95);
  --badge-blue-text: rgba(180, 210, 255, 0.9);

  --radius: 16px;
  --container: 1100px;

  /* Semantic tokens (dark default) */
  --bg: rgba(7, 10, 16, 0.75);
  --card-bg: rgba(14, 23, 48, 0.45);
  --card-bg-hover: rgba(14, 23, 48, 0.55);
  --card-border: var(--border);
  --text-high: rgba(234, 240, 255, 0.92);
  --text-mid: rgba(234, 240, 255, 0.78);
  --text-low: rgba(234, 240, 255, 0.6);
  --tag-bg: rgba(255, 255, 255, 0.05);
  --pill-bg: rgba(255, 255, 255, 0.04);
  --mobile-link-bg: rgba(255, 255, 255, 0.04);
  --shadow-card: none;
}

/* ============================
   LIGHT THEME
   ============================ */
[data-theme="light"] {
  --bg: #f8f9fc;
  --bg2: #eef1f8;
  --panel: #ffffff;
  --text: #1a1f36;
  --muted: #6b7a99;
  --border: rgba(0, 0, 0, 0.1);
  --nav-bg: rgba(248, 249, 252, 0.85);
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-bg-hover: rgba(255, 255, 255, 0.95);
  --card-border: rgba(0, 0, 0, 0.08);
  --text-high: rgba(26, 31, 54, 0.92);
  --text-mid: rgba(26, 31, 54, 0.72);
  --text-low: rgba(26, 31, 54, 0.5);
  --tag-bg: rgba(0, 0, 0, 0.04);
  --pill-bg: rgba(0, 0, 0, 0.04);
  --mobile-link-bg: rgba(0, 0, 0, 0.03);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);

  /* Accent text (light mode: dark tones for contrast) */
  --orange-text: #b84500;
  --green-text: #067a5e;
  --blue-text: #2b6cb0;
  --tag-orange-text: #8b3500;
  --tag-green-text: #065e48;
  --badge-blue-text: #2b6cb0;
}

/* AUTO: follow OS preference */
@media (prefers-color-scheme: light) {
  [data-theme="auto"] {
    --bg: #f8f9fc;
    --bg2: #eef1f8;
    --panel: #ffffff;
    --text: #1a1f36;
    --muted: #6b7a99;
    --border: rgba(0, 0, 0, 0.1);
    --nav-bg: rgba(248, 249, 252, 0.85);
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-bg-hover: rgba(255, 255, 255, 0.95);
    --card-border: rgba(0, 0, 0, 0.08);
    --text-high: rgba(26, 31, 54, 0.92);
    --text-mid: rgba(26, 31, 54, 0.72);
    --text-low: rgba(26, 31, 54, 0.5);
    --tag-bg: rgba(0, 0, 0, 0.04);
    --pill-bg: rgba(0, 0, 0, 0.04);
    --mobile-link-bg: rgba(0, 0, 0, 0.03);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);

    --orange-text: #b84500;
    --green-text: #067a5e;
    --blue-text: #2b6cb0;
    --tag-orange-text: #8b3500;
    --tag-green-text: #065e48;
    --badge-blue-text: #2b6cb0;
  }
}

* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(
      900px 500px at 20% 10%,
      rgba(255, 106, 0, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 80% 20%,
      rgba(109, 167, 255, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg), var(--bg2));
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 28px;
  }
}

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand-logo {
  height: 28px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
@media (min-width: 980px) {
  .brand-logo {
    height: 32px;
  }
}
.nav-links {
  display: none;
  gap: 16px;
  color: var(--text-high);
  font-weight: 600;
  font-size: 14px;
}
.nav-links a {
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-cta {
  display: none;
}
.nav-inner .theme-toggle {
  display: none;
}
.nav-burger {
  display: inline-flex;
  flex-direction: column;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--pill-bg);
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.nav-burger span {
  width: 18px;
  height: 2px;
  background: var(--text-high);
  border-radius: 999px;
  display: block;
}

/* Mobile menu: fechado por padrão */
.nav-mobile {
  display: none;
  gap: 10px;
  padding: 10px 0 18px;
}

/* Só mostra quando estiver aberto (sem hidden) */
.nav-mobile:not([hidden]) {
  display: grid;
}

.nav-mobile a {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--mobile-link-bg);
  font-weight: 600;
}
@media (min-width: 980px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: flex;
  }
  .nav-inner .theme-toggle {
    display: inline-flex;
  }
  .nav-burger {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #0b0f18;
  box-shadow: 0 4px 16px rgba(255, 106, 0, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.3);
}
.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-high);
}
.btn-outline:hover {
  background: var(--pill-bg);
  border-color: var(--text-low);
}

/* HERO */
.hero {
  padding: 56px 0 32px;
}
.hero-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}
.hero-grid-no-panel {
  max-width: 720px;
}
@media (min-width: 980px) {
  .hero-grid-no-panel {
    grid-template-columns: 1fr;
  }
}

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--pill-bg);
  color: var(--text-high);
  font-weight: 600;
  font-size: 13px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

h1 {
  margin: 18px 0 12px;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 900;
}
@media (min-width: 980px) {
  h1 {
    font-size: 48px;
  }
}
.lead {
  margin: 0;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-value {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.hero-panel .panel {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.panel-title {
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 15px;
}
.panel-list {
  display: grid;
  gap: 12px;
  color: var(--text-mid);
  font-weight: 600;
  font-size: 14px;
}
.tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.18);
  color: var(--tag-orange-text);
  font-weight: 700;
  font-size: 12px;
  margin-right: 8px;
}
.panel-badge {
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(74, 144, 217, 0.08);
  border: 1px solid rgba(74, 144, 217, 0.15);
  color: var(--badge-blue-text);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

/* SECTIONS */
.section {
  padding: 64px 0;
}
.section-muted {
  background: linear-gradient(180deg, var(--pill-bg), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.15);
  color: var(--orange-text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.section-head h2 {
  margin: 0 0 8px;
  font-size: 30px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.section-head p {
  margin: 0 0 4px;
  color: var(--muted);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

/* ABOUT GRID */
.about-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-card {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition:
    border-color 0.2s,
    transform 0.2s,
    background 0.3s,
    box-shadow 0.3s;
  box-shadow: var(--shadow-card);
}
.about-card:hover {
  border-color: rgba(255, 106, 0, 0.2);
  transform: translateY(-2px);
}
.about-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.about-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}
.about-card p {
  margin: 0;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.6;
}

/* TECH GRID */
.tech-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-card {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition:
    border-color 0.2s,
    transform 0.2s,
    background 0.3s,
    box-shadow 0.3s;
  box-shadow: var(--shadow-card);
}
.tech-card:hover {
  border-color: rgba(74, 144, 217, 0.25);
  transform: translateY(-2px);
}
.tech-featured {
  grid-column: 1 / -1;
  background: var(--card-bg-hover);
  border-color: rgba(74, 144, 217, 0.15);
}
.tech-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(74, 144, 217, 0.12);
  border: 1px solid rgba(74, 144, 217, 0.2);
  color: var(--blue-text);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.tech-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
}
.tech-card p {
  margin: 0;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.6;
}
.tech-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--text-mid);
  font-size: 14px;
}
.tech-list li {
  margin: 6px 0;
  line-height: 1.5;
}

/* TABS + CARDS */
.tabs {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.tabs::-webkit-scrollbar {
  display: none;
}
@media (min-width: 600px) {
  .tabs {
    flex-wrap: wrap;
    overflow-x: visible;
  }
}
.tab {
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--pill-bg);
  color: var(--text-high);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.15s;
}
.tab:hover {
  background: var(--tag-bg);
}
.tab.active {
  border-color: rgba(255, 106, 0, 0.35);
  background: rgba(255, 106, 0, 0.12);
  color: var(--orange-text);
}
.tabpanel {
  display: none;
  margin-top: 16px;
}
.tabpanel.active {
  display: block;
}

.cards {
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
  transition:
    border-color 0.2s,
    transform 0.2s,
    background 0.3s,
    box-shadow 0.3s;
  box-shadow: var(--shadow-card);
}
.card:hover {
  border-color: rgba(255, 106, 0, 0.2);
  transform: translateY(-2px);
}
.card-icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}
.card p {
  margin: 0 0 12px;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.55;
}
.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.card-tags span {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--tag-bg);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-low);
}

/* SPORTS GRID */
.sports-grid {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) {
  .sports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 980px) {
  .sports-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sport-card {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.2s,
    background 0.3s,
    box-shadow 0.3s;
  box-shadow: var(--shadow-card);
}
.sport-card:hover {
  border-color: rgba(255, 106, 0, 0.2);
  transform: translateY(-2px);
}
.sport-emoji {
  font-size: 32px;
  margin-bottom: 8px;
}
.sport-name {
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 4px;
}
.sport-desc {
  font-size: 12px;
  color: var(--text-low);
  font-weight: 500;
  line-height: 1.4;
}

/* STEPS */
.steps {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 600px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
  transition:
    border-color 0.2s,
    transform 0.2s,
    background 0.3s,
    box-shadow 0.3s;
  box-shadow: var(--shadow-card);
}
.step:hover {
  border-color: rgba(255, 106, 0, 0.25);
  transform: translateY(-2px);
}
.step-number {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* NOSSO JEITO (lista simples) */
.our-way-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 640px;
  counter-reset: our-way;
}
.our-way-item {
  counter-increment: our-way;
  padding: 16px 20px;
  padding-left: 52px;
  position: relative;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-mid);
  box-shadow: var(--shadow-card);
}
.our-way-item::before {
  content: counter(our-way);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
}
.our-way-item strong {
  color: var(--text-high);
}

/* DIFERENCIAIS */
.diff-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
@media (min-width: 768px) {
  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.diff-card {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition:
    border-color 0.2s,
    transform 0.2s,
    background 0.3s,
    box-shadow 0.3s;
  box-shadow: var(--shadow-card);
}
.diff-card:hover {
  border-color: rgba(255, 106, 0, 0.2);
  transform: translateY(-2px);
}
.diff-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}
.diff-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* CONTACT */
.contact-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-card {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
}
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}
.contact-card p {
  margin: 0 0 16px;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.6;
}
.contact-info ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-mid);
  font-size: 14px;
}
.contact-info li {
  margin: 8px 0;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.smallprint {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-low);
  font-weight: 500;
}

/* FOOTER */
.footer {
  margin-top: 32px;
  padding: 20px 0 8px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-low);
  font-weight: 600;
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links span {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--pill-bg);
  border: 1px solid var(--border);
  font-size: 11px;
}

/* HEALTH LINE — BRANCH COLORS */
.section-label-sport {
  background: rgba(255, 106, 0, 0.08);
  border-color: rgba(255, 106, 0, 0.15);
  color: var(--orange-text);
}
.section-label-health {
  background: rgba(0, 200, 150, 0.08);
  border-color: rgba(0, 200, 150, 0.15);
  color: var(--green-text);
}

.tag-health {
  background: rgba(0, 200, 150, 0.1);
  border-color: rgba(0, 200, 150, 0.18);
  color: var(--tag-green-text);
}

.tab-health.active {
  border-color: rgba(0, 200, 150, 0.35);
  background: rgba(0, 200, 150, 0.12);
  color: var(--green-text);
}

.card-health:hover {
  border-color: rgba(0, 200, 150, 0.25);
}
.card-health .card-tags span {
  border-color: rgba(0, 200, 150, 0.15);
  color: var(--green-text);
}

.sport-card-health:hover {
  border-color: rgba(0, 200, 150, 0.25);
}

.btn-health {
  border-color: rgba(0, 200, 150, 0.3);
  color: var(--green-text);
}
.btn-health:hover {
  background: rgba(0, 200, 150, 0.08);
  border-color: rgba(0, 200, 150, 0.5);
}

/* HERO PANEL — BRANCH LABELS */
.panel-branch-label {
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-top: 4px;
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.15);
  color: var(--orange-text);
}
.panel-branch-health {
  background: rgba(0, 200, 150, 0.08);
  border-color: rgba(0, 200, 150, 0.15);
  color: var(--green-text);
  margin-top: 12px;
}

/* CONTACT TWO COLUMNS */
.contact-two-col {
  display: grid;
  gap: 16px;
}
@media (min-width: 480px) {
  .contact-two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-col-label {
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 8px;
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.15);
  color: var(--orange-text);
}
.contact-col-label-health {
  background: rgba(0, 200, 150, 0.08);
  border-color: rgba(0, 200, 150, 0.15);
  color: var(--green-text);
}

/* BRANCH CARDS (HOME PAGE) */
.branch-cards {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
@media (min-width: 768px) {
  .branch-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.branch-card {
  display: block;
  border: 2px solid var(--card-border);
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-decoration: none;
  color: var(--text);
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s,
    background 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.branch-card-sport:hover {
  border-color: rgba(255, 106, 0, 0.35);
}
.branch-card-health:hover {
  border-color: rgba(0, 200, 150, 0.35);
}
.branch-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.branch-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
}
.branch-card p {
  margin: 0 0 16px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.55;
}
.branch-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.branch-tags span {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.branch-card-sport .branch-tags span {
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.15);
  color: var(--tag-orange-text);
}
.branch-card-health .branch-tags span {
  background: rgba(0, 200, 150, 0.08);
  border: 1px solid rgba(0, 200, 150, 0.15);
  color: var(--tag-green-text);
}
.branch-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.branch-cta {
  font-weight: 800;
  font-size: 14px;
}
.branch-card-sport .branch-cta {
  color: var(--orange-text);
}
.branch-card-health .branch-cta {
  color: var(--green-text);
}

/* SAÚDE PAGE — SPECIFIC STYLES */
.pill-health {
  border-color: rgba(0, 200, 150, 0.2);
}
.dot-health {
  background: linear-gradient(135deg, var(--green), var(--green2));
  box-shadow: 0 0 0 4px rgba(0, 200, 150, 0.12);
}
.stat-value-health {
  background: linear-gradient(135deg, var(--green), var(--green2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.panel-health {
  border-color: rgba(0, 200, 150, 0.15);
}
.panel-badge-health {
  background: rgba(0, 200, 150, 0.08);
  border-color: rgba(0, 200, 150, 0.15);
  color: var(--green-text);
}
.btn-primary-health {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #0b0f18;
  box-shadow: 0 4px 16px rgba(0, 200, 150, 0.2);
}
.btn-primary-health:hover {
  box-shadow: 0 8px 24px rgba(0, 200, 150, 0.3);
}

/* THEME TOGGLE */
.theme-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--pill-bg);
}
.theme-toggle button {
  background: none;
  border: none;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  color: var(--text-low);
  transition:
    background 0.15s,
    color 0.15s;
  position: relative;
}
.theme-toggle button:hover {
  background: var(--tag-bg);
  color: var(--text);
}
.theme-toggle button.active {
  background: var(--orange);
  color: #0b0f18;
}
.theme-toggle-mobile {
  display: flex;
  justify-content: center;
  padding: 6px 0 4px;
}

/* FOOTER LINKS */
.footer-links a {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--pill-bg);
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-low);
  text-decoration: none;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.footer-links a:hover {
  border-color: var(--text-low);
  color: var(--text-mid);
}

/* ============================
   RESPONSIVE UTILITIES
   ============================ */

/* Small phones (<400px) */
@media (max-width: 399px) {
  h1 {
    font-size: 28px;
  }
  .hero {
    padding: 36px 0 20px;
  }
  .section {
    padding: 40px 0;
  }
  .section-head h2 {
    font-size: 24px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
  }
  .stat {
    min-width: 80px;
  }
  .panel-list {
    font-size: 12px;
  }
  .branch-meta {
    flex-direction: column;
    gap: 4px;
  }
  .tab {
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
  }
  .theme-toggle button {
    padding: 6px 8px;
    font-size: 12px;
  }
}

/* Phones (up to 767px) */
@media (max-width: 767px) {
  .hero-stats {
    gap: 16px;
  }
  .stat-value {
    font-size: 20px;
  }
  .branch-card {
    padding: 24px 18px;
  }
  .branch-icon {
    font-size: 32px;
  }
  .branch-card h3 {
    font-size: 19px;
  }
  .about-grid {
    gap: 12px;
  }
  .diff-grid {
    gap: 12px;
  }
  .nav-inner {
    gap: 8px;
  }
}

/* Tablet portrait (600-767px) */
@media (min-width: 600px) and (max-width: 767px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet landscape (768-979px) */
@media (min-width: 768px) and (max-width: 979px) {
  .hero-grid {
    gap: 20px;
  }
}
