/* ================================================
   MVP Esporte — Design System
   Paleta: Laranja / Preto / Branco
   Tipografia: Outfit (headings) + Inter (body)
   ================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --orange-500: #FF6A00;
  --orange-600: #E55A00;
  --orange-400: #FF8C33;
  --orange-300: #FFB366;
  --orange-100: #FFF3E8;
  --orange-50:  #FFFAF5;
  --black:      #0A0A0A;
  --gray-900:   #1A1A1A;
  --gray-800:   #2A2A2A;
  --gray-700:   #3A3A3A;
  --gray-600:   #555555;
  --gray-400:   #999999;
  --gray-200:   #E0E0E0;
  --gray-100:   #F5F5F5;
  --white:      #FFFFFF;
  --green-whatsapp: #25D366;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 30px rgba(255,106,0,0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --max-width: 1200px;
  --navbar-height: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: background var(--transition-normal), box-shadow var(--transition-normal), padding var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: var(--space-sm) 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 48px;
  transition: height var(--transition-normal);
}

.navbar.scrolled .navbar-logo img {
  height: 38px;
}

.navbar-nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.navbar-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: var(--space-xs) 0;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-500);
  transition: width var(--transition-fast);
}

.navbar-nav a:hover::after {
  width: 100%;
}

.navbar-cta {
  background: var(--orange-500);
  color: var(--white) !important;
  padding: var(--space-sm) var(--space-lg) !important;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.navbar-cta::after {
  display: none !important;
}

.navbar-cta:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Mobile menu toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  background: none;
  border: none;
}

.navbar-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.6) 80%,
    rgba(10,10,10,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: var(--space-xl);
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-xl);
  animation: fadeInDown 1s ease;
}

.hero-logo img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 span {
  color: var(--orange-500);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--gray-200);
  margin-bottom: var(--space-2xl);
  font-weight: 400;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--orange-500);
  color: var(--white);
  padding: var(--space-lg) var(--space-2xl);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
  animation: fadeInUp 1s ease 0.6s both, pulse 2.5s ease-in-out 2s infinite;
  box-shadow: 0 8px 30px rgba(255,106,0,0.4);
}

.hero-cta:hover {
  background: var(--orange-600);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(255,106,0,0.55);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator svg {
  width: 30px;
  height: 30px;
  color: var(--white);
  opacity: 0.6;
}

/* ---- SECTION BASE ---- */
.section {
  padding: var(--space-4xl) 0;
}

.section-dark {
  background: var(--gray-900);
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--black);
}

.section-orange {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange-500);
  margin-bottom: var(--space-sm);
}

.section-dark .section-label {
  color: var(--orange-400);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.7;
}

/* ---- SPORTS CARDS ---- */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.sport-card {
  position: relative;
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
}

.sport-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.sport-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.sport-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.sport-card:hover .sport-card-img img {
  transform: scale(1.08);
}

.sport-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(10,10,10,0.8));
}

.sport-card-body {
  padding: var(--space-lg);
  text-align: center;
}

.sport-card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.sport-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
  color: var(--white);
}

.sport-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.about-text h2 span {
  color: var(--orange-500);
}

.about-text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: var(--space-md);
  line-height: 1.75;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 0.95rem;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--orange-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-gallery-badge {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: var(--orange-500);
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ---- PRICING SECTION ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.pricing-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-color: rgba(255,106,0,0.3);
}

.pricing-card.featured {
  border-color: var(--orange-500);
  background: rgba(255,106,0,0.08);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: var(--space-lg);
  background: var(--orange-500);
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.pricing-card-title {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.pricing-card-type {
  font-size: 0.8rem;
  color: var(--orange-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
  color: var(--gray-200);
  transition: background var(--transition-fast);
}

.pricing-row:hover {
  background: rgba(255,255,255,0.05);
}

.pricing-row.popular {
  background: rgba(255,106,0,0.12);
  color: var(--white);
  font-weight: 600;
}

.pricing-row-value {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--orange-400);
}

.pricing-row.popular .pricing-row-value {
  color: var(--orange-500);
}

.pricing-card-footer {
  margin-top: var(--space-lg);
  text-align: center;
}

.pricing-card-footer .btn {
  width: 100%;
}

/* ---- BAR SECTION ---- */
.bar-section {
  position: relative;
  overflow: hidden;
}

.bar-section .container {
  position: relative;
  z-index: 2;
}

.bar-content {
  max-width: 600px;
}

.bar-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
}

.bar-content h2 span {
  color: var(--orange-500);
}

.bar-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: var(--space-md);
}

.bar-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.bar-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---- STATS / COUNTERS ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-item {
  padding: var(--space-xl);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

/* ---- CTA SECTION ---- */
.cta-section {
  text-align: center;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--black), var(--gray-900) 40%, var(--orange-600) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.15), transparent 70%);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-title span {
  color: var(--orange-400);
}

.cta-subtitle {
  font-size: 1.15rem;
  color: var(--gray-200);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray-200);
  font-size: 0.9rem;
  font-weight: 500;
}

.cta-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  border-color: var(--orange-500);
  color: var(--white);
  background: rgba(255, 106, 0, 0.2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1EBE5B);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #28E16D, #1EBE5B);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.1rem;
}

/* Links button (Bio style) */
.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.link-btn:hover {
  background: rgba(255, 106, 0, 0.18);
  border-color: var(--orange-400);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.25);
  color: var(--white);
}

.link-btn.destaque {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

.link-btn.destaque:hover {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.6);
}

.link-btn-icon, .sport-card-icon, .pricing-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricing-card-icon svg, .sport-card-icon svg {
  stroke: var(--orange-500);
  transition: stroke var(--transition-fast);
}

.sport-card:hover .sport-card-icon svg {
  stroke: var(--orange-400);
  transform: scale(1.1);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--gray-800);
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: var(--space-md);
}

.footer-logo {
  height: 50px;
}

.footer h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange-400);
  margin-bottom: var(--space-lg);
}

.footer-links a {
  display: block;
  color: var(--gray-400);
  font-size: 0.9rem;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: var(--space-sm);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.footer-social a:hover {
  background: var(--orange-500);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ---- WHATSAPP FLOATING BUTTON ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* ---- LINKS PAGE (Linktree style) ---- */
.links-page {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.links-page::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.08), transparent 70%);
}

.links-page::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -20%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.06), transparent 70%);
}

.links-container {
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.links-profile {
  margin-bottom: var(--space-2xl);
}

.links-avatar {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-lg);
  margin: 0 auto var(--space-md);
  overflow: hidden;
  border: 2px solid var(--orange-500);
  box-shadow: 0 0 25px rgba(255, 106, 0, 0.3);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.links-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.links-name {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.links-desc {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}

.link-btn:hover {
  background: rgba(255,106,0,0.15);
  border-color: var(--orange-500);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,106,0,0.2);
}

.link-btn.destaque {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,106,0,0.3);
}

.link-btn.destaque:hover {
  background: var(--orange-600);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,106,0,0.5);
}

.link-btn-emoji {
  font-size: 1.3rem;
}

.links-social {
  margin-top: var(--space-2xl);
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
}

.links-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.links-social a:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
  transform: translateY(-3px);
}

.links-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* ---- RESERVA PAGE ---- */
.reserva-page {
  padding-top: var(--navbar-height);
}

.reserva-hero {
  background: linear-gradient(135deg, var(--black), var(--gray-900));
  color: var(--white);
  padding: var(--space-4xl) 0;
  text-align: center;
}

.reserva-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

.reserva-hero p {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

.reserva-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  padding: var(--space-3xl) 0;
}

.reserva-step {
  text-align: center;
  padding: var(--space-xl);
}

.reserva-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--orange-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto var(--space-md);
}

.reserva-step h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.reserva-step p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.reserva-embed {
  padding: var(--space-3xl) 0;
  text-align: center;
}

.reserva-info {
  background: var(--orange-100);
  border-left: 4px solid var(--orange-500);
  padding: var(--space-lg);
  border-radius: var(--radius-sm);
  margin: var(--space-xl) 0;
  text-align: left;
}

.reserva-info p {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.reserva-info p:last-child {
  margin-bottom: 0;
}

.reserva-info strong {
  color: var(--orange-600);
}

/* ---- SCROLL REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays for children */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.4s; }

/* ---- KEYFRAMES ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255,106,0,0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255,106,0,0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-12px);
  }
  60% {
    transform: translateX(-50%) translateY(-6px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 64px;
  }

  .navbar-nav {
    display: none;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-md);
    border-top: 1px solid var(--gray-800);
  }

  .navbar-nav.active {
    display: flex;
  }

  .navbar-toggle {
    display: flex;
  }

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

  .hero-cta {
    padding: var(--space-md) var(--space-xl);
    font-size: 0.95rem;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .bar-features-list {
    justify-content: center;
  }

  .cta-badges {
    flex-direction: column;
    align-items: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero-logo {
    width: 90px;
    height: 90px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .links-container {
    padding: 0 var(--space-sm);
  }
}
