/* ============================================================
   CAPITAL DF — ESTILOS PRINCIPAIS
   Site Institucional Esportivo
   ============================================================ */

/* ==============================================
   1. VARIÁVEIS E RESET
   ============================================== */
:root {
  --blue-primary: #45A7DA;
  --blue-light: #79BFE8;
  --blue-dark: #091427;
  --blue-petrol: #2A3C4D;
  --white-ice: #F6FAFD;
  --black-soft: #0A0A0A;

  --blue-primary-rgb: 69, 167, 218;
  --blue-dark-rgb: 9, 20, 39;
  --blue-petrol-rgb: 42, 60, 77;

  --gradient-brand: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-light) 100%);
  --gradient-dark: linear-gradient(180deg, var(--blue-dark) 0%, #0d1f38 100%);
  --gradient-hero: linear-gradient(135deg, rgba(var(--blue-dark-rgb), .92) 0%, rgba(var(--blue-petrol-rgb), .78) 100%);

  --glass-bg: rgba(255, 255, 255, .06);
  --glass-border: rgba(255, 255, 255, .1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, .18);

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --section-py: clamp(4.5rem, 8vw, 7.5rem);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition-smooth: .35s cubic-bezier(.4, 0, .2, 1);
  --transition-bounce: .45s cubic-bezier(.34, 1.56, .64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
}

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

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

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

::selection {
  background: var(--blue-primary);
  color: #fff;
}

.text-accent {
  color: var(--blue-primary);
}

/* ==============================================
   2. TIPOGRAFIA UTILITÁRIA
   ============================================== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1rem;
}

.section-header__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: rgba(var(--blue-primary-rgb), .1);
  border: 1px solid rgba(var(--blue-primary-rgb), .2);
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header__tag--light {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2);
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .75rem;
}

.section-header__desc {
  font-size: 1.05rem;
  color: rgba(246, 250, 253, .6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==============================================
   3. BOTÕES
   ============================================== */
.btn-capital {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-capital--primary {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(var(--blue-primary-rgb), .3);
}

.btn-capital--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--blue-primary-rgb), .45);
  color: #fff;
}

.btn-capital--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}

.btn-capital--outline:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  transform: translateY(-2px);
}

.btn-capital--ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
}

.btn-capital--ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
  transform: translateY(-2px);
}

.btn-capital--text {
  background: none;
  color: var(--blue-primary);
  padding: .25rem 0;
  font-size: .85rem;
  border: none;
}

.btn-capital--text:hover {
  color: var(--blue-light);
  gap: .75rem;
}

.btn-capital--sm {
  padding: .6rem 1.25rem;
  font-size: .82rem;
}

.btn-capital--lg {
  padding: .95rem 2.25rem;
  font-size: 1rem;
}

.btn-capital--full {
  width: 100%;
  justify-content: center;
}

/* ==============================================
   4. HEADER / NAVEGAÇÃO
   ============================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-smooth);
  overflow: visible;
  /* Garante que nenhuma faixa fique transparente durante o colapso do top-bar */
  background: rgba(var(--blue-dark-rgb), .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* — Top Utility Bar — */
.top-bar {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  height: 36px;
  overflow: hidden;
  transition: height .35s ease, opacity .35s ease;
}

.top-bar__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: .1rem;
}

.top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .5px;
  color: rgba(255, 255, 255, .45);
  padding: .2rem .6rem;
  border-radius: 4px;
  transition: color var(--transition-smooth), background var(--transition-smooth);
  white-space: nowrap;
}

.top-bar__link i {
  font-size: .8rem;
  color: rgba(var(--blue-primary-rgb), .6);
}

.top-bar__link:hover {
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .05);
}

.top-bar__divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, .12);
  display: inline-block;
  margin: 0 .2rem;
}

.top-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--blue-primary);
  padding: .25rem .75rem;
  border-radius: 4px;
  border: 1px solid rgba(var(--blue-primary-rgb), .2);
  background: rgba(var(--blue-primary-rgb), .07);
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.top-bar__cta:hover {
  background: rgba(var(--blue-primary-rgb), .15);
  border-color: rgba(var(--blue-primary-rgb), .4);
  color: var(--blue-light);
}

.top-bar__cta-arrow {
  font-size: .65rem;
  transition: transform var(--transition-smooth);
}

.top-bar__cta:hover .top-bar__cta-arrow {
  transform: translateX(3px);
}

/* Top bar — oculta ao rolar */
.site-header.scrolled .top-bar {
  height: 0;
  opacity: 0;
}

/* Top bar — oculta no mobile */
@media (max-width: 767px) {
  .top-bar {
    display: none;
  }
}


.navbar-capital {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 0;
  transition: all var(--transition-smooth);
  overflow: visible;
  position: relative;
}

/* Glass shimmer line */
.navbar-capital::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--blue-primary-rgb), .4), transparent);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  position: relative;
  min-height: 68px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: .25rem;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-links--left {
  justify-content: flex-end;
  padding-right: 1.5rem;
}

.nav-links--right {
  justify-content: flex-start;
  padding-left: 1.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, .7);
  padding: .6rem .9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--blue-primary);
  border-radius: 2px;
  transition: transform var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

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

/* — Ingressos CTA no nav — */
.nav-link--cta {
  background: rgba(var(--blue-primary-rgb), .12);
  border: 1px solid rgba(var(--blue-primary-rgb), .25);
  border-radius: 6px;
  color: var(--blue-primary) !important;
  padding: .45rem .9rem !important;
}

.nav-link--cta:hover {
  background: rgba(var(--blue-primary-rgb), .22);
  border-color: var(--blue-primary);
  color: #fff !important;
}

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

/* — Login button no nav — */
.nav-link--login {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  color: rgba(255, 255, 255, .8) !important;
  padding: .45rem .9rem !important;
  font-size: .8rem !important;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition-smooth);
}

.nav-link--login:hover {
  background: rgba(var(--blue-primary-rgb), .15);
  border-color: rgba(var(--blue-primary-rgb), .4);
  color: #fff !important;
}

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

/* — Mobile login — */
.mobile-menu__login {
  display: flex !important;
  align-items: center;
  gap: .6rem;
  color: var(--blue-primary) !important;
  font-weight: 600 !important;
  background: rgba(var(--blue-primary-rgb), .08);
  border: 1px solid rgba(var(--blue-primary-rgb), .2);
  border-radius: var(--radius-sm);
}

.mobile-menu__login:hover {
  background: rgba(var(--blue-primary-rgb), .15) !important;
  border-color: rgba(var(--blue-primary-rgb), .4);
  color: var(--blue-light) !important;
}

.mobile-menu__login i {
  font-size: 1.3rem;
}

/* — Dropdown Institucional — */
.nav-item-dropdown {
  position: relative;
}

.nav-link--dropdown {
  display: flex;
  align-items: center;
  gap: .3rem;
  cursor: pointer;
}

.nav-link__chevron {
  font-size: .65rem;
  transition: transform var(--transition-smooth);
  opacity: .6;
}

.nav-item-dropdown:hover .nav-link__chevron,
.nav-item-dropdown.open .nav-link__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* padding-top cria ponte invisível entre o link e o painel */
  padding-top: 12px;
  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility .25s ease;
  z-index: 200;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__inner {
  background: rgba(9, 20, 39, .96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, .4),
    0 0 0 1px rgba(var(--blue-primary-rgb), .06);
}

/* linha luminosa no topo do dropdown */
.nav-dropdown__inner::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--blue-primary-rgb), .5), transparent);
}

.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1.25rem;
  color: rgba(255, 255, 255, .65);
  font-size: .85rem;
  transition: all var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.nav-dropdown__item:last-child {
  border-bottom: none;
}

.nav-dropdown__item:hover {
  background: rgba(var(--blue-primary-rgb), .07);
  color: #fff;
  padding-left: 1.5rem;
}

.nav-dropdown__icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(var(--blue-primary-rgb), .1);
  color: var(--blue-primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background var(--transition-smooth);
}

.nav-dropdown__item:hover .nav-dropdown__icon {
  background: rgba(var(--blue-primary-rgb), .18);
}

.nav-dropdown__item strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  margin-bottom: .1rem;
}

.nav-dropdown__item span {
  font-size: .73rem;
  color: rgba(255, 255, 255, .35);
}

/* — User avatar nav — */
#dropdownUsuario .nav-link--dropdown::after {
  display: none;
}

.nav-user-avatar {
  min-width: unset;
  height: 34px;
  padding: 0 .75rem;
  gap: .35rem;
  border-radius: 6px;
  background: rgba(var(--blue-primary-rgb), .12);
  border: 1px solid rgba(var(--blue-primary-rgb), .25);
  color: var(--blue-primary);
  font-size: .75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .5px;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
}

.nav-item-dropdown:hover .nav-user-avatar,
.nav-item-dropdown.open .nav-user-avatar {
  background: rgba(var(--blue-primary-rgb), .22);
  border-color: var(--blue-primary);
  color: #fff;
}

/* — Dropdown item danger (Sair) — */
.nav-dropdown__item--danger:hover {
  background: rgba(239, 68, 68, .08);
}

.nav-dropdown__icon--danger {
  background: rgba(239, 68, 68, .1) !important;
  color: #ef4444 !important;
}

.nav-dropdown__item--danger:hover .nav-dropdown__icon--danger {
  background: rgba(239, 68, 68, .18) !important;
}

.nav-dropdown__item--danger strong {
  color: #ef4444 !important;
}

/* — SweetAlert2 tema Capital — */
.swal-capital-popup {
  border: 1px solid rgba(255, 255, 255, .08) !important;
  border-radius: 12px !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .6) !important;
}

.swal-capital-popup .swal2-title {
  font-family: var(--font-heading) !important;
  font-size: 1.3rem !important;
  color: #fff !important;
}

.swal-capital-popup .swal2-html-container {
  color: rgba(255, 255, 255, .55) !important;
  font-size: .88rem !important;
}

.swal-capital-confirm {
  font-weight: 600 !important;
  letter-spacing: .5px !important;
  border-radius: 6px !important;
  padding: .55rem 1.4rem !important;
}

.swal-capital-cancel {
  font-weight: 600 !important;
  letter-spacing: .5px !important;
  border-radius: 6px !important;
  padding: .55rem 1.4rem !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  color: rgba(255,255,255,.7) !important;
}

.swal-capital-cancel:hover {
  background: rgba(255,255,255,.12) !important;
  color: #fff !important;
}

/* — Mobile menu extras — */
.mobile-menu__group-label {
  font-family: var(--font-heading);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(var(--blue-primary-rgb), .7);
  padding: .85rem 1rem .25rem;
  pointer-events: none;
}

.mobile-menu__sub a {
  padding-left: 1.75rem !important;
  font-size: 1rem !important;
  color: rgba(255, 255, 255, .55) !important;
}

.mobile-menu__sub a:hover {
  color: #fff !important;
  padding-left: 2rem !important;
}

.mobile-menu__separator {
  height: 1px;
  background: rgba(255, 255, 255, .07);
  margin: .5rem 0;
  pointer-events: none;
}

.mobile-menu__franchise {
  display: flex !important;
  justify-content: space-between;
  color: var(--blue-primary) !important;
  font-weight: 600 !important;
  background: rgba(var(--blue-primary-rgb), .06);
  border-radius: var(--radius-sm);
  margin-top: .25rem;
}

.mobile-menu__franchise:hover {
  background: rgba(var(--blue-primary-rgb), .12) !important;
  color: var(--blue-light) !important;
  padding-left: 1rem !important;
}

/* — Logo Central — */
.nav-brand {
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  margin: 0 .5rem;
}

.nav-brand__logo {
  height: 120px;
  width: auto;
  filter:
    drop-shadow(0 6px 24px rgba(var(--blue-primary-rgb), .45))
    drop-shadow(0 2px 8px rgba(0, 0, 0, .5));
  transition: all var(--transition-smooth);
  /* Empurra a logo para baixo — invadindo a hero section */
  transform: translateY(24px);
  position: relative;
}

/* — Header scrolled — */
.site-header.scrolled {
  background: rgba(var(--blue-dark-rgb), .97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

.site-header.scrolled .navbar-capital {
  background: transparent;
  padding: 0;
}

.site-header.scrolled .nav-brand__logo {
  height: 62px;
  transform: translateY(10px);
  filter:
    drop-shadow(0 3px 12px rgba(var(--blue-primary-rgb), .3))
    drop-shadow(0 1px 6px rgba(0, 0, 0, .4));
}

/* — Toggle Mobile — */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 1.5rem;
  z-index: 20;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.nav-toggle.open .nav-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .nav-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* — Mobile Menu — */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.open {
  visibility: visible;
  pointer-events: all;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  opacity: 0;
  transition: opacity .4s ease;
}

.mobile-menu.open .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(340px, 85vw);
  /* background sólido como fallback para browsers sem backdrop-filter */
  background: #0c1e36;
  background: color-mix(in srgb, #091427 97%, transparent);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, .08);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-menu__logo {
  height: 50px;
}

.mobile-menu__close {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.mobile-menu__close:hover {
  background: rgba(var(--blue-primary-rgb), .2);
  border-color: var(--blue-primary);
}

.mobile-menu__links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex: 1;
}

.mobile-menu__links a {
  display: block;
  padding: .85rem 1rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .7);
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
}

.mobile-menu__links a:hover {
  color: #fff;
  background: rgba(var(--blue-primary-rgb), .1);
  padding-left: 1.5rem;
}

.mobile-menu__footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.mobile-menu__socials {
  display: flex;
  gap: .75rem;
}

.mobile-menu__socials a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  transition: all var(--transition-smooth);
}

.mobile-menu__socials a:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ==============================================
   5. HERO SECTION
   ============================================== */
.hero {
  position: relative;
  /* Header fixo: top-bar 36px + nav 68px = 104px (desktop). Em mobile, top-bar oculto. */
  margin-top: var(--header-h, 104px);
  height: calc(100dvh - var(--header-h, 104px));
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Hero Slider ─────────────────────────────── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero-slide.active .hero-slide__bg {
  transform: scale(1);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    107deg,
    rgba(9, 20, 39, .88) 0%,
    rgba(9, 20, 39, .65) 55%,
    rgba(9, 20, 39, .45) 100%
  );
}

/* Gradiente decorativo sobre o slider */
.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(var(--blue-primary-rgb), .12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(var(--blue-primary-rgb), .08) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Hero Text Track — CSS Grid Stacking ────── */
/* Todos os slides ocupam a mesma célula da grid;
   a célula tem a altura do slide mais alto.
   Nenhum positon:absolute → a coluna tem altura real. */
.hero-text-track {
  display: grid;
}

.hero-text {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
  pointer-events: none;
}

.hero-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Hero Entrance Keyframes ──────────────── */
@keyframes hFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hFadeLeft {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes hFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Filhos do slide ativo entram escalonados */
.hero-text.active .hero__badge {
  animation: hFadeUp .55s cubic-bezier(.22, 1, .36, 1) .18s both;
}

.hero-text.active .hero__title {
  animation: hFadeUp .65s cubic-bezier(.22, 1, .36, 1) .34s both;
}

.hero-text.active .hero__subtitle {
  animation: hFadeUp .60s cubic-bezier(.22, 1, .36, 1) .52s both;
}

.hero-text.active .hero__actions {
  animation: hFadeUp .60s cubic-bezier(.22, 1, .36, 1) .68s both;
}

/* Card e controls entram uma única vez no carregamento */
.hero-match-card {
  animation: hFadeLeft .80s cubic-bezier(.22, 1, .36, 1) .55s both;
}

.hero-controls {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  z-index: 5;
  animation: hFadeUp .60s ease .85s both;
}

.hero-controls__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .25s, border-color .25s, transform .2s;
  flex-shrink: 0;
}

.hero-controls__arrow:hover {
  background: rgba(var(--blue-primary-rgb), .3);
  border-color: rgba(var(--blue-primary-rgb), .6);
  transform: scale(1.08);
}

.hero-controls__dots {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.hero-controls__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s, width .3s;
}

.hero-controls__dot.active {
  background: var(--blue-primary);
  width: 26px;
  border-radius: 4px;
}

/* Decorative line */
.hero::before {
  content: '';
  position: absolute;
  right: 10%;
  top: 15%;
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(var(--blue-primary-rgb), .3), transparent);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 6rem; /* espaço para os controles (dots + setas) */
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(var(--blue-primary-rgb), .12);
  border: 1px solid rgba(var(--blue-primary-rgb), .25);
  color: var(--blue-primary);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, .7);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* — Match Card — */
.hero-match-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

/* Shimmer edge */
.hero-match-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--blue-primary-rgb), .5), transparent);
}

.hero-match-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-match-card__badge {
  background: rgba(var(--blue-primary-rgb), .15);
  color: var(--blue-primary);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: .3rem .75rem;
  border-radius: 50px;
  border: 1px solid rgba(var(--blue-primary-rgb), .25);
}

.hero-match-card__competition {
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-match-card__body {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 1.5rem;
}

.hero-match-card__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
}

.hero-match-card__team:last-child {
  font-size: .6rem;
}

.hero-match-card__shield {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.hero-match-card__shield-placeholder {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, .3);
}

.hero-match-card__versus {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-primary);
  letter-spacing: 3px;
}

.hero-match-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.hero-match-card__info {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
}

.hero-match-card__info i {
  color: var(--blue-primary);
  font-size: .85rem;
}

.hero-match-card__cta {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  z-index: 3;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue-primary), transparent);
  animation: scrollPulse 2s ease infinite;
}

.hero__scroll-indicator span {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .35);
}

@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}


/* ==============================================
   5.1 SEÇÃO TV CAPITAL SAF
   ============================================== */
.section-tv-capital {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7.5rem) 0;
  background: linear-gradient(180deg, var(--blue-dark) 0%, #0c1c33 48%, var(--blue-dark) 100%);
}

.section-tv-capital::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--blue-primary-rgb), .28), transparent);
  pointer-events: none;
}

.section-tv-capital::after {
  content: none;
  position: absolute;
  right: -1.5rem;
  bottom: -1.2rem;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .025);
  pointer-events: none;
  white-space: nowrap;
}

.tv-capital-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.tv-capital-card__content,
.tv-capital-card__visual {
  position: relative;
  z-index: 1;
}

.tv-capital-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--blue-primary);
  background: rgba(var(--blue-primary-rgb), .1);
  border: 1px solid rgba(var(--blue-primary-rgb), .24);
  border-radius: 999px;
  padding: .4rem .9rem;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 1.15rem;
}

.tv-capital-card__title {
  max-width: 560px;
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .96;
  letter-spacing: .02em;
  margin-bottom: 1rem;
  color: #fff;
}

.tv-capital-card__title span {
  color: var(--blue-primary);
  text-shadow: 0 0 30px rgba(var(--blue-primary-rgb), .28);
}

.tv-capital-card__text {
  max-width: 560px;
  color: rgba(255,255,255,.68);
  font-size: clamp(.98rem, 1.3vw, 1.12rem);
  line-height: 1.75;
  margin-bottom: 1.35rem;
}

.tv-capital-card__features {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.tv-capital-card__features span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .48rem .78rem;
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.075);
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 700;
}

.tv-capital-card__features i {
  color: var(--blue-primary);
}

.tv-capital-card__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tv-capital-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 54px;
  padding: .85rem 1.45rem;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #ff1f1f, #bf1111);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 18px 34px rgba(255, 31, 31, .22);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), filter var(--transition-smooth);
}

.tv-capital-card__btn:hover {
  color: #fff;
  transform: translateY(-4px);
  filter: saturate(1.08);
  box-shadow: 0 24px 48px rgba(255, 31, 31, .32);
}

.tv-capital-card__btn i {
  font-size: 1.25rem;
}

.tv-capital-card__support {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.48);
  font-size: .82rem;
  font-weight: 700;
}

.tv-capital-card__support i {
  color: var(--blue-primary);
}

.tv-capital-card__visual {
  perspective: 1100px;
}

.tv-capital-card__screen {
  position: relative;
  display: block;
  min-height: 310px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 26px;
  clip-path: inset(0 round 26px);
  isolation: isolate;
  backface-visibility: hidden;
  background: #081427;
  border: 1px solid rgba(var(--blue-primary-rgb), .35);
  box-shadow: 0 30px 75px rgba(0,0,0,38);
  transform: rotateY(-7deg) rotateZ(1deg);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.tv-capital-card__screen::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(9,20,39,52), transparent 42%, rgba(9,20,39,22)),
    linear-gradient(180deg, transparent 45%, rgba(9,20,39,76));
  pointer-events: none;
}

.tv-capital-card__screen::after {
  content: 'ABRIR CANAL';
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  z-index: 3;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .16em;
  color: rgba(255,255,255,.72);
  background: rgba(9,20,39,.64);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .35rem .65rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tv-capital-card__screen:hover {
  transform: rotateY(-3deg) rotateZ(0deg) translateY(-6px);
  border-color: rgba(var(--blue-primary-rgb), .35);
  box-shadow: 0 38px 92px rgba(0,0,0,.48);
}

.tv-capital-card__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform .2s ease;
}

.tv-capital-card__screen:hover img {
  transform: scale(1.06);
}

.tv-capital-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  width: clamp(66px, 7vw, 88px);
  height: clamp(66px, 7vw, 88px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 24, 24, .94);
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3rem);
  box-shadow:
    0 18px 42px rgba(255, 24, 24, .34),
    0 0 0 12px rgba(255,255,255,.13);
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
}

.tv-capital-card__play i {
  margin-left: .08em;
}

.tv-capital-card__screen:hover .tv-capital-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 24px 54px rgba(255, 24, 24, .44),
    0 0 0 16px rgba(255,255,255,.16);
}

.tv-capital-card__live-badge {
  position: absolute;
  left: 1.3rem;
  bottom: 1.25rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .48rem .85rem;
  border-radius: 999px;
  background: rgba(9,20,39,.72);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tv-capital-card__live-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff2020;
  box-shadow: 0 0 0 6px rgba(255, 32, 32, .16);
}

@media (max-width: 991px) {
  .tv-capital-card {
    grid-template-columns: 1fr;
  }

  .tv-capital-card__content {
    text-align: center;
  }

  .tv-capital-card__features,
  .tv-capital-card__actions {
    justify-content: center;
  }

  .tv-capital-card__screen {
    width: min(100%, 760px);
    margin: 0 auto;
    transform: none;
  }

  .tv-capital-card__screen:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 575px) {
  .section-tv-capital {
    padding: 4rem 0;
  }

  .tv-capital-card__screen {
    min-height: 220px;
    border-radius: 20px;
    clip-path: inset(0 round 20px);
  }

  .tv-capital-card__actions {
    align-items: stretch;
  }

  .tv-capital-card__btn {
    width: 100%;
  }

  .tv-capital-card__support {
    width: 100%;
    justify-content: center;
  }
}

/* ==============================================
   6. SEÇÃO EVENTOS
   ============================================== */
.section-events {
  padding: var(--section-py) 0 3rem;
  background: var(--blue-dark);
  position: relative;
}

/* Subtle gradient accent */
.section-events::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--blue-primary-rgb), .2), transparent);
}

.event-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--blue-primary-rgb), .2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25), 0 0 0 1px rgba(var(--blue-primary-rgb), .08);
}

.event-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.event-card:hover .event-card__image img {
  transform: scale(1.06);
}

.event-card__status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .3rem .7rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.event-card__status--live {
  background: rgba(69, 167, 218, .2);
  color: var(--blue-primary);
  border: 1px solid rgba(var(--blue-primary-rgb), .3);
}

.event-card__status--soon {
  background: rgba(255, 193, 7, .15);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, .3);
}

.event-card__status--closed {
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .4);
  border: 1px solid rgba(255, 255, 255, .12);
}

.event-card__status--away {
  background: rgba(108, 117, 125, .2);
  color: #adb5bd;
  border: 1px solid rgba(108, 117, 125, .3);
}

.event-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 1rem;
}

.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.event-card__meta-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}

.event-card__meta-item i {
  color: var(--blue-primary);
  font-size: .9rem;
  width: 18px;
  text-align: center;
}

/* Matchup com escudos nos cards de evento — flutuando no banner */
.event-card {
  position: relative;
}

.event-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 12, 27, .05) 0%, rgba(3, 12, 27, .25) 48%, rgba(3, 12, 27, .72) 100%),
    radial-gradient(circle at center, rgba(var(--blue-primary-rgb), .13), transparent 58%);
  pointer-events: none;
}

.event-card__status {
  z-index: 5;
}

.event-card__matchup {
  position: absolute;
  top: 100px;
  left: 50%;
  z-index: 6;
  width: min(calc(100% - 2.4rem), 260px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: .85rem;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
  overflow: visible;
}

.event-card__matchup-team {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-align: center;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .55px;
  color: rgba(255, 255, 255, .92);
  line-height: 1.05;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .85);
}

.event-card__matchup-team span {
  max-width: 82px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.event-card__matchup-shield,
.event-card__matchup-shield-ph {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  object-fit: contain;
  filter:
    drop-shadow(0 10px 14px rgba(0, 0, 0, .72))
    drop-shadow(0 0 10px rgba(var(--blue-primary-rgb), .22));
  transition: transform .35s ease, filter .35s ease;
}

.event-card:hover .event-card__matchup-shield,
.event-card:hover .event-card__matchup-shield-ph {
  transform: translateY(-3px) scale(1.06);
  filter:
    drop-shadow(0 14px 18px rgba(0, 0, 0, .78))
    drop-shadow(0 0 14px rgba(var(--blue-primary-rgb), .32));
}

.event-card__matchup-shield-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: rgba(255, 255, 255, .75);
}

.event-card__matchup-vs {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1.4px;
  background: rgba(var(--blue-primary-rgb), .78);
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, .42),
    0 0 18px rgba(var(--blue-primary-rgb), .26),
    inset 0 1px 0 rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 575px) {
  .event-card__image {
    height: 190px;
  }

  .event-card__matchup {
    top: 95px;
    width: calc(100% - 2.4rem);
    max-width: 245px;
    gap: .55rem;
  }

  .event-card__matchup-team {
    gap: .25rem;
    font-size: .52rem;
    letter-spacing: .4px;
  }

  .event-card__matchup-team span {
    max-width: 70px;
    -webkit-line-clamp: 1;
  }

  .event-card__matchup-shield,
  .event-card__matchup-shield-ph {
    width: 42px;
    height: 42px;
  }

  .event-card__matchup-vs {
    width: 30px;
    height: 30px;
    font-size: .56rem;
    letter-spacing: 1px;
  }
}

/* Matchup com escudos no hero carousel */
.hero__matchup {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero__matchup-team {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.hero__matchup-shield {
  width: clamp(40px, 6vw, 64px);
  height: clamp(40px, 6vw, 64px);
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .4));
}

/* ==============================================
   7. SEÇÃO NOTÍCIAS
   ============================================== */
.section-news {
  padding: 3rem 0 var(--section-py);
  background: linear-gradient(180deg, var(--blue-dark) 0%, #0c1c33 100%);
  position: relative;
}

/* Featured card */
.news-card--featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.news-card--featured:hover {
  border-color: rgba(var(--blue-primary-rgb), .15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .2);
}

.news-card--featured .news-card__image {
  height: 280px;
  overflow: hidden;
}

.news-card--featured .news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.news-card--featured:hover .news-card__image img {
  transform: scale(1.04);
}

.news-card--featured .news-card__content {
  padding: 1.75rem;
  flex: 1;
}

.news-card__tags {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.news-card__category {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-primary);
  background: rgba(var(--blue-primary-rgb), .1);
  padding: .25rem .6rem;
  border-radius: 4px;
}

.news-card__date {
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.news-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .75rem;
  line-height: 1.3;
}

.news-card__excerpt {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Compact / stacked cards */
.news-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.news-card--compact {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  flex: 1;
}

.news-card--compact:hover {
  border-color: rgba(var(--blue-primary-rgb), .15);
  transform: translateX(4px);
}

.news-card--compact .news-card__image {
  width: 120px;
  min-height: 120px;
  flex-shrink: 0;
  overflow: hidden;
}

.news-card--compact .news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.news-card--compact:hover .news-card__image img {
  transform: scale(1.08);
}

.news-card--compact .news-card__content {
  padding: 1rem .75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-card--compact .news-card__title {
  font-size: .95rem;
  margin-bottom: .5rem;
}

/* Links em cards de notícia */
.news-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-card-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Placeholder cards — "Em breve" */
.news-card--placeholder {
  pointer-events: none;
  border-style: dashed !important;
  border-color: rgba(0,180,216,.12) !important;
  background: rgba(0,180,216,.02) !important;
}
.news-card--featured.news-card--placeholder .news-card__image {
  min-height: 320px;
}

/* ==============================================
   8. SEÇÃO SOBRE
   ============================================== */
.section-about {
  padding: var(--section-py) 0;
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
}

/* Decorative radial glow */
.section-about::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--blue-primary-rgb), .06) 0%, transparent 70%);
  pointer-events: none;
}

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-visual__main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-visual__main::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-visual__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.about-visual__accent {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.about-visual__img--small {
  height: 160px;
}

.about-visual__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(var(--blue-primary-rgb), .12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(var(--blue-primary-rgb), .2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.about-visual__year {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1;
}

.about-visual__label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .5);
  margin-top: .25rem;
}

.about-text__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin: .75rem 0 1.25rem;
}

.about-text__lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-text__body {
  font-size: .92rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-stats__item {
  display: flex;
  flex-direction: column;
}

.about-stats__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1.1;
}

.about-stats__label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: .15rem;
}

/* ==============================================
   9. SEÇÃO ELENCO
   ============================================== */
.section-squad {
  padding: var(--section-py) 0 3rem;
  background: linear-gradient(180deg, #0c1c33 0%, var(--blue-dark) 100%);
}

/* --- Filtro de posições --- */
.squad-filter {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0 2.5rem;
}

.squad-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-heading);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s, transform .2s;
  white-space: nowrap;
}

.squad-filter__btn:hover {
  background: rgba(var(--blue-primary-rgb), .12);
  border-color: rgba(var(--blue-primary-rgb), .4);
  color: var(--blue-primary);
  transform: translateY(-2px);
}

.squad-filter__btn.active {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--blue-primary-rgb), .35);
}

.squad-filter__count {
  font-size: .65rem;
  background: rgba(255, 255, 255, .18);
  border-radius: 50px;
  padding: .08rem .42rem;
  line-height: 1.6;
}

.squad-filter__btn.active .squad-filter__count {
  background: rgba(255, 255, 255, .28);
}

/* --- Grid de jogadores --- */
.squad-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .8rem;
}

/* --- Cartão de jogador (imagem auto-contida com design embutido) --- */
.player-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease;
  cursor: pointer;
}

.player-card.player-hidden {
  display: none;
}

.player-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(var(--blue-primary-rgb), .22),
              0 0 0 1px rgba(var(--blue-primary-rgb), .28);
}

.player-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}

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

/* --- Slider wrapper --- */
.squad-slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.squad-slider__viewport {
  flex: 1;
  overflow: hidden;
}

.squad-slider__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s, transform .2s;
}

.squad-slider__arrow:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #fff;
  transform: scale(1.1);
}

.squad-slider__arrow:disabled {
  opacity: .25;
  pointer-events: none;
}

/* --- Footer: dots + contador --- */
.squad-slider__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: .25rem;
}

.squad-slider__dots {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.squad-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .2);
  padding: 0;
  cursor: pointer;
  transition: background .3s, width .3s, border-radius .3s;
}

.squad-dot.active {
  background: var(--blue-primary);
  width: 26px;
  border-radius: 4px;
}

.squad-slider__counter {
  font-family: var(--font-heading);
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  min-width: 44px;
  text-align: center;
}

/* --- Animações de entrada dos cards --- */
@keyframes squadFromRight {
  from { opacity: 0; transform: translateX(35px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes squadFromLeft {
  from { opacity: 0; transform: translateX(-35px); }
  to   { opacity: 1; transform: translateX(0); }
}

.player-card.squad-enter-right {
  animation: squadFromRight .42s cubic-bezier(.25, .46, .45, .94) both;
}

.player-card.squad-enter-left {
  animation: squadFromLeft .42s cubic-bezier(.25, .46, .45, .94) both;
}

/* ==============================================
   10. SEÇÃO GALERIA
   ============================================== */
.section-gallery {
  padding: 3rem 0 var(--section-py);
  background: var(--blue-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-grid__item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  min-height: 200px;
  cursor: pointer;
}

.gallery-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-grid__overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--blue-dark-rgb), .55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  opacity: 0;
  transition: opacity var(--transition-smooth);
  backdrop-filter: blur(2px);
}

.gallery-grid__overlay i {
  font-size: 2rem;
  color: #fff;
}

.gallery-grid__overlay span {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .8);
}

.gallery-grid__media:hover img {
  transform: scale(1.06);
}

.gallery-grid__media:hover .gallery-grid__overlay {
  opacity: 1;
}

.gallery-grid__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .75rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 60%, transparent 100%);
  transform: translateY(100%);
  transition: transform .4s ease, opacity .4s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.gallery-grid__caption span {
  font-size: .8rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .02em;
}

.gallery-grid__media:hover .gallery-grid__caption {
  transform: translateY(0);
  opacity: 1;
}

/* ==============================================
   11. SEÇÃO INGRESSOS / CTA
   ============================================== */
.section-tickets {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.section-tickets__bg {
  position: absolute;
  inset: 0;
  background: url('../img/estadio.webp') center/cover no-repeat;
  z-index: 0;
}

.section-tickets__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(var(--blue-dark-rgb), .88) 0%,
      rgba(var(--blue-primary-rgb), .45) 55%,
      rgba(var(--blue-dark-rgb), .92) 100%);
}

.section-tickets__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 1px;
  margin: .75rem 0 1rem;
}

.section-tickets__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .65);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.section-tickets__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================================
   12. SEÇÃO PARCEIROS
   ============================================== */
.section-partners {
  padding: var(--section-py) 0;
  background: var(--blue-dark);
  overflow: hidden;
}

.partners-master-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.35rem;
}

.partners-master-logo img {
  width: min(820px, 98vw);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.partners-group {
  margin-top: 3rem;
}

.partners-group__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: .7rem;
  letter-spacing: .12em;
  font-weight: 600;
  color: rgba(255, 255, 255, .35);
}

.partners-group__divider::before,
.partners-group__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
}

/* ── Grid de logos ── */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 4rem;
  align-items: center;
}

.partners-grid--featured {
  gap: 3.5rem 5rem;
}

/* ── Logo base (sem card) ── */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: transform .35s ease;
}

.partner-logo img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
  transition: transform .35s ease, filter .35s ease;
}

.partner-logo:hover {
  transform: translateY(-4px);
}

.partner-logo:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 18px rgba(var(--blue-primary-rgb), .35));
}

/* ── Patrocinadores (featured) ── */
.partner-logo--featured img {
  max-height: 90px;
}

/* ── Placeholder vazio ── */
.partner-logo--invite {
  flex-direction: column;
  gap: .4rem;
  color: rgba(255, 255, 255, .22);
  font-size: .78rem;
  font-weight: 500;
  text-decoration: none;
  padding: 1.2rem 2rem;
  border: 1px dashed rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  transition: all .35s ease;
}

.partner-logo--invite i {
  font-size: 1.4rem;
}

.partner-logo--invite:hover {
  color: var(--blue-primary);
  border-color: rgba(var(--blue-primary-rgb), .35);
  transform: translateY(-4px);
}

/* ==============================================
   13. SEÇÃO CONTATO
   ============================================== */
.section-contact {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--blue-dark) 0%, #0c1c33 100%);
  position: relative;
}

.section-contact__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin: .75rem 0 1.25rem;
}

.section-contact__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}

.contact-channel:hover {
  background: rgba(var(--blue-primary-rgb), .06);
  border-color: rgba(var(--blue-primary-rgb), .15);
  transform: translateX(6px);
  color: inherit;
}

.contact-channel__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(37, 211, 102, .12);
  color: #25d366;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-channel__icon--ig {
  background: rgba(225, 48, 108, .12);
  color: #e1306c;
}

.contact-channel__icon--yt {
  background: rgba(255, 0, 0, .1);
  color: #ff0000;
}

.contact-channel__info {
  flex: 1;
}

.contact-channel__info strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
}

.contact-channel__info span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}

.contact-channel > i:last-child {
  color: rgba(255, 255, 255, .2);
  transition: color var(--transition-smooth);
}

.contact-channel:hover > i:last-child {
  color: var(--blue-primary);
}

/* Newsletter Card */
.newsletter-card {
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--blue-primary-rgb), .4), transparent);
}

.newsletter-card__icon {
  font-size: 2.5rem;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

.newsletter-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .5rem;
}

.newsletter-card__text {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.newsletter-card__input-group {
  display: flex;
  gap: .5rem;
}

.newsletter-card__input {
  flex: 1;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  padding: .75rem 1.1rem;
  color: #fff;
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition-smooth);
}

.newsletter-card__input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.newsletter-card__input:focus {
  border-color: var(--blue-primary);
}

.newsletter-card__disclaimer {
  display: block;
  margin-top: .75rem;
  font-size: .72rem;
  color: rgba(255, 255, 255, .3);
}

/* ==============================================
   14. FOOTER
   ============================================== */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(255, 255, 255, .05);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--blue-primary-rgb), .25), transparent);
}

.footer-top {
  padding: 4rem 0 3rem;
}

.footer-brand__logo {
  height: 60px;
  margin-bottom: 1.25rem;
}

.footer-brand__text {
  font-size: .88rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: .6rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
  transition: all var(--transition-smooth);
}

.footer-socials a:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white-ice);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-links a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
  transition: all var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--blue-primary);
  padding-left: .3rem;
}

.footer-contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
}

.footer-contact li i {
  color: var(--blue-primary);
  font-size: .95rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
  margin: 0;
}

.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom__links a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom__links a:hover {
  color: var(--blue-primary);
}

.footer-seal {
  height: 56px;
  width: auto;
  opacity: .55;
  filter: brightness(0) invert(1);
  transition: opacity .3s ease;
}

.footer-seal:hover {
  opacity: .85;
}

/* ==============================================
   15. BACK TO TOP
   ============================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--blue-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
  z-index: 90;
  box-shadow: 0 4px 20px rgba(var(--blue-primary-rgb), .35);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(var(--blue-primary-rgb), .5);
}

/* ==============================================
   16. RESPONSIVO
   ============================================== */

/* — Large Desktop — */
@media (max-width: 1400px) {
  .squad-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  .nav-link {
    font-size: .75rem;
    padding: .5rem .65rem;
  }
}

/* — Tablet — */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-container {
    justify-content: space-between;
  }

  .nav-brand {
    margin: 0;
  }

  .nav-brand__logo {
    height: 95px;
    transform: translateY(36px);
  }

  .site-header.scrolled .nav-brand__logo {
    height: 54px;
    transform: translateY(14px);
  }

  .hero__content {
    padding-top: 5rem;
  }

  .hero__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }

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

  .gallery-grid__item--wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-grid__media {
    min-height: 180px;
  }

  .squad-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* — Mobile — */
@media (max-width: 767px) {
  .hero {
    /* Mobile: apenas o nav (68px), top-bar oculto */
    --header-h: 68px;
    min-height: calc(100svh - 68px);
    height: calc(100svh - 68px);
  }

  .hero__badge {
    font-size: .7rem;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__subtitle {
    font-size: .95rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn-capital {
    justify-content: center;
  }

  .hero__scroll-indicator {
    display: none;
  }

  /* Slideshow mobile */
  .hero-controls {
    bottom: 1.5rem;
  }

  .hero-controls__arrow {
    width: 34px;
    height: 34px;
    font-size: .85rem;
  }

  .section-header__title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .section-header__desc {
    font-size: .92rem;
  }

  /* News */
  .news-card--featured .news-card__image {
    height: 200px;
  }

  .news-stack {
    height: auto;
  }

  .news-card--compact {
    flex-direction: row;
    flex: none;
  }

  .news-card--compact .news-card__image {
    width: 110px;
    min-height: 110px;
    flex-shrink: 0;
  }

  /* About */
  .about-visual__img {
    height: 220px;
  }

  .about-visual__img--small {
    height: 130px;
  }

  .about-stats {
    gap: 1.5rem;
  }

  .about-stats__number {
    font-size: 1.5rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid__item--wide {
    grid-column: span 1;
  }

  .gallery-grid__media {
    min-height: 200px;
  }

  /* Tickets */
  .section-tickets__title {
    font-size: clamp(1.7rem, 6vw, 2.5rem);
  }

  /* Contact */
  .newsletter-card {
    padding: 1.75rem;
  }

  .newsletter-card__input-group {
    flex-direction: column;
  }

  /* Footer */
  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
  }

  /* Elenco */
  .squad-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .55rem;
  }

  .squad-filter__btn {
    font-size: .65rem;
    padding: .45rem .9rem;
  }
}

/* — Small Mobile — */
@media (max-width: 480px) {
  .nav-brand__logo {
    height: 80px;
    transform: translateY(28px);
  }

  .site-header.scrolled .nav-brand__logo {
    height: 46px;
    transform: translateY(10px);
  }

  .partners-grid {
    gap: 2rem 2.5rem;
  }

  .partners-grid--featured {
    gap: 2rem 3rem;
  }

  .partner-logo img {
    max-height: 48px;
  }

  .partner-logo--featured img {
    max-height: 68px;
  }
}

/* ==============================================
   LIGHTBOX DA GALERIA
   ============================================== */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 11, 22, 0);
  backdrop-filter: blur(0px);
  transition: background .35s ease, backdrop-filter .35s ease;
  pointer-events: none;
}

.lb-overlay.lb-open {
  background: rgba(5, 11, 22, .9);
  backdrop-filter: blur(12px);
  pointer-events: all;
}

.lb-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(92vw, 1100px);
  max-height: 90dvh;
  transform: scale(.88);
  opacity: 0;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
}

.lb-overlay.lb-open .lb-box {
  transform: scale(1);
  opacity: 1;
}

.lb-box img {
  display: block;
  max-width: 100%;
  max-height: calc(90dvh - 60px);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .7);
}

.lb-caption {
  margin-top: .75rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .04em;
  text-align: center;
  max-width: 600px;
  line-height: 1.5;
}

.lb-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .75);
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
  z-index: 9001;
  backdrop-filter: blur(6px);
}

.lb-overlay.lb-open .lb-close {
  display: flex;
}

.lb-close:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
}

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .7);
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  z-index: 9001;
  backdrop-filter: blur(6px);
}

.lb-overlay.lb-open .lb-nav {
  display: flex;
}

.lb-nav:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
}

.lb-nav--prev { left: 1.25rem; }
.lb-nav--next { right: 1.25rem; }

.lb-nav--prev:hover  { transform: translateY(-50%) translateX(-2px); }
.lb-nav--next:hover  { transform: translateY(-50%) translateX(2px); }

.lb-counter {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .72rem;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* cursor nas thumbs */
[data-lightbox] { cursor: zoom-in; }

/* ==============================================
   MODAL DE LOGIN (site-wide)
   ============================================== */
.site-login-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.site-login-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.site-login-modal {
  background: linear-gradient(170deg, #0f2a4a 0%, #0a1e38 50%, #081a30 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  position: relative;
  font-size: 1rem;
  transform: translateY(20px) scale(.97);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04) inset;
}

.site-login-modal-overlay.active .site-login-modal {
  transform: translateY(0) scale(1);
}

.site-login-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  z-index: 2;
}

.site-login-modal__close:hover {
  background: rgba(239,68,68,.12);
  border-color: rgba(239,68,68,.3);
  color: #ef4444;
}

.site-login-modal__header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.site-login-modal__logo {
  width: 56px;
  margin-bottom: 1rem;
}

.site-login-modal__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .4rem;
}

.site-login-modal__subtitle {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}

.site-login-modal__tabs {
  display: flex;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 1.5rem;
}

.site-login-modal__tab {
  flex: 1;
  padding: .6rem;
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  border: none;
  background: transparent;
  border-radius: calc(var(--radius-sm) - 2px);
  cursor: pointer;
  transition: all var(--transition-smooth);
  font-family: var(--font-body);
}

.site-login-modal__tab:hover {
  color: rgba(255,255,255,.7);
}

.site-login-modal__tab.active {
  background: var(--blue-primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(var(--blue-primary-rgb), .35);
}

.site-login-modal__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.site-login-modal__divider::before,
.site-login-modal__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
}

.site-login-modal__divider span {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
}

.site-login-modal__social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: all var(--transition-smooth);
  font-family: var(--font-body);
}

.site-login-modal__social-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}

.site-login-modal::-webkit-scrollbar {
  display: none;
}

/* Form floating dentro do modal */
.site-login-modal .form-floating-capital {
  position: relative;
  margin-bottom: 1rem;
}

.site-login-modal .form-floating-capital input {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 1rem 1rem .5rem;
  font-size: .88rem;
  color: #fff;
  font-family: var(--font-body);
  transition: all var(--transition-smooth);
}

.site-login-modal .form-floating-capital input:focus {
  outline: none;
  border-color: var(--blue-primary);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(var(--blue-primary-rgb), .12);
}

.site-login-modal .form-floating-capital label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  pointer-events: none;
  transition: all .2s ease;
}

.site-login-modal .form-floating-capital input:focus ~ label,
.site-login-modal .form-floating-capital input:not(:placeholder-shown) ~ label {
  top: .5rem;
  transform: translateY(0);
  font-size: .68rem;
  color: var(--blue-primary);
  letter-spacing: .5px;
}

@media (max-width: 575px) {
  .site-login-modal {
    padding: 1.75rem;
    max-height: 95vh;
  }

  .site-login-modal__title {
    font-size: 1.25rem;
  }
}

/* ============================================================
   AJUSTE MOBILE — TV CAPITAL SAF
   Corrige o espaçamento lateral da seção no mobile
   ============================================================ */
@media (max-width: 575px) {
  .section-tv-capital > .container {
    width: 100%;
    max-width: 100%;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .section-tv-capital .tv-capital-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-inline: auto;
  }

  .section-tv-capital .tv-capital-card__content,
  .section-tv-capital .tv-capital-card__visual,
  .section-tv-capital .tv-capital-card__screen {
    min-width: 0;
    max-width: 100%;
  }

  .section-tv-capital .tv-capital-card__screen {
    width: 100%;
  }
}

