/* ============================================================
   3TREE COMPANY SPORTS — CUSTOM STYLESHEET
   Premium Football Agency — Black & Gold Design System
   ============================================================ */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #D4AF37;
  --gold-bright: #FFD700;
  --gold-dark: #a07d2d;
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #1a1a1a;
  --black-border: #2a2a2a;
  --text-light: #e0e0e0;
  --text-muted: #888888;
  --white: #ffffff;
  --success-green: #25D366;
  --transition: all 0.3s ease;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  line-height: 1.3;
}

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

a:hover {
  color: var(--gold-bright);
}

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gold { color: var(--gold) !important; }
.text-gold-bright { color: var(--gold-bright) !important; }
.text-light-custom { color: var(--text-light); }
.text-muted-custom { color: var(--text-muted); }

.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.py-section { padding: 80px 0; }
.py-section-lg { padding: 100px 0; }

.btn-xl {
  padding: 16px 48px;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNavbar {
  background-color: transparent;
  padding: 20px 0;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  z-index: 1050;
}

#mainNavbar.scrolled {
  background-color: rgba(10, 10, 10, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

/* ---- MOBILE MENU ---- */
@media (max-width: 991px) {
  #mainNavbar {
    background-color: rgba(10, 10, 10, 0.98);
    padding: 12px 0;
    backdrop-filter: blur(12px);
  }

  .navbar-collapse {
    background-color: #0d0d0d;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    margin-top: 10px;
    padding: 12px 0 16px;
    border-radius: 0 0 12px 12px;
  }

  .navbar-nav .nav-link {
    padding: 10px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.88rem !important;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background-color: rgba(201, 168, 76, 0.08);
    padding-left: 24px !important;
  }

  .navbar-nav .nav-gold {
    background-color: rgba(201, 168, 76, 0.1);
  }

  .navbar-nav .nav-item.ms-lg-2 {
    padding: 10px 16px 4px;
  }

  .navbar-nav .nav-item.ms-lg-2 .btn {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
  }
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.navbar-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
  transition: filter 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
  filter: drop-shadow(0 0 14px rgba(201, 168, 76, 0.6));
}

.brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}

.brand-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 12px !important;
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-gold {
  color: var(--gold) !important;
  font-weight: 600;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
  color: var(--black) !important;
}

.btn-outline-gold,
.btn-gold-outline {
  background: transparent;
  color: var(--gold) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 28px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-gold:hover,
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-whatsapp {
  background: var(--success-green);
  color: var(--white) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  color: var(--white) !important;
}

/* ============================================================
   ALERTS
   ============================================================ */
.alert-success-custom {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(212, 175, 55, 0.1));
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

.alert-danger {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.5);
  color: #ff6b7a;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 30%, #1a1200 60%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201, 168, 76, 0.06) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: 0;
}

.hero-logo-visual {
  position: relative;
  z-index: 2;
}

.hero-logo-img {
  width: 380px;
  max-width: 100%;
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.35)) drop-shadow(0 0 80px rgba(201, 168, 76, 0.15));
  animation: heroLogoFloat 4s ease-in-out infinite;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-light);
  max-width: 560px;
  opacity: 0.9;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-down {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  color: var(--gold);
  animation: bounce 2s infinite;
  text-decoration: none;
}

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

/* ============================================================
   PAGE HERO (Interior Pages)
   ============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--black) 0%, #1a1200 50%, var(--black) 100%);
  padding: 160px 0 80px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.page-hero-tall {
  min-height: 420px;
  padding: 180px 0 100px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 1px 1px, rgba(201, 168, 76, 0.04) 1px, transparent 0);
  background-size: auto, 40px 40px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 20px;
  opacity: 0.85;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  justify-content: center;
}

.breadcrumb-item a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
}

.breadcrumb-item a:hover {
  color: var(--gold);
}

.breadcrumb-item.active {
  color: var(--gold);
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
}

.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   GOLD DIVIDER
   ============================================================ */
.gold-divider { padding: 0; }
.divider-line {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
  opacity: 0.4;
}

/* ============================================================
   NUMBERS SECTION
   ============================================================ */
.numbers-section {
  background: var(--black-soft);
  padding: 60px 0;
  position: relative;
}

.number-card {
  padding: 32px 20px;
  position: relative;
}

.number-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.number-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.number-value {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: inline;
}

.number-plus {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: inline;
}

.number-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.35), rgba(201, 168, 76, 0.1));
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-link {
  display: inline-block;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
  text-decoration: none;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--gold-bright);
  gap: 8px;
}

/* Service Card Full (Services Page) */
.service-card-full {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
  transition: var(--transition);
}

.service-card-full:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-icon-lg {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
}

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 4px 0;
}

/* ============================================================
   SCOUT TEASER SECTION
   ============================================================ */
.scout-teaser-section {
  position: relative;
  background: linear-gradient(135deg, #111111 0%, #1a1200 50%, #111111 100%);
  overflow: hidden;
}

.scout-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.scout-benefits {
  list-style: none;
  padding: 0;
}

.scout-benefits li {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 6px 0;
}

.scout-cta-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  z-index: 2;
}

.scout-cta-icon {
  font-size: 4rem;
  color: var(--gold);
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
  background: var(--black);
}

.quote-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(201, 168, 76, 0.25);
  position: absolute;
  top: 24px;
  left: 36px;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: var(--white);
  border: none;
  padding: 0;
  margin: 0 0 20px;
}

.quote-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.quote-context {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================================
   STEPS (Mini & Full)
   ============================================================ */
.step-mini {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 24px 16px;
  transition: var(--transition);
}

.step-mini:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.step-mini-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.step-mini-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ============================================================
   PROCESS STEPS (Seja Olheiro page)
   ============================================================ */
.process-step {
  position: relative;
  padding: 32px 20px;
}

.process-step-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 20px;
}

.process-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================================
   TIMELINE (Como Funciona page)
   ============================================================ */
.timeline-step {
  position: relative;
}

.timeline-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  margin-bottom: 20px;
}

.timeline-step-badge span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--black);
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.timeline-checklist {
  list-style: none;
  padding: 0;
}

.timeline-checklist li {
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 4px 0;
}

.timeline-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--black-soft);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.3);
  flex-shrink: 0;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin-top: 8px;
}

.timeline-icon-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

/* ============================================================
   FOUNDERS (Quem Somos page)
   ============================================================ */
.founder-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.founder-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-gold);
}

.founder-photo-placeholder {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid var(--black-border);
}

.founder-photo {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-bottom: 1px solid var(--black-border);
  position: relative;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo i {
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.2);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  display: block;
}

.founder-card:hover .founder-img {
  transform: scale(1.04);
}

.founder-info {
  padding: 28px;
}

.founder-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.founder-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.founder-club {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
}

.founder-bio {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-badge {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

/* Story Section */
.story-card-accent {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.story-stats-row {
  display: flex;
  gap: 16px;
  justify-content: space-around;
}

.story-stat {
  text-align: center;
}

.story-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
}

.story-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* MVV Cards */
.mvv-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  transition: var(--transition);
  text-align: center;
}

.mvv-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.mvv-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin: 0 auto 24px;
}

.mvv-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.mvv-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.mvv-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.mvv-list li {
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 4px 0;
}

/* Compliance Cards */
.compliance-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
}

.compliance-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

/* ============================================================
   ATHLETE CARDS
   ============================================================ */
.athlete-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.athlete-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.athlete-photo {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  overflow: hidden;
}

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

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

.athlete-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.2);
}

.athlete-badge-destaque {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.athlete-info {
  padding: 20px;
}

.athlete-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.athlete-position {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.athlete-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.athlete-detail {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.athlete-card-placeholder {
  opacity: 0.6;
}

.alert-info-custom {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  color: var(--text-light);
  padding: 16px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

.athlete-cta-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-section-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}

.form-section-header {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.03));
  border-bottom: 1px solid var(--black-border);
  padding: 24px 28px;
}

.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}

.form-section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.form-section-body {
  padding: 28px;
}

.form-label-custom {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  display: block;
}

/* Dark Input Styling */
.dark-input,
.form-control.dark-input,
.form-select.dark-input {
  background-color: #0d0d0d !important;
  border: 1px solid var(--black-border) !important;
  color: var(--text-light) !important;
  border-radius: var(--radius) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: var(--transition);
}

.dark-input:focus,
.form-control.dark-input:focus,
.form-select.dark-input:focus {
  background-color: #0d0d0d !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
  color: var(--text-light) !important;
  outline: none;
}

.dark-input::placeholder {
  color: rgba(136, 136, 136, 0.6) !important;
}

.dark-input option {
  background-color: #111111;
  color: var(--text-light);
}

.invalid-feedback-custom {
  color: #ff6b7a;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  margin-top: 4px;
}

.form-hint {
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  display: block;
  margin-top: 6px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-icon.instagram {
  background: rgba(193, 53, 132, 0.1);
  border-color: rgba(193, 53, 132, 0.25);
  color: #C13584;
}

.contact-info-icon.location {
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.25);
  color: #ff6b6b;
}

.contact-info-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  color: var(--text-light);
  font-weight: 600;
  margin: 0 0 2px;
}

.contact-info-value a {
  color: var(--text-light);
}

.contact-info-value a:hover {
  color: var(--gold);
}

.contact-info-note {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin: 0;
}

.contact-scout-card {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.03));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

/* ============================================================
   BENEFIT & WHY CARDS
   ============================================================ */
.benefit-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: var(--transition);
  height: 100%;
}

.benefit-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.why-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin: 0 auto 24px;
}

.why-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion .faq-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-button {
  background: var(--black-card) !important;
  color: var(--white) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 20px 24px;
  border: none !important;
  box-shadow: none !important;
}

.faq-button:not(.collapsed) {
  color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.05) !important;
}

.faq-button::after {
  filter: invert(1) sepia(1) saturate(2) hue-rotate(10deg);
}

.faq-body {
  background: var(--black-card) !important;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  padding: 0 24px 24px;
  border-top: 1px solid var(--black-border);
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-final-section {
  background: linear-gradient(135deg, #111111 0%, #1a1200 50%, #111111 100%);
  position: relative;
  overflow: hidden;
}

.cta-final-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

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

/* Diferencial Card */
.diferencial-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
}

.footer-top {
  padding: 64px 0 40px;
}

.footer-brand .brand-logo {
  font-size: 2rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding: 20px 0;
}

.footer-bottom p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.text-muted-footer {
  color: rgba(136, 136, 136, 0.5) !important;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 60px;
  height: 60px;
  background: var(--success-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #111111;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  border: 1px solid var(--black-border);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.7s ease forwards;
}

.animate-fadeInUp:nth-child(1) { animation-delay: 0.1s; }
.animate-fadeInUp:nth-child(2) { animation-delay: 0.25s; }
.animate-fadeInUp:nth-child(3) { animation-delay: 0.4s; }
.animate-fadeInUp:nth-child(4) { animation-delay: 0.55s; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .py-section { padding: 60px 0; }
  .py-section-lg { padding: 80px 0; }

  .numbers-section { padding: 40px 0; }

  .hero-content {
    padding-top: 80px;
    text-align: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .section-desc {
    max-width: 100%;
  }

  .story-stats-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .quote-card {
    padding: 40px 28px;
  }

  .quote-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

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

  .number-value {
    font-size: 2.5rem;
  }

  .form-section-body {
    padding: 20px;
  }

  .diferencial-card {
    padding: 36px 24px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
  }

  .timeline-icon-card {
    padding: 28px 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .btn-xl {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .quote-card {
    padding: 32px 20px;
  }

  .quote-icon {
    display: none;
  }

  .founder-info {
    padding: 20px;
  }
}

/* ============================================================
   SCROLLBAR STYLING
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ============================================================
   SELECTION COLOR
   ============================================================ */
::selection {
  background: rgba(201, 168, 76, 0.3);
  color: var(--white);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 4px;
  left: 20px;
  line-height: 1;
}
.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-top: 8px;
}
.testimonial-author { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--black-border); }
.testimonial-name { color: var(--gold); font-weight: 700; font-size: 0.9rem; }
.testimonial-role { color: var(--text-muted); font-size: 0.8rem; margin-top: 2px; }

/* ============================================================
   COMMISSION BADGE
   ============================================================ */
.commission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 24px;
  padding: 8px 20px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* ============================================================
   PLAYER REGISTER / SEJA JOGADOR
   ============================================================ */
.player-register-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #111 50%, #0a0800 100%);
  position: relative;
  overflow: hidden;
}
.player-register-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.form-step-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}
.form-step-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 0;
}
.form-step-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.form-step-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.form-section-title {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.form-label-dark {
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}
.form-control-dark {
  background: #1a1a1a !important;
  border: 1px solid var(--black-border) !important;
  color: var(--text-light) !important;
  border-radius: var(--radius) !important;
  padding: 10px 14px !important;
  font-size: 0.9rem !important;
  transition: border-color 0.2s ease !important;
}
.form-control-dark:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1) !important;
  background: #1a1a1a !important;
  color: var(--white) !important;
  outline: none !important;
}
.form-control-dark::placeholder { color: #555 !important; }
.form-select-dark {
  background-color: #1a1a1a !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C9A84C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  border: 1px solid var(--black-border) !important;
  color: var(--text-light) !important;
  border-radius: var(--radius) !important;
  padding: 10px 14px !important;
  font-size: 0.9rem !important;
}
.form-select-dark:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1) !important;
  outline: none !important;
}
.form-select-dark option { background: #1a1a1a; color: var(--text-light); }
.form-check-input-dark {
  background-color: #1a1a1a;
  border: 1px solid var(--black-border);
}
.form-check-input-dark:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   WHATSAPP FLOAT PULSE
   ============================================================ */
.whatsapp-float {
  animation: waPulse 2.5s infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70%  { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   WHATSAPP BANNER (contato)
   ============================================================ */
.wa-banner {
  background: linear-gradient(135deg, #0a1a0e 0%, #0d1f12 100%);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.btn-whatsapp {
  background: #25D366;
  color: #000;
  border: none;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.contact-info-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
}
.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.contact-info-title { color: var(--text-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.contact-info-value { color: var(--white); font-weight: 600; font-size: 1rem; }
.contact-info-sub { color: var(--text-muted); font-size: 0.8rem; margin-top: 4px; }

/* ============================================================
   COMPLIANCE SECTION
   ============================================================ */
.compliance-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.compliance-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.compliance-icons { display: flex; justify-content: center; gap: 28px; margin-bottom: 28px; flex-wrap: wrap; }
.compliance-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.compliance-icon-item i { color: var(--gold); font-size: 1.8rem; }

/* ============================================================
   BENEFITS LIST (Scout)
   ============================================================ */
.benefits-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.benefits-list { list-style: none; padding: 0; margin: 0; }
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--black-border);
  color: var(--text-light);
  font-size: 0.95rem;
}
.benefits-list li:last-child { border-bottom: none; }
.benefits-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

/* ============================================================
   SCOUT HOW-IT-WORKS CARDS
   ============================================================ */
.scout-step-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.scout-step-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.scout-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Playfair Display', serif;
}
.scout-step-icon { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.scout-step-title { color: var(--white); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.scout-step-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ============================================================
   COMO FUNCIONA TIMELINE
   ============================================================ */
.timeline-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  width: 2px;
  height: calc(100% - 16px);
  background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.1));
}
.timeline-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}
.timeline-content { flex: 1; padding-top: 8px; }
.timeline-step-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-title { color: var(--white); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.timeline-desc { color: var(--text-muted); line-height: 1.7; font-size: 0.93rem; }

/* ============================================================
   SERVICE FEATURES LIST
   ============================================================ */
.service-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  border-top: 1px solid var(--black-border);
  padding-top: 16px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.83rem;
  padding: 5px 0;
}
.service-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   FAQ ACCORDION (dark theme)
   ============================================================ */
.accordion-dark .accordion-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  margin-bottom: 8px;
  border-radius: var(--radius) !important;
  overflow: hidden;
}
.accordion-dark .accordion-button {
  background: var(--black-card);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  padding: 18px 24px;
}
.accordion-dark .accordion-button:not(.collapsed) {
  background: #1f1f1f;
  color: var(--gold);
  box-shadow: none;
}
.accordion-dark .accordion-button::after {
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg);
}
.accordion-dark .accordion-body {
  background: #1a1a1a;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 16px 24px 20px;
}

/* ============================================================
   PLAYER / SCOUT CTA SECTION
   ============================================================ */
.dual-cta-section {
  background: linear-gradient(135deg, #0d0d00 0%, #0a0a0a 50%, #000d00 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.cta-card-gold {
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.cta-card-gold:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(201, 168, 76, 0.3); }
.cta-card-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.cta-card-outline:hover { background: rgba(201, 168, 76, 0.08); transform: translateY(-4px); }

/* ============================================================
   FOUNDER INSTAGRAM LINK
   ============================================================ */
.founder-social { border-top: 1px solid var(--black-border); padding-top: 14px; }
.founder-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.3px;
}
.founder-instagram-link i {
  font-size: 1rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.founder-instagram-link:hover { color: var(--white); }
.founder-instagram-link:hover span { text-decoration: underline; }

/* ============================================================
   INSTAGRAM SECTION (home)
   ============================================================ */
.instagram-section {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.instagram-header-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(188, 24, 136, 0.3);
}
.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.instagram-follow-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(188, 24, 136, 0.4);
  filter: brightness(1.1);
}
.instagram-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
}
.instagram-post-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1a1a, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.4rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.instagram-post-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(240,148,51,0.1), rgba(188,24,136,0.1));
  opacity: 0;
  transition: opacity 0.3s;
}
.instagram-post-placeholder:hover::before { opacity: 1; }
.instagram-post-placeholder:hover { color: #555; }
.instagram-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 16px 0 24px;
}
.instagram-stat-val {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}
.instagram-stat-lbl {
  color: var(--text-muted);
  font-size: 0.75rem;
  display: block;
  text-align: center;
}
