/* Custom properties */
:root {
  --nav-bg: rgba(10, 22, 40, 0.85); /* Dark Navy with opacity */
  --bg-dark: #0A1628;
  --bg-light: #F4F6F9;
  --accent-orange: #FF6B00;
  --text-light: #FFFFFF;
  --text-dark: #121A26;
  --text-gray: #A0AAB8;
  
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  --transition: all 0.3s ease;
}

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-light);
  background-color: var(--bg-dark);
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, .logo {
  font-family: var(--font-heading);
  text-transform: uppercase;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: #fff;
  border: 2px solid var(--accent-orange);
}

.btn-primary:hover {
  background-color: #e65c00;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
}

.btn-outline:hover {
  background-color: rgba(255, 107, 0, 0.1);
}

.btn-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border: 2px solid var(--bg-dark);
}

.btn-outline-orange {
  background-color: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
}

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

/* HEADER */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background-color: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.logo .dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  margin-left: 4px;
  margin-top: 10px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-orange);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-orange);
  transition: width 0.3s ease;
}

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

.nav-ctas {
  display: flex;
  gap: 16px;
}

/* Hide mobile CTAs by default on desktop */
.mobile-only-ctas {
  display: none;
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
    z-index: 10001; /* Must be strictly above nav-links */
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #0A1628; /* Solid fallback colors for mobile */
    display: none; /* Reliable toggle */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 10000;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a:not(.btn) {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .nav-ctas {
    display: none; /* Hide default nav-ctas if any */
  }

  .desktop-only-ctas {
    display: none !important;
  }

  /* Show mobile CTAs */
  .nav-links .mobile-only-ctas {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 250px;
    gap: 16px;
    margin-top: 16px;
  }

  .mobile-only-ctas .btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 1.1rem;
  }
}

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

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(10, 22, 40, 0.7) 50%,
    rgba(10, 22, 40, 0.92) 100%
  );
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 80px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
}

.hero-title {
  font-size: 5.5rem;
  line-height: 0.95;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.staggered-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.staggered-text span:nth-child(1) { animation-delay: 0.1s; }
.staggered-text span:nth-child(2) { animation-delay: 0.2s; }
.staggered-text span:nth-child(3) { animation-delay: 0.3s; }
.staggered-text span:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideUpFade {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.search-bar {
  display: flex;
  background: white;
  border-radius: 8px;
  padding: 8px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.input-group {
  display: flex;
  align-items: center;
  padding: 0 16px;
  flex: 1;
}

.input-group i {
  color: var(--accent-orange);
  font-size: 1.5rem;
  margin-right: 12px;
}

.input-group input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  color: var(--text-dark);
}

.search-bar .divider {
  width: 1px;
  height: 40px;
  background-color: #E2E8F0;
  margin: 0 8px;
}

.search-btn {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.collage-wrapper {
  position: relative;
  width: 100%;
}

.collage-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  aspect-ratio: 16/10;
}

.collage-img,
.collage-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
}

.orange-border-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid var(--accent-orange);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  pointer-events: none;
}

/* TILT CARD / PARALLAX */
.tilt-card {
  transition: transform 0.1s ease;
  transform-style: preserve-3d;
}

/* VALUE PROP SECTION */
.val-prop {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 120px 0;
  clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 calc(100% - 4vw));
  margin-top: -4vw;
  position: relative;
  z-index: 4;
}

.val-prop-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.highlight-pill {
  background-color: var(--accent-orange);
  color: white;
  padding: 4px 16px;
  border-radius: 4px;
  display: inline-block;
  transform: rotate(-2deg);
}

.section-desc {
  font-size: 1.25rem;
  color: #4A5568;
  line-height: 1.6;
}

.val-prop-frame {
  position: relative;
  padding: 20px;
  background: white;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  transform: rotate(3deg);
  border-radius: 8px;
}

.val-prop-frame img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.corner-detail {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-orange);
  z-index: -1;
}

/* HOW IT WORKS */
.how-it-works {
  background-color: var(--bg-dark);
  padding: 160px 0 120px;
  margin-top: -8vw;
  position: relative;
  z-index: 3;
}

.how-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dotted-frame {
  position: relative;
  padding: 16px;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 8px;
}

.dotted-frame img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.how-steps {
  position: relative;
}

.how-steps .section-title {
  margin-bottom: 48px;
}

.steps-wrapper {
  position: relative;
  padding-left: 32px;
}

.dashed-line {
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background-image: linear-gradient(to bottom, var(--accent-orange) 50%, transparent 50%);
  background-size: 2px 16px;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  margin-bottom: 48px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-badge {
  width: 40px;
  height: 40px;
  background-color: var(--accent-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 24px;
  flex-shrink: 0;
  transform: translateX(-51px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.step-content h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-gray);
  line-height: 1.5;
  font-size: 1.1rem;
}

/* MODALITIES */
.modalities {
  padding: 100px 0;
  background-color: #0d1e36; /* Slightly lighter navy */
}

.modalities .section-title {
  text-align: center;
  margin-bottom: 64px;
  font-size: 3rem;
}

.modalities-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.modality-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.modality-card i {
  font-size: 3rem;
  color: var(--accent-orange);
  margin-bottom: 16px;
  transition: var(--transition);
}

.modality-card span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.modality-card:hover {
  background: var(--accent-orange);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.modality-card:hover i {
  color: white;
  transform: scale(1.1);
}

/* STATS */
.stats {
  padding: 100px 0;
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
}

.stat-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  position: absolute;
  top: 24px;
  right: 24px;
  box-shadow: 0 0 10px var(--accent-orange);
}

.stat-number {
  display: inline-block;
  font-size: 4.5rem;
  color: white;
  margin-bottom: 8px;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent-orange);
  font-weight: 700;
}

.stat-label {
  color: var(--text-gray);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* ============================
   PARA GESTORES
   ============================ */
.gestores-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1e36 100%);
}

.gestores-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.tag-green {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

/* Pain Points */
.pain-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 100px;
}

.pain-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pain-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pain-icon i {
  font-size: 2rem;
}

.pain-icon-red {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.pain-icon-red i { color: #ef4444; }

.pain-icon-yellow {
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.25);
}
.pain-icon-yellow i { color: #eab308; }

.pain-icon-gray {
  background: rgba(156, 163, 175, 0.12);
  border: 1px solid rgba(156, 163, 175, 0.25);
}
.pain-icon-gray i { color: #9ca3af; }

.pain-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.pain-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pain-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
}

/* Pain Showcase — Visual Cards with Images */
.pain-showcase {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 100px;
}

.pain-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.pain-showcase-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.pain-showcase-card.reverse {
  direction: rtl;
}
.pain-showcase-card.reverse > * {
  direction: ltr;
}

.pain-showcase-img {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}

.pain-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pain-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.3) 0%, rgba(10, 22, 40, 0.6) 100%);
  pointer-events: none;
}

.pain-img-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.pain-img-badge i {
  font-size: 1.6rem;
}

.pain-badge-red {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
}
.pain-badge-red i { color: #ef4444; }

.pain-badge-yellow {
  background: rgba(234, 179, 8, 0.2);
  border: 1px solid rgba(234, 179, 8, 0.4);
}
.pain-badge-yellow i { color: #eab308; }

.pain-badge-gray {
  background: rgba(156, 163, 175, 0.2);
  border: 1px solid rgba(156, 163, 175, 0.4);
}
.pain-badge-gray i { color: #9ca3af; }

.pain-showcase-card.reverse .pain-img-badge {
  left: auto;
  right: 20px;
}

.pain-showcase-body {
  padding: 40px 40px 40px 0;
}

.pain-showcase-card.reverse .pain-showcase-body {
  padding: 40px 0 40px 40px;
}

.pain-showcase-body h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.pain-showcase-body > p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.pain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pain-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

.pain-list li i {
  color: #ef4444;
  font-size: 1.1rem;
  flex-shrink: 0;
}


/* Solution */
.gestores-solution {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.solution-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.solution-content .section-desc {
  text-align: left;
  margin-bottom: 32px;
}

.solution-features {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.solution-feature {
  display: flex;
  gap: 16px;
  align-items: start;
}

.solution-feature > i {
  font-size: 1.75rem;
  color: var(--accent-orange);
  min-width: 32px;
  margin-top: 2px;
}

.solution-feature h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
}

.solution-feature p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

.btn-lg {
  padding: 18px 32px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Dashboard Frame */
.solution-visual {
  position: relative;
}

.dashboard-frame {
  background: #1a1a2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #12121f;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dashboard-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dashboard-dot.red { background: #ef4444; }
.dashboard-dot.yellow { background: #eab308; }
.dashboard-dot.green { background: #22c55e; }

.dashboard-title {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-left: 8px;
  font-family: var(--font-body);
}

.dashboard-img {
  width: 100%;
  display: block;
}

.dashboard-glow {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* DUAL CTA */
.dual-cta {
  padding: 120px 0;
  background-color: var(--bg-dark);
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.cta-card {
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.cta-card i {
  font-size: 3.5rem;
  margin-bottom: 24px;
  opacity: 0.8;
}

.cta-card h2 {
  font-size: 3rem;
  margin-bottom: 32px;
  line-height: 1.1;
}

.block-vibrant {
  background-color: var(--accent-orange);
  color: white;
  border-radius: 16px 0 0 16px;
}

.block-dark {
  background-color: #0f223e;
  border-radius: 0 16px 16px 0;
}

.grain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}

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

/* FOOTER */
.footer {
  background-color: #07101d;
  color: var(--text-gray);
  position: relative;
  padding-top: 80px;
}

.footer-diagonal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-orange);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-tagline {
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-contacts a:hover {
  color: var(--accent-orange);
}

.footer-links h4 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.footer-links ul li {
  margin-bottom: 16px;
}

.footer-links ul li a {
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-orange);
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--accent-orange);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

/* Nav Active State */
.nav-links a.active {
  color: var(--accent-orange);
}
.nav-links a.active::after {
  width: 100%;
}

/* ============================
   PAGE HERO (Subpages)
   ============================ */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-short {
  padding: 160px 0 80px;
}

.page-hero-title {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 600px;
  line-height: 1.6;
}

/* ============================
   FILTERS BAR (Quadras)
   ============================ */
.filters-section {
  background-color: #0d1e36;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.filters-bar {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 16px;
  gap: 10px;
  flex: 0 0 auto;
}

.filter-group i {
  color: var(--accent-orange);
  font-size: 1.25rem;
}

.filter-group select,
.filter-group input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  min-width: 160px;
}

.filter-group select option {
  background: var(--bg-dark);
  color: white;
}

.search-input-group {
  flex: 1;
  min-width: 200px;
}

.search-input-group input {
  width: 100%;
}

/* ============================
   COURTS GRID
   ============================ */
.courts-grid-section {
  background-color: var(--bg-dark);
  padding: 60px 0 100px;
}

.courts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.court-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.court-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}

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

.court-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.court-card:hover .court-card-img img {
  transform: scale(1.05);
}

.court-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.1);
}

.court-badge.badge-orange {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
}

.court-badge.badge-dark {
  background: #1a365d;
}

.court-card-body {
  padding: 24px;
}

.court-card-featured {
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.1);
}

.featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-orange);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.court-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.court-location {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.court-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.court-features span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--text-gray);
  background: rgba(255,255,255,0.04);
  padding: 4px 10px;
  border-radius: 6px;
}

.court-features span i {
  color: var(--accent-orange);
}

.court-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}

.price-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-gray);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--accent-orange);
  font-weight: 700;
}

.price-value small {
  font-size: 1rem;
  color: var(--text-gray);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-orange), #e05500);
  padding: 80px 0;
  text-align: center;
}

.cta-banner-content h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.cta-banner-content p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-banner .btn-primary {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: white;
}

.cta-banner .btn-primary:hover {
  background: #162740;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ============================
   SPORTS DETAIL (Esportes page)
   ============================ */
.sports-detail-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.sport-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
}

.sport-detail-card:last-child {
  margin-bottom: 0;
}

.sport-detail-card.reverse {
  direction: rtl;
}

.sport-detail-card.reverse > * {
  direction: ltr;
}

.sport-detail-img {
  border-radius: 12px;
  overflow: hidden;
}

.sport-detail-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

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

.sport-icon-badge {
  width: 56px;
  height: 56px;
  background: var(--accent-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sport-icon-badge i {
  font-size: 1.75rem;
  color: white;
}

.sport-detail-content h2 {
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.sport-detail-content p {
  color: var(--text-gray);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.sport-stats-mini {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.sport-stats-mini div {
  text-align: center;
}

.sport-stats-mini strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-orange);
}

.sport-stats-mini span {
  font-size: 0.85rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================
   FORM / CADASTRO
   ============================ */
.form-section {
  background: var(--bg-dark);
  padding: 80px 0 120px;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.form-benefits h2 {
  font-size: 2.75rem;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: start;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  font-size: 1.5rem;
  color: var(--accent-orange);
}

.benefit-item h4 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  text-transform: none;
}

.benefit-item p {
  color: var(--text-gray);
  line-height: 1.5;
}

.form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 48px;
}

.form-card h3 {
  font-size: 1.75rem;
  margin-bottom: 32px;
  color: white;
}

.form-row {
  margin-bottom: 20px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 8px;
  text-transform: none;
  font-family: var(--font-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-orange);
  background: rgba(255, 107, 0, 0.05);
}

.form-group select option {
  background: var(--bg-dark);
  color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
  text-transform: none;
  font-family: var(--font-body);
  color: white;
}

.checkbox-item:hover {
  border-color: var(--accent-orange);
  background: rgba(255, 107, 0, 0.08);
}

.checkbox-item input[type="checkbox"] {
  accent-color: var(--accent-orange);
  width: 18px;
  height: 18px;
}

.btn-full {
  width: 100%;
  padding: 18px;
  font-size: 1.15rem;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 16px;
}

.form-disclaimer a {
  color: var(--accent-orange);
  text-decoration: underline;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 60px 40px;
}

.form-success i {
  font-size: 5rem;
  color: #22c55e;
  margin-bottom: 24px;
}

.form-success h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 16px;
}

.form-success p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* Scroll Animation Classes */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 992px) {
  .hero-container, .val-prop-container, .how-container, .cta-container, .footer-container,
  .form-container, .sport-detail-card, .gestores-solution {
    grid-template-columns: 1fr;
  }
  
  .pain-points {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .page-hero-title {
    font-size: 3.5rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .val-prop {
    clip-path: polygon(0 8vw, 100% 0, 100% 100%, 0 calc(100% - 8vw));
    margin-top: -8vw;
  }
  
  .hero-visual {
    margin-top: 40px;
  }
  
  .cta-card.block-vibrant {
    border-radius: 16px 16px 0 0;
  }
  
  .cta-card.block-dark {
    border-radius: 0 0 16px 16px;
  }
  
  .sport-detail-card.reverse {
    direction: ltr;
  }
  
  .courts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-ctas {
    display: none;
  }
  
  .search-bar {
    flex-direction: column;
    padding: 16px;
  }
  
  .input-group {
    width: 100%;
    padding: 12px 0;
  }
  
  .search-bar .divider {
    width: 100%;
    height: 1px;
    margin: 8px 0;
  }
  
  .search-btn {
    width: 100%;
    margin-top: 8px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .page-hero-title {
    font-size: 2.5rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .filters-bar {
    flex-direction: column;
  }
  
  .filter-group {
    width: 100%;
  }
  
  .form-row.two-col {
    grid-template-columns: 1fr;
  }
  
  .form-card {
    padding: 28px;
  }
  
  .sport-stats-mini {
    gap: 16px;
  }
  
  .sport-detail-card {
    padding: 20px;
  }
}

/* ============================
   PARA GESTORES
   ============================ */
.gestores-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1e36 100%);
}

.gestores-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.tag-green {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

.pain-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
}

/* Pain Showcase — Visual Cards with Images */
.pain-showcase {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 100px;
}

.pain-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.pain-showcase-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.pain-showcase-card.reverse {
  direction: rtl;
}
.pain-showcase-card.reverse > * {
  direction: ltr;
}

.pain-showcase-img {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.pain-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pain-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.3) 0%, rgba(10, 22, 40, 0.6) 100%);
  pointer-events: none;
}

.pain-img-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.pain-img-badge i {
  font-size: 1.6rem;
}

.pain-badge-red {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
}
.pain-badge-red i { color: #ef4444; }

.pain-badge-yellow {
  background: rgba(234, 179, 8, 0.2);
  border: 1px solid rgba(234, 179, 8, 0.4);
}
.pain-badge-yellow i { color: #eab308; }

.pain-badge-gray {
  background: rgba(156, 163, 175, 0.2);
  border: 1px solid rgba(156, 163, 175, 0.4);
}
.pain-badge-gray i { color: #9ca3af; }

.pain-showcase-card.reverse .pain-img-badge {
  left: auto;
  right: 20px;
}

.pain-showcase-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pain-showcase-body h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.pain-showcase-body > p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.pain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pain-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

.pain-list li i {
  color: #ef4444;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Solution */
.gestores-solution {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.solution-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.solution-content .section-desc {
  text-align: left;
  margin-bottom: 32px;
}

.solution-features {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.solution-feature {
  display: flex;
  gap: 16px;
  align-items: start;
}

.solution-feature > i {
  font-size: 1.75rem;
  color: var(--accent-orange);
  min-width: 32px;
  margin-top: 2px;
}

.solution-feature h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
}

.solution-feature p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

.btn-lg {
  padding: 18px 32px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Dashboard Frame */
.solution-visual {
  position: relative;
}

.dashboard-frame {
  background: #1a1a2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #12121f;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dashboard-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dashboard-dot.red { background: #ef4444; }
.dashboard-dot.yellow { background: #eab308; }
.dashboard-dot.green { background: #22c55e; }

.dashboard-title {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-left: 8px;
  font-family: var(--font-body);
}

.dashboard-img {
  width: 100%;
  display: block;
}

.dashboard-glow {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* GESTORES Responsive */
@media (max-width: 992px) {
  .pain-showcase-card,
  .pain-showcase-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  
  .pain-showcase-body {
    padding: 28px;
  }
  
  .pain-showcase-img {
    min-height: 240px;
  }
  
  .gestores-solution {
    grid-template-columns: 1fr;
  }
}

/* ============================
   COMPACT PAIN POINTS GRID
   ============================ */
.pain-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.pain-compact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.pain-compact-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.pain-compact-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.pain-compact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pain-compact-body {
  padding: 24px;
}

.pain-compact-body .pain-img-badge {
  position: static;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.pain-compact-body h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.pain-compact-body > p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Divider */
.gestores-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.3), transparent);
}

.divider-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 1.2rem;
  animation: bounce-down 2s infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Dashboard Showcase Full Width */
.dashboard-showcase {
  position: relative;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Bar */
.gestores-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.gestores-stat {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: var(--transition);
}

.gestores-stat:hover {
  border-color: rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.04);
}

.gestores-stat h3 {
  font-size: 2.8rem;
  color: var(--accent-orange);
  margin-bottom: 4px;
  line-height: 1;
}

.gestores-stat p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Solution Grid */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 24px;
  transition: var(--transition);
}

.solution-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.solution-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.solution-card-icon i {
  font-size: 1.5rem;
  color: #22c55e;
}

.solution-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
}

.solution-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Gestores CTA */
.gestores-cta {
  text-align: center;
  padding: 60px 32px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 107, 0, 0.02) 100%);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: 20px;
}

.gestores-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.gestores-cta p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* GESTORES Responsive */
@media (max-width: 992px) {
  .pain-compact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 600px) {
  .gestores-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }
  
  .gestores-cta {
    padding: 40px 20px;
  }
  
  .gestores-cta h2 {
    font-size: 1.6rem;
  }
}

/* ============================
   SPORTS MODALITIES FIX
   ============================ */
.modalities-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.modality-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 180px;
}

.modality-card:hover, .modality-card:active {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: none; /* Removed 3D movement */
  box-shadow: none; /* Removed outer glow effect */
}

.modality-card i {
  font-size: 2.2rem;
  color: var(--accent-orange);
  line-height: 1;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.modality-card span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
  display: flex;
  align-items: center;
  margin-top: 2px; /* Small optical adjustment for bottom-heavy fonts */
  transition: color 0.3s ease;
}

/* Ensure child elements turn white when card is hovered */
.modality-card:hover i, 
.modality-card:active i,
.modality-card:hover span,
.modality-card:active span {
  color: #FFFFFF;
}

/* Spinner Animation for forms loading state */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.spinner {
  display: inline-block;
  animation: spin 1s linear infinite;
}



/* ============================
   VITRINE DINAMICA (dados reais)
   ============================ */
.results-info {
  margin-top: 16px;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.price-value-muted {
  font-size: 1.15rem;
  color: var(--text-light);
  opacity: 0.85;
}

/* Skeleton de carregamento */
.court-card-skeleton {
  pointer-events: none;
}

.skeleton-img {
  height: 220px;
  background: linear-gradient(100deg, rgba(255,255,255,0.04) 40%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.04) 60%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
}

.skeleton-line {
  height: 14px;
  border-radius: 6px;
  margin-bottom: 12px;
  background: linear-gradient(100deg, rgba(255,255,255,0.05) 40%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.05) 60%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
}

.skeleton-line.w-40 { width: 40%; }
.skeleton-line.w-60 { width: 60%; }
.skeleton-line.w-80 { width: 80%; }

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Estados vazio / erro da vitrine */
.courts-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}

.courts-state i {
  font-size: 3rem;
  color: var(--accent-orange);
  margin-bottom: 16px;
  display: inline-block;
}

.courts-state h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.courts-state p {
  color: var(--text-gray);
  max-width: 480px;
  margin: 0 auto 24px;
}

.courts-state-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================
   PLANOS E PRECOS (gestores)
   ============================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 48px auto 0;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.pricing-card-featured {
  border-color: var(--accent-orange);
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.08), rgba(255,255,255,0.02));
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.12);
}

.pricing-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.pricing-head h3 {
  font-size: 2rem;
  letter-spacing: 1px;
}

.pricing-head p {
  color: var(--text-gray);
  margin: 4px 0 24px;
  font-size: 0.95rem;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-tier {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
}

.tier-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-gray);
  margin-bottom: 6px;
}

.tier-price {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
}

.tier-price small {
  font-size: 0.95rem;
  font-weight: 700;
  margin-right: 2px;
}

.tier-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-gray);
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.pricing-features li i {
  color: var(--accent-orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pricing-features li.feature-off {
  color: var(--text-gray);
  opacity: 0.6;
}

.pricing-features li.feature-off i {
  color: var(--text-gray);
}

.pricing-consult {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 32px auto 0;
  padding: 24px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 16px;
}

.pricing-consult > i {
  font-size: 2.5rem;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.pricing-consult-text {
  flex: 1;
}

.pricing-consult-text h4 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.pricing-consult-text p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.pricing-consult .btn i {
  vertical-align: middle;
  margin-right: 6px;
}

@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .pricing-consult {
    flex-direction: column;
    text-align: center;
  }
}


/* ============================
   TEASER DE PRECOS (gestores)
   ============================ */
.price-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
  padding: 18px 28px;
  background: linear-gradient(90deg, rgba(255, 107, 0, 0.14), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: 14px;
  transition: var(--transition);
}

.price-strip:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.15);
  transform: translateY(-2px);
}

.price-strip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.price-strip p {
  flex: 1;
  font-size: 1.05rem;
}

.price-strip p strong {
  color: var(--accent-orange);
  font-size: 1.2rem;
}

.price-strip-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--accent-orange);
  white-space: nowrap;
}

/* ============================
   MOCKUP DO PAINEL ATUAL
   (cores reais do sistema: #0f1117 / #1a1d27 / #f97316)
   ============================ */
.dash-mock {
  display: flex;
  background: #0f1117;
  text-align: left;
  font-size: 12px;
  color: #c7cddb;
  min-height: 380px;
}

.dash-side {
  width: 150px;
  flex-shrink: 0;
  background: #12151f;
  border-right: 1px solid #2d3247;
  padding: 16px 10px;
}

.dash-brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-left: 8px;
}

.dash-brand span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f97316;
  margin-left: 3px;
}

.dash-side nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-side nav span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  color: #8b93a7;
}

.dash-side nav span i { font-size: 14px; }

.dash-side nav span.on {
  background: rgba(249, 115, 22, 0.15);
  color: #fb923c;
  font-weight: 700;
}

.dash-main {
  flex: 1;
  padding: 16px;
  min-width: 0;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.dash-top strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.dash-top em {
  font-style: normal;
  color: #8b93a7;
  font-size: 11px;
}

.dash-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(47, 191, 113, 0.15);
  color: #2fbf71;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.dash-kpi {
  background: #1a1d27;
  border: 1px solid #2d3247;
  border-radius: 10px;
  padding: 10px 12px;
}

.dash-kpi span {
  display: block;
  color: #8b93a7;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dash-kpi strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  margin: 2px 0;
}

.dash-kpi em {
  font-style: normal;
  font-size: 10px;
  color: #8b93a7;
}

.dash-kpi em.up { color: #2fbf71; }

.dash-kpi.alert {
  border-color: rgba(229, 72, 77, 0.5);
}

.dash-kpi.alert strong { color: #e5484d; }

.dash-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 10px;
}

.dash-agenda, .dash-widget {
  background: #1a1d27;
  border: 1px solid #2d3247;
  border-radius: 10px;
  padding: 12px;
}

.dash-agenda h5, .dash-widget h5 {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.dash-agenda h5 i, .dash-widget h5 i { color: #fb923c; }

.dash-slot {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #22263a;
  border-radius: 8px;
  padding: 7px 10px;
  margin-bottom: 6px;
}

.dash-slot span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fb923c;
  width: 28px;
}

.dash-slot p {
  flex: 1;
  color: #e8ecf2;
  font-size: 11px;
}

.dash-slot.free {
  background: transparent;
  border: 1px dashed #2d3247;
}

.dash-slot.free p { color: #8b93a7; }

.dash-slot .tag {
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

.tag-pago { background: rgba(47, 191, 113, 0.18); color: #2fbf71; }
.tag-promo { background: rgba(249, 115, 22, 0.18); color: #fb923c; }
.tag-mensal { background: rgba(99, 140, 255, 0.18); color: #7ea0ff; }

.dash-widgets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-widget ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}

.dash-widget ul li {
  display: flex;
  justify-content: space-between;
  color: #c7cddb;
  font-size: 11px;
}

.dash-widget ul li b { color: #fff; }

.dash-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #2d3247;
  padding-top: 6px;
  font-size: 11px;
  color: #8b93a7;
}

.dash-total b {
  color: #fb923c;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.dash-chamada {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.dash-chamada span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

.dash-chamada .p { background: rgba(47, 191, 113, 0.2); color: #2fbf71; }
.dash-chamada .f { background: rgba(229, 72, 77, 0.2); color: #e5484d; }

.dash-widget > em {
  font-style: normal;
  font-size: 10px;
  color: #8b93a7;
}

@media (max-width: 720px) {
  .dash-side { display: none; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .dash-cols { grid-template-columns: 1fr; }
}

/* ============================
   PAGINA JOGADORES
   ============================ */
.phone-duo {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin: 48px 0 20px;
}

.phone-frame {
  width: 230px;
  border-radius: 34px;
  border: 8px solid #0d1017;
  outline: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  background: #0d1017;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  margin: 0;
}

.phone-frame img {
  display: block;
  width: 100%;
  border-radius: 26px 26px 0 0;
}

.phone-frame figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-gray);
  padding: 10px 6px;
}

.phone-frame-back {
  transform: rotate(3deg) translateY(24px);
}

.phone-duo-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 420px;
}

.jog-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.jog-step .step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.jog-step h4 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.jog-step p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.jog-step p a {
  color: var(--accent-orange);
  text-decoration: underline;
}

.phone-duo-steps .btn { align-self: flex-start; margin-top: 8px; }

@media (max-width: 960px) {
  .phone-duo {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
  }
  .phone-frame-back { transform: none; }
  .phone-duo-steps { max-width: 100%; }
}

/* ============================
   FAQ (planos)
   ============================ */
.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary i {
  color: var(--accent-orange);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] summary i { transform: rotate(180deg); }

.faq-item p {
  padding: 0 22px 18px;
  color: var(--text-gray);
  line-height: 1.6;
}

.faq-item p a { color: var(--accent-orange); text-decoration: underline; }

/* ============================
   BANNER DE ADESAO (cadastro?plano=)
   ============================ */
.plan-banner {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.16), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 107, 0, 0.45);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.plan-banner-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.plan-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 8px;
}

.plan-banner-swap {
  font-size: 0.85rem;
  color: var(--text-gray);
  text-decoration: underline;
}

.plan-banner-swap:hover { color: var(--accent-orange); }

.plan-banner h4 {
  font-size: 1.6rem;
  color: var(--accent-orange);
}

.plan-banner-price {
  font-weight: 700;
  margin: 2px 0 6px;
}

.plan-banner-note {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* nota de preco no CTA da home */
.cta-price-note {
  margin: -8px 0 16px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.cta-price-note strong { color: var(--accent-orange); }


/* ============================
   LOGO COM MASCOTE (raposa)
   ============================ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-fox {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}

.footer .logo-fox { height: 32px; }

@media (max-width: 720px) {
  .logo-fox { height: 30px; }
}


/* ============================
   REFINO DE DESIGN v2
   - movimento so onde tem proposito (celulares)
   - cards de beneficio com linha lateral de quadra
   - CTA com marcacao de quadra (circulo central)
   - teaser de preco em formato de placar
   ============================ */

/* Cards de beneficio (gestores + jogadores) */
.solution-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 28px 26px 26px;
  overflow: hidden;
  transform: none;
  transition: border-color 0.25s ease;
}

/* linha lateral (marcacao de quadra): cresce no hover — unico movimento */
.solution-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--accent-orange);
  transform: scaleY(0.32);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.solution-card:hover {
  border-color: rgba(255, 107, 0, 0.35);
  transform: none;
  box-shadow: none;
}

.solution-card:hover::before { transform: scaleY(1); }

.solution-card-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.3);
  margin-bottom: 18px;
}

.solution-card-icon i {
  color: var(--accent-orange);
  font-size: 1.6rem;
}

.solution-card h4 {
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.solution-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* CTA final (gestores/jogadores/planos): marcacao de quadra */
.gestores-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #101b31, #0a1628);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 72px 32px;
  text-align: center;
  margin-top: 80px;
}

.gestores-cta::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 107, 0, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.gestores-cta::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.13) 18%, rgba(255, 107, 0, 0.13) 82%, transparent);
  pointer-events: none;
}

.gestores-cta > * { position: relative; z-index: 1; }

/* Teaser de preco: placar */
.price-strip {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 56px;
  transition: border-color 0.25s ease;
}

.price-strip:hover {
  border-color: var(--accent-orange);
  transform: none;
  box-shadow: none;
}

.price-strip-score {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--accent-orange);
  color: #fff;
  padding: 16px 26px;
  min-width: 190px;
  flex-shrink: 0;
}

.price-strip-score em {
  font-style: normal;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

.price-strip-score strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1.05;
}

.price-strip-score strong small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
}

.price-strip p {
  flex: 1;
  align-self: center;
  padding: 18px 24px;
  font-size: 1rem;
  color: var(--text-gray);
}

.price-strip-cta {
  align-self: center;
  padding-right: 26px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .price-strip { flex-direction: column; text-align: center; }
  .price-strip-score { align-items: center; padding: 18px; }
  .price-strip p { padding: 14px 20px 0; }
  .price-strip-cta { padding: 12px 0 18px; }
}
