/*
Theme Name: Box N1 Centro de Treinamento
Theme URI: https://www.instagram.com/_boxn1/
Description: Tema oficial do Box N1 - CrossFit, Musculação e Funcional em Igrejinha/RS. Desenvolvido para integração total com Elementor.
Author: Box N1
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: box-n1
Tags: fitness, crossfit, elementor, full-width, custom-colors, dark
*/

/* =====================================================
   VARIÁVEIS GLOBAIS
   ===================================================== */
:root {
  --primary: #F5C200;
  --primary-dark: #C49A00;
  --primary-glow: rgba(245, 194, 0, 0.12);
  --primary-border: rgba(245, 194, 0, 0.25);
  --bg-dark: #0A0A0A;
  --bg-card: #111111;
  --bg-section: #141414;
  --text-white: #FFFFFF;
  --text-light: #CCCCCC;
  --text-muted: #777777;
  --border-dark: rgba(255, 255, 255, 0.07);
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 40px rgba(245, 194, 0, 0.2);
  --container: 1200px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* =====================================================
   LAYOUT
   ===================================================== */
.boxn1-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

/* =====================================================
   TIPOGRAFIA
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.sec-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.05;
}
.sec-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 560px;
}
.highlight { color: var(--primary); }

/* =====================================================
   BOTÕES
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--bg-dark);
}
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--text-white);
  transform: translateY(-2px);
  color: var(--text-white);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1daa52;
  border-color: #1daa52;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  color: #fff;
}
.btn-lg { padding: 17px 40px; font-size: 1rem; }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}
.site-logo:hover img { transform: scale(1.05); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.05em;
  position: relative;
  border-radius: 6px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 55%; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.85rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-white);
  transition: var(--transition); border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white);
  padding: 10px 24px;
  display: block;
  text-align: center;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .mobile-cta { margin-top: 32px; }
.mobile-menu .mobile-divider {
  width: 60px; height: 2px;
  background: var(--primary);
  margin: 8px auto;
}

/* =====================================================
   HERO
   ===================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.75) 55%, rgba(10,10,10,0.45) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-glow);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }
.hero-h1 {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-h1 .line-gold { color: var(--primary); display: block; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--primary));
  position: relative;
  animation: scrollAnim 1.8s ease infinite;
}
@keyframes scrollAnim {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-section {
  background: var(--primary);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--bg-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(10,10,10,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =====================================================
   DIFERENCIAIS
   ===================================================== */
.diferenciais-section {
  background: var(--bg-section);
  text-align: center;
}
.diferenciais-section .sec-desc { margin: 0 auto 56px; }
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dif-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.dif-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.dif-card:hover { border-color: var(--primary-border); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.dif-card:hover::before { transform: scaleX(1); }
.dif-icon {
  width: 70px; height: 70px;
  background: var(--primary-glow);
  border: 1px solid var(--primary-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.dif-card:hover .dif-icon { background: var(--primary); border-color: var(--primary); }
.dif-card h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text-white);
}
.dif-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; }

/* =====================================================
   MODALIDADES
   ===================================================== */
.modalidades-section { background: var(--bg-dark); }
.modalidades-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 20px;
  flex-wrap: wrap;
}
.modalidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mod-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.mod-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.mod-card:hover img { transform: scale(1.08); }
.mod-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.45) 55%, rgba(10,10,10,0.1) 100%);
  transition: var(--transition);
}
.mod-card:hover .mod-overlay { background: linear-gradient(to top, rgba(10,10,10,0.99) 0%, rgba(10,10,10,0.6) 55%, rgba(10,10,10,0.15) 100%); }
.mod-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.mod-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--bg-dark);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.mod-content h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 6px;
}
.mod-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: var(--transition);
}
.mod-card:hover .mod-content p { max-height: 80px; opacity: 1; }

/* =====================================================
   SOBRE NÓS
   ===================================================== */
.sobre-section { background: var(--bg-section); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-img-wrap { position: relative; }
.sobre-img-wrap img {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.sobre-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  text-align: center;
  box-shadow: var(--shadow);
}
.sobre-badge .badge-num { font-size: 2.2rem; font-weight: 700; line-height: 1; display: block; }
.sobre-badge .badge-txt { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.sobre-text .sec-desc { margin-bottom: 28px; max-width: 100%; }
.sobre-feats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.sobre-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  transition: var(--transition);
}
.sobre-feat:hover { border-color: var(--primary-border); }
.sobre-feat-ico {
  width: 34px; height: 34px;
  background: var(--primary-glow);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.sobre-feat span { font-size: 0.88rem; color: var(--text-light); font-weight: 500; }

/* =====================================================
   DEPOIMENTOS
   ===================================================== */
.depoimentos-section { background: var(--bg-dark); text-align: center; }
.depoimentos-section .sec-desc { margin: 0 auto 52px; }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.dep-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  position: relative;
}
.dep-card:hover { border-color: var(--primary-border); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.dep-quote {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 4rem;
  color: var(--primary-border);
  font-family: Georgia, serif;
  line-height: 1;
}
.dep-stars { color: var(--primary); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.dep-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.dep-author { display: flex; align-items: center; gap: 12px; }
.dep-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-border);
  background: var(--bg-section);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.dep-info strong { display: block; font-size: 0.88rem; color: var(--text-white); }
.dep-info span { font-size: 0.78rem; color: var(--text-muted); }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-section {
  background: var(--primary);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'N1';
  position: absolute;
  font-family: var(--font-heading);
  font-size: 35vw;
  font-weight: 700;
  color: rgba(0,0,0,0.06);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -0.05em;
  line-height: 1;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  color: var(--bg-dark);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(10,10,10,0.7);
  margin-bottom: 40px;
  position: relative; z-index: 1;
}
.cta-section .btn { position: relative; z-index: 1; }

/* =====================================================
   CONTATO
   ===================================================== */
.contato-section { background: var(--bg-section); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.mapa-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
}
.mapa-wrap iframe {
  width: 100%; height: 380px;
  display: block;
  filter: grayscale(50%) invert(92%) hue-rotate(180deg);
}
.contato-infos { display: flex; flex-direction: column; gap: 24px; }
.c-item { display: flex; gap: 16px; align-items: flex-start; }
.c-icon {
  width: 46px; height: 46px;
  background: var(--primary-glow);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.c-text strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.c-text span, .c-text a { font-size: 0.9rem; color: var(--text-light); line-height: 1.55; }
.c-text a:hover { color: var(--primary); }
.social-row { display: flex; gap: 10px; margin-top: 6px; }
.soc-btn {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: var(--transition);
}
.soc-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--bg-dark); transform: translateY(-3px); }
.contato-section .btn-whatsapp-full {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  font-size: 1rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: #050505;
  padding: 64px 0 28px;
  border-top: 1px solid var(--border-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 28px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
  margin: 16px 0 22px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-muted); font-size: 0.85rem; }
.footer-col ul a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.78rem; }
.footer-bottom a { color: var(--text-muted); font-size: 0.78rem; }
.footer-bottom a:hover { color: var(--primary); }

/* =====================================================
   WHATSAPP FLUTUANTE
   ===================================================== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-float-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 2.5s ease infinite;
}
.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.55); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 44px rgba(37,211,102,0.7); }
}
.wa-float-label {
  background: var(--bg-card);
  color: var(--text-white);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-dark);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-float-label { opacity: 1; transform: translateX(0); }

/* =====================================================
   ANIMAÇÕES DE ENTRADA
   ===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* =====================================================
   ELEMENTOR OVERRIDES
   ===================================================== */
.elementor-page .site-header { position: fixed !important; }
.elementor-edit-mode .site-header { z-index: 9998; }
.e-con, .elementor-section { position: relative; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  :root { --container: 960px; }
  .sobre-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .hero-h1 { font-size: clamp(2.5rem, 9vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; width: 100%; max-width: 320px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); }
  .stat-item:nth-child(2n) { }
  .stat-item:last-child { border-bottom: none; }
  .diferenciais-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .modalidades-grid { grid-template-columns: 1fr 1fr; }
  .sobre-grid { grid-template-columns: 1fr; gap: 60px; }
  .sobre-badge { bottom: 14px; right: 14px; }
  .dep-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modalidades-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .modalidades-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-section h2 { font-size: 1.8rem; }
}
