/* ============================================================
   HED SANTOS BEACH TENNIS — style.css
   ============================================================ */

:root {
  --orange:  #F47920;
  --orange-dark: #d4621a;
  --teal:    #1E5F74;
  --teal-light: #2a7a93;
  --dark:    #0d0d0d;
  --dark-2:  #141414;
  --dark-3:  #1a1a1a;
  --sand:    #f5e6c8;
  --sand-2:  #ede0c4;
  --white:   #ffffff;
  --gray:    #888;
  --text:    #1a1a1a;
  --gold:    #FFD700;
  --silver:  #C0C0C0;
  --bronze:  #CD7F32;
  --green-neon: #39FF14;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --radius:  12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section { 
  padding: clamp(60px, 15vw, 100px) 0;
}
.dark-section { background: var(--dark-2); }

/* ── REVEAL ANIMATIONS ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ── SECTION HEADERS ─────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-tag.light { color: var(--orange); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 2px;
  line-height: 1.05;
  color: var(--text);
}
.section-title.light { color: var(--white); }
.section-title em {
  font-style: normal;
  color: var(--orange);
}
.section-desc {
  margin-top: 16px;
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-desc.light { color: rgba(255,255,255,.6); }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.1);
  transition: left 0.5s ease;
  z-index: 0;
}
.btn:hover::after { left: 100%; }
.btn span { position: relative; z-index: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244,121,32,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(244,121,32,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(244,121,32,.08);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1ec759);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.4);
}
.btn-whatsapp svg { width: 20px; height: 20px; }
.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}
.btn-instagram:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn-instagram svg { width: 20px; height: 20px; }
.btn.big { padding: 18px 44px; font-size: 1.1rem; }
.btn.full { width: 100%; justify-content: center; }

/* ── NAVBAR ──────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244,121,32,.2);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 180px;
}
.nav-logo img { height: 160px; width: auto; filter: drop-shadow(0 0 8px rgba(244,121,32,.5)); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-links .nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 6px;
}
.nav-links .nav-cta:hover { background: var(--orange-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.1) 40%,
    rgba(0,0,0,.5) 75%,
    rgba(13,13,13,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 120px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,121,32,.7); }
  50% { box-shadow: 0 0 0 8px rgba(244,121,32,0); }
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 16vw, 12rem);
  letter-spacing: -2px;
  line-height: 0.9;
  margin-bottom: 16px;
}
.title-line { display: block; color: var(--white); }
.title-line.accent { color: var(--orange); }
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}
.hero-sub em { font-style: normal; color: var(--orange); }
.hero-tagline {
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.5);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 110px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255,255,255,.3);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: rgba(0,0,0,.15);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(244,121,32,.3);
  width: 100%;
  z-index: 2;
}
.hstat {
  flex: 1;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.hstat:last-child { border-right: none; }
.hstat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
}
.hstat span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ── SOBRE ───────────────────────────────────── */
.sobre { background: var(--sand); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.sobre-img-wrap {
  padding: 20px;
}
.sobre-img-inner {
  position: relative;
}
.sobre-img-bg {
  position: absolute;
  top: 0; left: 0;
  width: 80%; height: 80%;
  background: var(--orange);
  border-radius: var(--radius);
  opacity: .15;
}
.sobre-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(244,121,32,.3);
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal) 100%);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.sobre-img-frame:hover {
  box-shadow: 0 20px 60px rgba(244,121,32,.15);
  transform: translateY(-2px);
}
.sobre-photo {
  width: 80%;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5));
}
.sobre-badge-float {
  position: absolute;
  bottom: 30px;
  right: 0px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform 0.3s ease;
}
.sobre-badge-float:hover {
  transform: translateX(-6px);
}
.sobre-quote {
  margin: 28px 0 0;
  padding: 20px 24px;
  background: rgba(244,121,32,.08);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  text-align: center;
  transition: all 0.3s ease;
}
.sobre-quote:hover {
  background: rgba(244,121,32,.12);
  border-left-color: var(--orange-dark);
}
.sobre-quote p {
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 8px;
}
.sobre-quote cite {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--orange);
  font-style: normal;
}
.sobre-text { color: var(--text); }
.sobre-text .section-tag { color: var(--orange); }
.sobre-text .section-title { color: var(--text); }
.sobre-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(244,121,32,.06);
  border: 1px solid rgba(244,121,32,.2);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.sobre-credentials:hover {
  border-color: rgba(244,121,32,.4);
  background: rgba(244,121,32,.1);
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
  transition: transform 0.3s ease;
}
.cred-item:hover {
  transform: translateX(4px);
}
.cred-icon { flex-shrink: 0; font-size: 1rem; margin-top: 1px; }

.sobre-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}
.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.sstat {
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  transition: all 0.3s ease;
}
.sstat:hover {
  border-left: 4px solid var(--orange-dark);
  transform: translateX(4px);
}
.sstat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--orange);
}
.sstat span {
  font-size: 0.8rem;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── METODOLOGIA ─────────────────────────────── */
.metodologia { background: var(--dark-2); }
.metodo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.metodo-card {
  background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(244,121,32,.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.metodo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.metodo-card:hover::before { transform: scaleX(1); }
.metodo-card:hover {
  border-color: rgba(244,121,32,.3);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(244,121,32,.15), 0 0 60px rgba(244,121,32,.08);
}
.metodo-card.featured {
  background: linear-gradient(135deg, rgba(244,121,32,.12) 0%, rgba(244,121,32,.06) 100%);
  border-color: rgba(244,121,32,.4);
  box-shadow: 0 12px 40px rgba(244,121,32,.25);
}
.metodo-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.2));
}
.metodo-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--white);
}
.metodo-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.metodo-card ul { display: flex; flex-direction: column; gap: 8px; }
.metodo-card ul li {
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
  padding-left: 12px;
  position: relative;
  transition: all 0.3s ease;
}
.metodo-card ul li:hover {
  color: rgba(255,255,255,.7);
  padding-left: 16px;
}
.metodo-card ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--orange);
}
.card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ── RESULTADOS ──────────────────────────────── */
.resultados { background: var(--sand); }
.resultados .section-title { color: var(--text); }
.resultados .section-tag { color: var(--orange); }
.resultados-dash {
  background: var(--dark);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.dash-header {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1.5fr;
  padding: 16px 28px;
  background: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}
.dash-row {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1.5fr;
  padding: 18px 28px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background var(--transition);
}
.dash-row:hover { background: rgba(255,255,255,.04); }
.dash-row:last-child { border-bottom: none; }
.dash-row.gold { border-left: 3px solid var(--gold); }
.dash-row.silver { border-left: 3px solid var(--silver); }
.dash-row.bronze { border-left: 3px solid var(--bronze); }
.athlete-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.athlete-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}
.cat-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(244,121,32,.2);
  color: var(--orange);
}
.cat-tag.inter { background: rgba(30,95,116,.2); color: var(--teal-light); }
.cat-tag.inic { background: rgba(57,255,20,.1); color: var(--green-neon); }
.dash-row div { color: rgba(255,255,255,.7); font-size: 0.9rem; }
.result-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}
.gold-badge { background: rgba(255,215,0,.15); color: var(--gold); }
.silver-badge { background: rgba(192,192,192,.15); color: var(--silver); }
.bronze-badge { background: rgba(205,127,50,.15); color: var(--bronze); }

/* ── TORNEIOS ────────────────────────────────── */
.torneios { background: var(--dark-3); }
.torneios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.torneio-card {
  background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(244,121,32,.12);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.torneio-card:hover {
  border-color: rgba(244,121,32,.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(244,121,32,.15), 0 0 60px rgba(244,121,32,.08);
}
.torneio-card.featured-card {
  border-color: rgba(244,121,32,.4);
  background: linear-gradient(135deg, rgba(244,121,32,.12) 0%, rgba(244,121,32,.06) 100%);
  box-shadow: 0 12px 40px rgba(244,121,32,.2);
}
.torneio-year {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(244,121,32,.2);
}
.torneio-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.torneio-city {
  font-size: 0.85rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.torneio-card p:not(.torneio-city) {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.torneio-result {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
  text-shadow: 0 2px 6px rgba(244,121,32,.15);
}

/* ── GALERIA ─────────────────────────────────── */
.galeria { background: var(--sand-2); }
.galeria .section-title { color: var(--text); }
.galeria .section-tag { color: var(--orange); }
.galeria .section-desc { color: #666; }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.galeria-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
}
.galeria-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(244,121,32,.05);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.galeria-item:hover::after { opacity: 1; }
.galeria-item.tall { grid-row: span 2; }
.galeria-item.wide { grid-column: span 2; }
.galeria-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  text-align: center;
}
.galeria-placeholder span { font-size: 3rem; }
.galeria-placeholder p {
  color: rgba(255,255,255,.6);
  font-size: 0.85rem;
}
.galeria-placeholder p strong { color: var(--white); display: block; margin-top: 4px; }
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.galeria-item:hover img { transform: scale(1.08); }
.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(244,121,32,.88) 0%, rgba(0,0,0,.2) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}
.galeria-item:hover .galeria-overlay { opacity: 1; }
.galeria-overlay span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.4;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.galeria-overlay span small {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.95;
  margin-top: 4px;
}

/* ── DEPOIMENTOS ─────────────────────────────── */
.depoimentos { background: var(--dark); }
.depo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.depo-card {
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(244,121,32,.12);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.depo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,121,32,.3);
  box-shadow: 0 20px 50px rgba(244,121,32,.15), 0 0 60px rgba(244,121,32,.08);
}
.depo-card.featured-depo {
  border-color: rgba(244,121,32,.4);
  background: linear-gradient(135deg, rgba(244,121,32,.12) 0%, rgba(244,121,32,.06) 100%);
  box-shadow: 0 12px 40px rgba(244,121,32,.2);
}
.depo-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(255,215,0,.2);
}
.depo-text {
  color: rgba(255,255,255,.7);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.depo-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(244,121,32,.3);
  transition: transform 0.3s ease;
}
.depo-card:hover .depo-avatar {
  transform: scale(1.1);
}
.depo-author strong { display: block; font-size: 0.95rem; }
.depo-author span { font-size: 0.78rem; color: var(--orange); }

/* ── AULAS ───────────────────────────────────── */
.aulas { background: var(--sand); }
.aulas .section-title { color: var(--text); }
.aulas .section-tag { color: var(--orange); }
.aulas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.aula-card {
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,.98) 100%);
  border-radius: var(--radius);
  padding: 32px 24px;
  color: var(--text);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.aula-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,.18);
  border-color: var(--orange);
}
.aula-card.featured-aula {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(244,121,32,.2);
}
.aula-badge-top {
  position: absolute;
  top: -1px; right: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  border-radius: 0 0 8px 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.aula-level {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.aula-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.aula-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.aula-benefits li {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 6px;
}
.aula-card .btn { transition: all 0.3s ease; }
.aula-card:hover .btn {
  transform: translateY(-2px);
}
}
.aula-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}
.aula-card.featured-aula p { color: rgba(255,255,255,.6); }
.aula-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.aula-benefits li {
  font-size: 0.85rem;
  color: #444;
  font-weight: 600;
}
.aula-card.featured-aula .aula-benefits li { color: rgba(255,255,255,.8); }

/* ── CONTATO ─────────────────────────────────── */
.contato { background: var(--dark-2); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contato-desc {
  color: rgba(255,255,255,.5);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.contato-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.contato-form-wrap {
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(244,121,32,.2);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.contato-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.3);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(244,121,32,.1);
}
.form-group select option { background: var(--dark-2); }

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  border-top: 1px solid rgba(244,121,32,.2);
  padding: 40px 24px 28px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo img {
  height: 100px;
  filter: drop-shadow(0 4px 12px rgba(244,121,32,.2));
  transition: filter 0.3s ease;
}
.footer-logo img:hover {
  filter: drop-shadow(0 8px 20px rgba(244,121,32,.3));
}
.footer p {
  color: rgba(255,255,255,.4);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-links a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

/* ── WHATSAPP FLOAT ──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: all var(--transition);
  animation: floatBounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,.6);
}
.whatsapp-float svg { width: 32px; height: 32px; color: var(--white); }
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── LIGHTBOX ────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
}
.lightbox-close:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-content {
  max-width: 85vw;
  max-height: 90vh;
  text-align: center;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  padding: 32px;
  background: var(--dark-3);
  border-radius: 16px;
  border: 1px solid rgba(244,121,32,.3);
  overflow-y: auto;
}

/* ── PREMIUM MOBILE ENHANCEMENTS ─────────────– */
/* Enhanced scroll reveal with premium easing */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.2, .8, .2, 1), transform 0.7s cubic-bezier(.2, .8, .2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Premium button micro-interactions */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: -1;
}
.btn:active::before {
  width: 300px;
  height: 300px;
}

/* Premium card hover effects */
.metodo-card,
.depo-card,
.torneio-card {
  position: relative;
  overflow: hidden;
}
.metodo-card::after,
.depo-card::after,
.torneio-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244,121,32,.1), transparent);
  transition: left 0.5s;
  z-index: 0;
  pointer-events: none;
}
.metodo-card:hover::after,
.depo-card:hover::after,
.torneio-card:hover::after {
  left: 100%;
}

/* Subtle scaleUp animation for elements */
@keyframes scaleUpIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.metodo-card.reveal.visible,
.depo-card.reveal.visible,
.torneio-card.reveal.visible,
.aula-card.reveal.visible,
.galeria-item.reveal.visible {
  animation: scaleUpIn 0.6s ease-out backwards;
}
.reveal:nth-child(2).visible { animation-delay: 0.1s; }
.reveal:nth-child(3).visible { animation-delay: 0.2s; }
.reveal:nth-child(4).visible { animation-delay: 0.3s; }
.reveal:nth-child(5).visible { animation-delay: 0.4s; }
.reveal:nth-child(6).visible { animation-delay: 0.5s; }

/* Focus states for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .metodo-grid { grid-template-columns: repeat(2, 1fr); }
  .aulas-grid { grid-template-columns: repeat(2, 1fr); }
  .torneios-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════ */
/* ──── TABLET & MOBILE OPTIMIZATION (768px) ──── */
/* ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── NAVBAR ────────────────────────────────────── */
  .nav-inner { height: 140px; }
  .nav-logo img { height: 120px; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(13,13,13,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(244,121,32,.2);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  /* ── HERO PREMIUM MOBILE ───────────────────────── */
  .hero { min-height: 100svh; padding-bottom: 0; }
  .hero-content { 
    padding: 60px 24px 120px;
    text-align: center;
  }
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); line-height: 1; }
  .hero-sub { font-size: clamp(1rem, 3vw, 1.5rem); margin-bottom: 16px; }
  .hero-tagline { font-size: clamp(0.95rem, 2.5vw, 1.15rem); margin-bottom: 28px; }
  
  /* ── Hero Buttons Layout ──────────────────────── */
  .hero-btns {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
    font-size: 0.95rem;
    padding: 12px 24px;
  }
  
  /* ── Hero Stats - Premium Grid 2x2 ──────────────– */
  .hero-stats {
    position: relative;
    bottom: auto;
    transform: none;
    left: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(0,0,0,.2);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(244,121,32,.25);
  }
  .hstat {
    padding: 20px 16px;
    border-right: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.04);
  }
  .hstat:nth-child(odd) { border-right: none; }
  .hstat:nth-child(n+3) { border-bottom: none; }
  .hstat strong { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .hstat span { font-size: 0.7rem; }
  
  /* ── Hero Scroll Indicator Hidden ──────────────– */
  .hero-scroll { display: none; }

  /* ── SECTION HEADERS MOBILE ────────────────────– */
  .section-header { margin-bottom: 40px; }
  .section-tag { font-size: clamp(10px, 2vw, 12px); padding: 6px 12px; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.8rem); letter-spacing: 1px; }
  .section-desc { font-size: clamp(0.95rem, 2vw, 1.05rem); line-height: 1.6; }

  /* ── SOBRE SECTION MOBILE ──────────────────────– */
  .sobre-grid { grid-template-columns: 1fr; gap: 32px; }
  .sobre-img-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .sobre-img-frame { aspect-ratio: 3/4; }
  .sobre-photo { width: 85%; }
  .sobre-badge-float {
    padding: 10px 16px;
    font-size: 0.85rem;
    bottom: 20px;
    right: -2px;
  }
  .sobre-quote {
    margin: 20px 0 0;
    padding: 16px 18px;
    font-size: 0.95rem;
  }
  .sobre-text { color: var(--text); }
  .sobre-text p {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .sobre-credentials {
    gap: 8px;
    padding: 16px;
  }
  .cred-item { font-size: 0.85rem; gap: 10px; }
  .sobre-stats { 
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
  }
  .sstat { padding-left: 12px; border-left-width: 2px; }
  .sstat strong { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .sstat span { font-size: 0.75rem; }

  /* ── METODOLOGIA MOBILE ────────────────────────– */
  .metodologia { background: var(--dark-2); }
  .metodo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .metodo-card {
    padding: 28px 22px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(244,121,32,.15);
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  .metodo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244,121,32,.4);
    box-shadow: 0 12px 32px rgba(244,121,32,.12);
  }
  .metodo-icon { font-size: 2rem; margin-bottom: 16px; }
  .metodo-card h3 { font-size: clamp(1.1rem, 3vw, 1.3rem); margin-bottom: 10px; }
  .metodo-card p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 14px; }
  .metodo-card ul li { font-size: 0.8rem; padding-left: 10px; }

  /* ── RESULTADOS MOBILE ─────────────────────────– */
  .resultados-dash {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,.25);
  }
  .dash-header {
    grid-template-columns: 1.8fr 1.2fr;
    padding: 14px 18px;
    font-size: 0.75rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  }
  .dash-row {
    grid-template-columns: 1.8fr 1.2fr;
    padding: 14px 18px;
    font-size: 0.8rem;
    gap: 12px;
  }
  .dash-header div:nth-child(n+3),
  .dash-row div:nth-child(n+3) { display: none; }
  .athlete-info { gap: 10px; }
  .athlete-avatar { width: 32px; height: 32px; font-size: 0.7rem; }
  .cat-tag { padding: 3px 8px; font-size: 0.7rem; }
  .result-badge { padding: 5px 10px; font-size: 0.75rem; }

  /* ── TORNEIOS MOBILE ───────────────────────────– */
  .torneios { background: var(--dark-3); }
  .torneios-grid { grid-template-columns: 1fr; gap: 16px; }
  .torneio-card {
    padding: 24px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(244,121,32,.12);
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  .torneio-card:hover {
    transform: translateY(-3px);
    border-color: rgba(244,121,32,.3);
  }
  .torneio-year { font-size: clamp(0.95rem, 2vw, 1.1rem); margin-bottom: 10px; }
  .torneio-card h3 { font-size: clamp(1.1rem, 3vw, 1.3rem); margin-bottom: 8px; }
  .torneio-city { font-size: 0.8rem; margin-bottom: 12px; }
  .torneio-card p:not(.torneio-city) { font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }

  /* ── GALERIA MOBILE PREMIUM ────────────────────– */
  .galeria { background: var(--sand-2); }
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 12px;
  }
  .galeria-item {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
  }
  .galeria-item.tall { grid-row: span 2; }
  .galeria-item.wide { grid-column: span 2; }
  .galeria-item img {
    transition: transform 0.4s ease;
  }
  .galeria-item:active img { transform: scale(1.05); }
  .galeria-overlay {
    background: linear-gradient(to top, rgba(244,121,32,.88) 0%, rgba(0,0,0,.2) 100%);
    padding: 16px;
  }
  .galeria-overlay span { font-size: 0.95rem; }
  .galeria-overlay span small { font-size: 0.75rem; }

  /* ── DEPOIMENTOS MOBILE ────────────────────────– */
  .depoimentos { background: var(--dark); }
  .depo-grid { grid-template-columns: 1fr; gap: 16px; }
  .depo-card {
    padding: 24px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(244,121,32,.12);
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  .depo-card:hover {
    transform: translateY(-3px);
    border-color: rgba(244,121,32,.3);
    box-shadow: 0 12px 28px rgba(244,121,32,.1);
  }
  .depo-card.featured-depo {
    border-color: rgba(244,121,32,.3);
    background: rgba(244,121,32,.08);
  }
  .depo-stars { font-size: 0.95rem; margin-bottom: 12px; }
  .depo-text { font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }
  .depo-avatar { width: 40px; height: 40px; font-size: 0.8rem; }
  .depo-author strong { font-size: 0.9rem; }
  .depo-author span { font-size: 0.75rem; }

  /* ── AULAS MOBILE ──────────────────────────────– */
  .aulas { background: var(--sand); }
  .aulas-grid { grid-template-columns: 1fr; gap: 16px; }
  .aula-card {
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,.1);
    transition: all 0.3s ease;
  }
  .aula-card:active { transform: scale(0.98); }
  .aula-badge-top { padding: 5px 10px; font-size: 0.6rem; }
  .aula-level { font-size: 0.7rem; margin-bottom: 8px; }
  .aula-card h3 { font-size: clamp(1.2rem, 3.5vw, 1.5rem); margin-bottom: 12px; }
  .aula-card p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
  .aula-benefits li { font-size: 0.8rem; }
  .aula-card .btn { width: 100%; font-size: 0.9rem; padding: 11px 20px; }

  /* ── CONTATO MOBILE ────────────────────────────– */
  .contato-grid { grid-template-columns: 1fr; gap: 32px; }
  .contato-info { text-align: center; }
  .contato-desc { font-size: clamp(0.9rem, 2.2vw, 1rem); line-height: 1.7; }
  .contato-btns {
    flex-direction: column;
    gap: 12px;
  }
  .contato-btns .btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 20px;
  }
  .contato-form h3 { font-size: clamp(1.2rem, 3vw, 1.4rem); margin-bottom: 18px; }
  .form-group label { font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.95rem;
    padding: 10px 12px;
    border-radius: 8px;
  }
  .form-group .btn { font-size: 0.95rem; padding: 12px 20px; }

  /* ── FOOTER MOBILE ─────────────────────────────– */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .footer-logo img { height: 80px; }
}

/* ══════════════════════════════════════════════ */
/* ────── SMALL MOBILE OPTIMIZATION (480px) ────── */
/* ══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  
  /* ── NAVBAR SMALL ──────────────────────────────– */
  .nav-inner { height: 120px; padding: 0 16px; }
  .nav-logo img { height: 100px; }
  
  /* ── HERO SMALL ────────────────────────────────– */
  .hero-content { padding: 50px 16px 100px; }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-sub { font-size: clamp(0.9rem, 2.5vw, 1.2rem); }
  .hero-tagline { font-size: clamp(0.85rem, 2.2vw, 1rem); }
  .hero-btns .btn {
    max-width: 100%;
    font-size: 0.9rem;
    padding: 11px 20px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .hstat {
    padding: 16px 12px;
  }
  .hstat strong { font-size: clamp(1.2rem, 4vw, 1.4rem); }
  .hstat span { font-size: 0.65rem; }

  /* ── SECTION HEADERS SMALL ─────────────────────– */
  .section-title { font-size: clamp(1.4rem, 6vw, 2.2rem); }
  .section-desc { font-size: clamp(0.85rem, 2vw, 0.95rem); }

  /* ── SOBRE SMALL ───────────────────────────────– */
  .sobre-img-wrap { max-width: 100%; }
  .sobre-credentials { padding: 12px; gap: 6px; }
  .cred-item { font-size: 0.8rem; }
  .sobre-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sstat strong { font-size: clamp(1.2rem, 4vw, 1.4rem); }

  /* ── METODO SMALL ──────────────────────────────– */
  .metodo-card { padding: 20px 16px; gap: 12px; }
  .metodo-icon { font-size: 1.8rem; }
  .metodo-card h3 { font-size: clamp(0.95rem, 2.5vw, 1.1rem); }
  .metodo-card p { font-size: 0.8rem; }

  /* ── RESULTADOS SMALL ──────────────────────────– */
  .dash-header {
    grid-template-columns: 1.5fr 1fr;
    padding: 12px 14px;
    font-size: 0.7rem;
  }
  .dash-row {
    grid-template-columns: 1.5fr 1fr;
    padding: 12px 14px;
    font-size: 0.75rem;
  }
  .athlete-avatar { width: 28px; height: 28px; font-size: 0.6rem; }

  /* ── TORNEIOS SMALL ────────────────────────────– */
  .torneio-card { padding: 18px; }
  .torneio-year { font-size: 0.9rem; }
  .torneio-card h3 { font-size: clamp(0.95rem, 2.5vw, 1.1rem); }
  .torneio-card p { font-size: 0.8rem; }

  /* ── GALERIA SMALL ─────────────────────────────– */
  .galeria-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    gap: 10px;
  }
  .galeria-item.tall,
  .galeria-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* ── DEPO SMALL ────────────────────────────────– */
  .depo-card { padding: 18px; }
  .depo-text { font-size: 0.8rem; margin-bottom: 14px; }
  .depo-avatar { width: 36px; height: 36px; }

  /* ── AULAS SMALL ───────────────────────────────– */
  .aula-card { padding: 18px; }
  .aula-card h3 { font-size: clamp(1rem, 2.8vw, 1.2rem); }
  .aula-card p { font-size: 0.8rem; }

  /* ── CONTATO SMALL ─────────────────────────────– */
  .contato-grid { gap: 24px; }
  .contato-form h3 { font-size: clamp(1rem, 2.5vw, 1.2rem); }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 0.9rem; padding: 9px 10px; }

  /* ── WHATSAPP FLOAT SMALL ──────────────────────– */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
