/* ========== MOBILE RESPONSIVO ========== */
@media (max-width: 1200px) {
  .container {
    padding: 0 0.75rem;
    max-width: 100vw;
  }
  .section-title {
    font-size: 2rem;
  }
  .liga {
    padding-top: 120px;
  }
  .liga-logo {
    width: 64px;
    height: 64px;
  }
  .min-h-screen {
    min-height: 60vh;
  }
  .gallery-grid-large {
    grid-template-columns: 1fr;
  }
  .modalidade-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .modalidade-img {
    height: 90px;
  }
  .carousel .slide img {
    height: 180px;
  }
  .board-grid {
    grid-template-columns: 1fr;
  }
  .financeiro-header, .documents-header, .estatuto-header {
    flex-direction: column;
    gap: 6px;
    padding: 10px 8px;
  }
  .card, .card_financeiro, .card_estatuto, .modalidades-section, .carousel-section, .board-section {
    margin-left: 0;
    margin-right: 0;
    border-radius: 10px;
    padding: 8px;
  }
  .intro-loja {
    margin: 30px auto;
    padding: 10px;
  }
  .banner-loja {
    height: 120px;
    font-size: 1.2rem;
  }
  .products-section {
    padding: 30px 2%;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-image {
    height: 140px;
  }
  .nav-link {
    font-size: 1rem;
    padding: 10px 0;
  }
  .hidden.md\:flex {
    display: none !important;
  }
  .mobile-menu {
    display: flex !important;
  }
}

/* Menu hambúrguer para mobile */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: 70px;
  right: 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  z-index: 100;
}
.mobile-menu a {
  color: var(--foreground);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 32px;
  height: 32px;
  z-index: 101;
}
.hamburger span {
  height: 4px;
  width: 100%;
  background: var(--primary);
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --background: hsl(0, 0%, 5%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(0, 0%, 8%);
  --primary: hsl(20, 100%, 50%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(0, 0%, 12%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --muted: hsl(0, 0%, 15%);
  --muted-foreground: hsl(0, 0%, 80%);
  --border: hsl(0, 0%, 20%);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.font-display {
  font-family: 'Bebas Neue', sans-serif;
}

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

.text-foreground {
  color: var(--foreground);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

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

.text-secondary-foreground {
  color: var(--secondary-foreground);
}

.bg-background {
  background-color: var(--background);
}

.bg-card {
  background-color: var(--card);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-muted {
  background-color: var(--muted);
}

.bg-transparent {
  background-color: transparent;
}

.border {
  border-width: 1px;
}

.border-border {
  border-color: var(--border);
}

.border-primary {
  border-color: var(--primary);
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}


.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.material-icons-sharp {
  font-size: 15.5px;
}

.nav {
  display:flex;
  gap: 30px;
}
.nav-link {
  color:white;
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition:color 0.3s ease;
}

.nav-link:hover {
  color:hsl(20, 100%, 50%);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  height: 0.125rem;
  width: 100%;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

header{
  background-color: hsl(0, 0%, 3%);
  color: white;
  width: 100%;
}

.hero-inicio-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)), url('assets/inicio.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-eventos-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)), url('assets/eventos.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.eventos-banner {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.content-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--primary) 45%, var(--border));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.content-card-media {
  position: relative;
  overflow: hidden;
  background: hsl(0, 0%, 12%);
}

.content-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.content-card-media--compact {
  height: 7.5rem;
}

.content-card-media--default {
  height: 12rem;
}

.content-card-body {
  padding: 1rem;
}

.content-card-date {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.content-card-title {
  margin-top: 0.35rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.content-card-copy {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.content-card--compact .content-card-body {
  padding: 0.9rem;
}

.content-card--compact .content-card-title {
  font-size: 1.2rem;
}

.event-calendar-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: 100%;
  padding: 1.25rem;
  background: linear-gradient(180deg, hsl(0, 0%, 8%), hsl(0, 0%, 6%));
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.event-calendar-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--primary) 45%, var(--border));
}

.event-calendar-date {
  min-width: 72px;
  padding: 0.85rem 0.6rem;
  border-radius: 0.9rem;
  background: rgba(255, 98, 0, 0.12);
  border: 1px solid rgba(255, 98, 0, 0.25);
  text-align: center;
}

.event-calendar-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
}

.event-calendar-month {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.event-calendar-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.event-calendar-copy {
  margin-top: 0.45rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-grid-large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-item-large {
  aspect-ratio: 5 / 4;
  border-radius: 1rem;
  overflow: hidden;
  background: hsl(0, 0%, 12%);
  border: 1px solid var(--border);
}

.gallery-item-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-item-large:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

@media (min-width: 768px) {
  .eventos-banner {
    min-height: 560px;
  }

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

@media (min-width: 1024px) {
  .gallery-grid-large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.transparencia-main {
  margin-top: 130px;
}

.transparencia-title {
  font-size: 2.2rem; 
  margin-bottom: 20px;;
}

.transparencia-tabs {
  display: flex;
  gap: 10px;
  background: hsl(0, 0%, 2%);
  border: 1px solid hsl(0, 0%, 1%);
  border-radius: 14px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 40px auto;
  margin-top:65px;
}

.transparencia-tabs .tab{
  background: transparent;
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s;
}

.transparencia-tabs .tab:hover {
  background: #f0f0f0;
}

.transparencia-tabs .tab.active {
  background: #ffffff;
  color: #000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.transparencia-title-wrapper h1 {
  display: inline-block !important;

  font-size: 1.8rem ;
  font-weight: 100rem !important;
  letter-spacing: 0.06em !important;

  background: transparent !important;
  color: hsl(20, 100%, 50%) !important;
  border: 2px solid hsl(20, 100%, 50%) !important;

  padding: 10px 26px !important;
  border-radius: 9999px !important;

  transform: translateY(20px);

  margin-bottom:60px;
  margin-top: 55px;
}

.documents-header {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 2px solid #000000;
  background: hsl(0, 0%, 4%);
}

.documents-header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 28px;
  margin-top: 20px;
}

.document-item {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;

  padding: 16px 20px;
  border: 2px solid #000;
  border-radius: 12px;
  background: hsl(0, 0%, 5%);

  margin-left: 12px;
  margin-right: 12px;
  margin-top: 20px;
}

.card {
  border: 2px solid #000000;
  border-radius: 20px;
  background: hsl(0, 0%, 5%);
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 12px;
  margin-right: 12px;
}

.documents-body {
  padding: 20px;
  padding-bottom: 15px;
}

.document-item:last-child {
  margin-bottom: 15px;
}

.documents-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.documents-title-icon {
  font-size: 22px;
  color: hsl(20, 100%, 50%); /* cinza escuro */
}

/* Nome dos documentos */
.document-name {
  display: flex;
  align-items: center;
  gap: 6px;
}

.document-icon {
  font-size: 18px;
  color: hsl(20, 100%, 50%);
  flex-shrink:0;
}

.document-text {
  display: flex;
  flex-direction: column;
}

.document-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-download {
  background-color: hsl(20, 100%, 50%);
  color: white;

  padding: 10px 16px;
  border-radius: 10px;

  font-size: 0.875rem;
  font-weight: 500;

  display: flex;
  align-items: center;
  gap: 6px;

  transition: background-color 0.2s ease;
}

.btn-download:hover {
  background-color: hsl(20, 90%, 45%);
}


/* Container das duas caixas */
.financeiro-header {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 2px solid #000000;
  background: hsl(0, 0%, 4%);
}

.financeiro-header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 28px;
  margin-top: 20px;
}

.financeiro-item {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;

  padding: 16px 20px;
  border: 2px solid #000;
  border-radius: 12px;
  background: hsl(0, 0%, 5%);

  margin-left: 12px;
  margin-right: 12px;
  margin-top: 20px;
}

.card_financeiro {
  border: 2px solid #000000;
  border-radius: 20px;
  background: hsl(0, 0%, 5%);
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 12px;
  margin-right: 12px;
}

.financeiro-body {
  padding: 20px;
  padding-bottom: 15px;
}

.financeiro-item:last-child {
  margin-bottom: 15px;
}

.financeiro-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.financeiro-title-icon {
  font-size: 22px;
  color: hsl(20, 100%, 50%); /* cinza escuro */
}

/* Nome dos documentos */
.financeiro-name {
  display: flex;
  align-items: center;
  gap: 6px;
}

.financeiro-icon {
  font-size: 18px;
  color: hsl(20, 100%, 50%);
  flex-shrink:0;
}

.financeiro-text {
  display: flex;
  flex-direction: column;
}

.financeiro-left {
  display: flex;
  align-items: center;
  gap: 12px;
}


.estatuto-header {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 2px solid #000000;
  background: hsl(0, 0%, 4%);
}

.estatuto-header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 28px;
  margin-top: 20px;
}

.estatuto-item {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;

  padding: 16px 20px;
  border: 2px solid #000;
  border-radius: 12px;
  background: hsl(0, 0%, 5%);

  margin-left: 12px;
  margin-right: 12px;
  margin-top: 20px;
}

.card_estatuto {
  border: 2px solid #000000;
  border-radius: 20px;
  background: hsl(0, 0%, 5%);
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 12px;
  margin-right: 12px;
}

.estatuto-body {
  padding: 20px;
  padding-bottom: 15px;
}

.estatuto-item:last-child {
  margin-bottom: 15px;
}

.estatuto-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.estatuto-title-icon {
  font-size: 22px;
  color: hsl(20, 100%, 50%); /* cinza escuro */
}

/* Nome dos documentos */
.estatuto-name {
  display: flex;
  align-items: center;
  gap: 6px;
}

.estatuto-icon {
  font-size: 18px;
  color: hsl(20, 100%, 50%);
  flex-shrink:0;
}

.estatuto-text {
  display: flex;
  flex-direction: column;
}

.estatuto-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-download {
  background-color: hsl(20, 100%, 50%);
  color: white;

  padding: 10px 16px;
  border-radius: 10px;

  font-size: 0.875rem;
  font-weight: 500;

  display: flex;
  align-items: center;
  gap: 6px;

  transition: background-color 0.2s ease;
}

.btn-download:hover {
  background-color: hsl(20, 90%, 45%);
}

/*CRIAÇÃO DE PRODUTOS */  

*{
.produtos-section{
  font-family:'Poppins', sans-serif;
}
}

.banner-loja{
  height: 300px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                    url("assets/produtos/background_produtos.png"); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  
  display: flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 768px){
  .banner-loja{
    background-attachment: scroll !important;
    width: 100% !important;
    margin-left: 0 !important;
    height: 220px;
    background-position: center;
    background-size: cover;
  }
}
}

.banner-loja h1{
  color: white;
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 3px;
}

.intro-loja{
  text-align: center;
  max-width: 900px;
  margin: 80px auto;
  padding: 20px;
}

.logo-atletica{
  width: 175px;
  margin-bottom: 30px;
}

.intro-loja h2{
  font-size: 28px;
  margin-bottom: 25px;
}

.intro-loja p{
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

body{
  background:#0b0b0b;
  color:#fff;
}

/* SECTION */
.products-section{
  padding:60px 6%;
}

.products-section h1{
  color:hsl(20, 100%, 50%);
  font-size:25px;
  letter-spacing:2px;
  margin-bottom:0px;
  margin-top: 40px;
  font-family: 'Poppins', sans-serif;
}

.products-section p{
  color:#bfbfbf;
  margin-bottom:40px;
}

/* GRID */
.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:30px;
}

/* CARD */
.product-card{
  background:#141414;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.6);
  transition:transform .3s ease;
}

.product-card:hover{
  transform:translateY(-8px);
}

/* IMAGE */
.product-image{
  background:#1d1d1d;
  height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* INFO */
.product-info{
  padding:18px;
}

.product-info h3{
  font-size:14px;
  font-weight:500;
  color:#dcdcdc;
  margin-bottom:6px;
  text-transform:uppercase;
}

.product-info span{
  color:hsl(20, 100%, 50%);
  font-size:18px;
  font-weight:700;
}


/* Layout utilities */
.fixed { position: fixed; }
.relative { position: relative; }
.absolute { position: absolute; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.inline-flex { display: inline-flex; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.flex-col { flex-direction: column; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pt-3 { padding-top: 0.75rem; }

.m-0 { margin: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-10 { margin-top: 2.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-20 { height: 5rem; }
.h-48 { height: 12rem; }
.min-h-screen { min-height: 100vh; }

.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }

.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-xs { font-size: 0.75rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-8 { bottom: 2rem; }
.left-1\/2 { left: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ring-1 {
  box-shadow: 0 0 0 1px var(--primary);
}

.inline-flex {
  display: inline-flex;
}

/* Responsive */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:block { display: block; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-end { align-items: flex-end; }
  .md\:justify-between { justify-content: space-between; }
  .md\:mt-0 { margin-top: 0; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

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

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

/* Tamanhos de ícones */
.h-1 { height: 0.25rem; }
.w-1 { width: 0.25rem; }
.h-2 { height: 0.5rem; }
.w-2 { width: 0.5rem; }
.h-3 { height: 0.75rem; }
.w-3 { width: 0.75rem; }
.h-4 { height: 1rem; }
.w-4 { width: 1rem; }


/*GESTAO*/

.board-section {
  background:  hsl(0, 0%, 5%);
  border-radius: 16px;
  padding: 15px;
  border: 2px solid #000000;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 12px;
  margin-right: 12px;
}

/*PARTE DO DIRETORIA*/
.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 28px;
  border-bottom: 2px solid #000000;
}

.section-header span.material-icons-sharp {
  font-size: 28px;
  color: #f97316; /* laranja */
}

.section-header h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.section-header p {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 2px 0 0;
}

/* Grid */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Card */
.board-card {
  background:  hsl(0, 0%, 5%);
  border-radius: 14px;
  padding: 20px;
  border: 2px solid #000000;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.board-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Avatar */
.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f97316;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 auto 12px;
}

/* Cargo */
.role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #f97316;
  margin-bottom: 6px;
}

/* Nome */
.board-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 4px 0;
}

/* Curso */
.course {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 10px;
}

/* Email */
.email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #6b7280;
}

.email span {
  font-size: 16px;
}

.history {
  margin-top: 3rem;
  padding: 2rem;
  border: 2px solid #000000;
  border-radius: 12px;
  background: hsl(0, 0%, 5%);
  font-size: 0.8rem;
}

.history-header {
  display: block;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.history-title {
  display: flex;           
  align-items: center;
  gap: 0.5rem;
}

.history-header p {
  margin: 0.25rem 0 0 0;
  font-size: 0.85rem;
  color: #777;
  margin-left: 1.4rem;
}

.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.history-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: hsl(0, 0%, 5%);
}

.history-item.active {
  background:hsl(0, 0%, 5%);
  border: 1px solid #ff8a3d;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ff8a3d;
  border-radius: 50%;
  margin-top: 0.5rem;
}

.dot-past {
  width: 8px;
  height: 8px;
  background: #555;
  border-radius: 50%;
  margin-top: 0.5rem;
}
.history-content h3 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.history-content p {
  font-size: 0.85rem;
  color: #555;
}

.badge {
  font-size: 0.7rem;
  background: #ff8a3d;
  color: white;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 0.5rem;
}

/* MODALIDADES */

.modalidades-section {
  background:  hsl(0, 0%, 5%);
  border-radius: 16px;
  padding: 15px;
  border: 2px solid #000000;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 12px;
  margin-right: 12px;
}


.modalidade-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}


.modalidade-card{
  position: relative;   
  overflow: hidden;     
  padding: 10px;  
  background:  hsl(0, 0%, 5%);
  border-radius: 14px;
  padding: 10px;
  border: 2px solid #000000;
  text-align: center;         
}



.modalidade-img{
  width: 100%;
  height: 150px;       
  object-fit: cover;
  display: block;
}

.modalidade-title{
  padding: 10px 12px 12px 12px;
  border-top: 2px solid #000;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.modalidade-overlay{
  position: absolute;
  inset: 0;
  padding: 14px;
  z-index: 2;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
  overflow: auto;
}

.modalidade-card:hover .modalidade-overlay,
.modalidade-card:focus-within .modalidade-overlay{
  opacity: 1;
  transform: translateY(0);
}

.modalidade-card:hover .modalidade-img{
  filter: brightness(0.45);
  transform: scale(1.03);
}

.overlay-title{
  margin: 0 0 10px 0;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.treinos{
  display: grid;
  gap: 10px;
}

.treino{
  border: 2px solid #000;
  border-radius: 12px;
  background: hsl(0, 0%, 5%);
  overflow: hidden;
}

.treino > summary{
  list-style: none;
  cursor: pointer;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

.treino > summary::-webkit-details-marker{
  display: none;
}

.treino-body{
  padding: 10px 12px 12px 12px;
  border-top: 2px solid #000;
  color: var(--muted-foreground);
  font-size: 0.82rem;
}
/* LIGA EINSTEIN */

.liga{
  position: relative;
  overflow: hidden;
  padding-top: 200px;
}

.liga::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/liga/fotinho.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size:cover;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.liga::after{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.10) 35%,
    var(--background) 75%,
    var(--background) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.liga > *{
  position: relative;
  z-index: 2;
}

.liga-logo{
  width: 92px;           /* tamanho do círculo */
  height: 92px;
  margin: 0 auto 14px;   /* centraliza e dá espaço abaixo */
  border-radius: 50%;
  overflow: hidden;      /* corta a imagem em círculo */
  border: 2px solid rgba(255,255,255,0.15); 
  background: rgba(0,0,0,0.25); 
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);            
}

.liga-logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* preenche o círculo sem distorcer */
  display: block;
}

/* fotos liga */

.carousel-section{
  margin-top: 40px;
  margin-bottom: 60px;
  padding: 15px;
  border: 2px solid #000;
  border-radius: 16px;
  background: hsl(0,0%,5%);
  margin-left: 12px;
  margin-right: 12px;
}

.carousel{
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.carousel-viewport{
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid #000;
  width: 100%;
  background: hsl(0,0%,4%);
}

.carousel-track{
  display: flex;
  transition: transform 320ms ease;
}


.slide{
  margin: 0;
  width: 100%;
  flex: 0 0 100%;
}

.slide img{
  width: 100%;
  height: 340px;      /* igual você já tinha */
  object-fit: cover;
  display: block;
}

.slide figcaption{
  padding: 10px 12px;
  font-size: 0.9rem;
  color: #bfbfbf;
  border-top: 2px solid #000;
  background: hsl(0,0%,4%);
}


.carousel-btn{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid #000;
  background: hsl(0,0%,8%);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.carousel-btn:hover{
  background: hsl(0,0%,12%);
}


.history-details{
  margin-top: 10px;
}

.history-toggle{
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 12px;
  border-radius: 10px;
  border: 2px solid #000;
  background: hsl(0,0%,8%);
  color: #fff;

  font-size: 0.8rem;
  font-weight: 600;
  user-select: none;
}

.history-toggle::-webkit-details-marker{
  display: none;
}

.history-toggle::after{
  content: "▾";
  font-size: 0.9rem;
  opacity: 0.9;
}

.history-details[open] .history-toggle::after{
  content: "▴";
}

/* versão compacta do grid quando aparece dentro do histórico */
.board-section--compact{
  margin: 12px 0 0 0;
  padding: 12px;
}

.board-section--compact .board-grid{
  grid-template-columns: repeat(2, 1fr); /* ou 3 se couber */
  gap: 12px;
}

@media (min-width: 900px){
  .board-section--compact .board-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}


.institu{
  position: relative;
  overflow: hidden;
  padding-top: 250px;
}

.institu::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/liga/bandeira.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size:cover;
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}

.institu::after{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.10) 35%,
    var(--background) 75%,
    var(--background) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.institu > *{
  position: relative;
  z-index: 2;
}

