/* --- HIGTECH VISUAL IDENTITY --- */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700;800&display=swap');

:root {
    --primary: #00f3ff;   /* Ciano Neon */
    --secondary: #bc13fe; /* Roxo Neon */
    --dark: #0a0e14;      /* Fundo Deep Space */
    --glass: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
}

body {
    margin: 0; padding: 0;
    background-color: var(--dark);
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
}

/* --- NAVBAR --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%;
    position: absolute; top: 0; width: 100%; box-sizing: border-box; z-index: 10;
}

.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 2px; }
.logo span { color: var(--primary); }

.nav-btn {
    border: 1px solid rgba(255,255,255,0.2); 
    padding: 8px 25px; 
    border-radius: 30px;
    color: #fff; 
    text-decoration: none; 
    font-size: 0.9rem; 
    transition: 0.3s;
    font-weight: 600;
    letter-spacing: 1px;
}
.nav-btn:hover { 
    border-color: var(--primary); 
    color: var(--dark); 
    background: var(--primary); 
    box-shadow: 0 0 15px var(--primary);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh; 
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 20px;
    background: radial-gradient(circle at center, #1a2a3a 0%, var(--dark) 70%);
    position: relative;
}

.hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1579952363873-27f3bade9f55?q=80&w=1000&auto=format&fit=crop') center/cover;
    opacity: 0.1; pointer-events: none;
}

h1 { font-size: 4.5rem; line-height: 0.9; margin: 0 0 15px 0; text-transform: uppercase; font-weight: 800; z-index: 2; }

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

p.subtitle { 
    font-size: 1.3rem; color: #ccc; margin-bottom: 60px; max-width: 700px; 
    z-index: 2; line-height: 1.5;
}

/* --- CARDS --- */
.products-container {
    display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; z-index: 2;
}

.product-card {
    background: rgba(20, 20, 20, 0.6); 
    border: 1px solid var(--glass);
    padding: 40px; 
    border-radius: 20px; 
    width: 340px;
    backdrop-filter: blur(10px); 
    transition: 0.3s;
    position: relative; overflow: hidden;
    text-align: left;
}

.product-card::before {
    content: ''; position: absolute; top:0; left:0; width: 100%; height: 4px;
    background: var(--primary);
}

.product-card:hover { transform: translateY(-10px); box-shadow: 0 0 40px rgba(0, 243, 255, 0.15); border-color: rgba(0, 243, 255, 0.3); }

/* Card PRO */
.card-pro::before { background: var(--secondary); }
.card-pro:hover { box-shadow: 0 0 40px rgba(188, 19, 254, 0.15); border-color: rgba(188, 19, 254, 0.3); }
.card-pro.locked { opacity: 0.6; cursor: default; }
.card-pro.locked::before { background: #444; }

.card-icon { font-size: 3rem; margin-bottom: 25px; display: block; }
.card-title { margin: 0 0 10px 0; font-size: 2rem; text-transform: uppercase; font-weight: 800; }
.card-desc { font-size: 1rem; color: #aaa; line-height: 1.5; margin-bottom: 30px; height: 70px; }

/* Buttons inside Cards */
.btn-action {
    display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
    padding: 15px; background: transparent; 
    border: 1px solid var(--primary);
    color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    text-decoration: none; transition: 0.3s; font-family: 'Rajdhani', sans-serif;
    border-radius: 8px;
}
.btn-action:hover { background: var(--primary); color: #000; box-shadow: 0 0 20px var(--primary); }

.btn-pro { border-color: var(--secondary); color: var(--secondary); }
.btn-pro:hover { background: var(--secondary); color: #fff; box-shadow: 0 0 20px var(--secondary); }

.btn-locked { border-color: #555; color: #555; cursor: default; }
.btn-locked:hover { background: transparent; box-shadow: none; color: #555; }

/* --- FOOTER --- */
footer { text-align: center; padding: 40px; color: #444; font-size: 0.8rem; margin-top: 0; z-index: 2; position: relative; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .nav-btn { display: none; } /* Simplifica no mobile */
    .logo { margin: 0 auto; }
    nav { justify-content: center; }
    .product-card { width: 90%; }
}

/* =========================
   CARROSSEL DO BLOCO FUTEBOL
========================= */
.futebol-carousel {
  position: relative;
  width: 100%;
  min-height: 290px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: rgba(0,0,0,0.35);
}

.futebol-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 290px;
  animation: futebolSlide 18s infinite;
}

.futebol-carousel-slide {
  min-width: 100%;
  height: 100%;
  min-height: 290px;
  position: relative;
}

.futebol-carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  display: block;
}

.futebol-carousel-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,0,0,0.78), rgba(0,0,0,0.45));
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}

.futebol-carousel-caption strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: #fff;
}

.futebol-carousel-caption span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

@keyframes futebolSlide {
  0%, 20% {
    transform: translateX(0);
  }

  25%, 45% {
    transform: translateX(-100%);
  }

  50%, 70% {
    transform: translateX(-200%);
  }

  75%, 95% {
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(0);
  }
}

.futebol-mini-shot {
  padding: 0;
  overflow: hidden;
  min-height: 230px;
  background: rgba(0,0,0,0.35);
}

.futebol-mini-shot img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
}

.futebol-mini-shot .mini-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.68);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.futebol-mini-shot .mini-label strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.futebol-mini-shot .mini-label span {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.futebol-carousel-box {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.futebol-carousel {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #061222 0%, #020712 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
}

.futebol-slide {
  display: none;
  width: 100%;
  min-height: 560px;
  padding: 22px 22px 110px;
  box-sizing: border-box;
}

.futebol-slide.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.futebol-slide img {
  width: 100%;
  height: 410px;
  max-height: 410px;
  object-fit: contain !important;
  object-position: center;
  display: block;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.25);
}

.futebol-slide-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(3, 12, 24, 0.82);
  backdrop-filter: blur(10px);
  color: #ffffff;
  text-align: left;
}

.futebol-slide-caption strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.futebol-slide-caption span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  background: rgba(0, 0, 0, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-prev {
  left: 12px;
}

.carousel-next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 85%;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
}

.carousel-dot.active {
  width: 22px;
  border-radius: 999px;
  background: #2dd4ff;
}

@media (max-width: 768px) {
  .futebol-carousel-box {
    max-width: 100%;
  }

  .futebol-carousel {
    min-height: 500px;
    border-radius: 20px;
  }

  .futebol-slide {
    min-height: 500px;
    padding: 16px 16px 105px;
  }

  .futebol-slide img {
    height: 350px;
    max-height: 350px;
  }

  .futebol-slide-caption {
    left: 16px;
    right: 16px;
    bottom: 50px;
  }
}

#modulo-futebol .module-block.module-fut {
	  position: relative;
	  overflow: hidden;
	  background:
	    linear-gradient(135deg, rgba(3, 8, 14, 0.82), rgba(3, 8, 14, 0.92)),
	    url('/img/futebol/jogador.webp');
	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
	  border-color: rgba(25, 229, 140, 0.30);
	}
	
	/* =========================
	   BLOCO VÔLEI: FUNDO + CARROSSEL
	   Imagens em:
	   src/main/resources/static/img/volei
	========================= */

	#modulo-volei .module-block.module-vol {
	  position: relative;
	  overflow: hidden;
	  background:
	    linear-gradient(135deg, rgba(3, 14, 22, 0.84), rgba(3, 8, 20, 0.92)),
	    url('/img/volei/quadra.png');
	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
	  border-color: rgba(0, 212, 255, 0.30);
	  box-shadow:
	    0 22px 70px rgba(0,0,0,0.34),
	    0 0 55px rgba(0,212,255,0.08);
	}

	#modulo-volei .module-block.module-vol::before {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background:
	    radial-gradient(circle at 16% 12%, rgba(0,212,255,0.18), transparent 26%),
	    radial-gradient(circle at 86% 74%, rgba(139,92,246,0.16), transparent 28%),
	    linear-gradient(90deg, rgba(0,0,0,0.20), rgba(0,0,0,0.12));
	  pointer-events: none;
	  z-index: 0;
	}

	#modulo-volei .module-bg,
	#modulo-volei .module-content {
	  position: relative;
	  z-index: 1;
	}

	.volei-content {
	  align-items: stretch;
	}

	.volei-text {
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	}

	.volei-gallery {
	  align-self: stretch;
	}

	.volei-carousel-box {
	  height: 420px;
	  min-height: 420px;
	  background: rgba(0,0,0,0.32);
	  border-color: rgba(0,212,255,0.24);
	  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
	}

	.volei-carousel {
	  position: relative;
	  width: 100%;
	  height: 100%;
	  min-height: 0;
	  overflow: hidden;
	  border-radius: inherit;
	  background:
	    radial-gradient(circle at center, rgba(0,212,255,0.08), transparent 48%),
	    #030712;
	}

	.volei-slide {
	  position: absolute;
	  inset: 0;
	  opacity: 0;
	  visibility: hidden;
	  transition: opacity 0.55s ease, visibility 0.55s ease;
	}

	.volei-slide.active {
	  opacity: 1;
	  visibility: visible;
	  position: absolute;
	}

	.volei-slide img {
	  position: absolute;
	  top: 12px;
	  left: 12px;
	  right: 12px;
	  width: calc(100% - 24px);
	  height: calc(100% - 132px);
	  min-height: 0;
	  object-fit: contain;
	  object-position: center;
	  display: block;
	  border-radius: 16px;
	  background: rgba(0,0,0,0.32);
	  filter: saturate(1.08) contrast(1.04);
	  z-index: 1;
	}

	.volei-slide::after {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background:
	    linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.12) 48%, rgba(0,0,0,0.78) 100%);
	  pointer-events: none;
	  z-index: 1;
	}

	.volei-slide-caption {
	  position: absolute;
	  left: 16px;
	  right: 16px;
	  bottom: 34px;
	  z-index: 2;
	  padding: 12px 14px;
	  border-radius: 16px;
	  background: rgba(0,0,0,0.58);
	  border: 1px solid rgba(255,255,255,0.12);
	  backdrop-filter: blur(10px);
	}

	.volei-slide-caption strong {
	  display: block;
	  font-size: 1.05rem;
	  margin-bottom: 4px;
	  color: #ffffff;
	}

	.volei-slide-caption span {
	  display: block;
	  color: var(--text-muted);
	  line-height: 1.35;
	  font-size: 0.84rem;
	}

	.volei-prev {
	  left: 16px;
	}

	.volei-next {
	  right: 16px;
	}

	.volei-dots {
	  position: absolute;
	  left: 12px;
	  right: 12px;
	  bottom: 10px;
	  z-index: 4;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  gap: 6px;
	  flex-wrap: wrap;
	}

	.volei-dot {
	  width: 8px;
	  height: 8px;
	  border-radius: 999px;
	  border: none;
	  cursor: pointer;
	  background: rgba(255,255,255,0.38);
	  transition: 0.25s ease;
	}

	.volei-dot.active {
	  width: 22px;
	  background: linear-gradient(90deg, var(--azul), var(--roxo));
	}

	.volei-mini-shot {
	  background:
	    linear-gradient(180deg, rgba(0,0,0,0.24), rgba(0,0,0,0.36)),
	    rgba(255,255,255,0.055);
	  border-color: rgba(0,212,255,0.18);
	}

	.volei-mini-shot img {
	  position: relative;
	  z-index: 1;
	  width: 100%;
	  height: 100%;
	  max-height: 230px;
	  object-fit: contain;
	  border-radius: 18px;
	}

	.volei-programs {
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  gap: 14px;
	  margin-top: 10px;
	  margin-bottom: 20px;
	}

	.volei-program-card {
	  padding: 18px;
	  border-radius: 20px;
	  border: 1px solid rgba(255,255,255,0.12);
	  background: rgba(0,0,0,0.28);
	  backdrop-filter: blur(10px);
	  transition: 0.25s ease;
	  overflow: hidden;
	  position: relative;
	}

	.volei-program-card::before {
	  content: "";
	  position: absolute;
	  inset: 0 0 auto 0;
	  height: 4px;
	  opacity: 0.9;
	}

	.volei-jogo-card::before {
	  background: linear-gradient(90deg, var(--azul), var(--verde));
	}

	.volei-torneio-card::before {
	  background: linear-gradient(90deg, var(--azul), var(--roxo));
	}

	.volei-program-card:hover {
	  transform: translateY(-4px);
	  background: rgba(255,255,255,0.075);
	  border-color: rgba(0,212,255,0.26);
	}

	.volei-program-card h4 {
	  font-size: 1.08rem;
	  margin-bottom: 8px;
	}

	.volei-program-card p {
	  color: var(--text-muted);
	  font-size: 0.9rem;
	  line-height: 1.55;
	  margin-bottom: 12px;
	}

	.volei-program-card ul {
	  list-style: none;
	  display: grid;
	  gap: 7px;
	  margin-bottom: 0;
	}

	.volei-program-card li {
	  color: #dce7ff;
	  font-size: 0.84rem;
	  line-height: 1.35;
	  font-weight: 700;
	}

	.volei-program-card li::before {
	  content: "✓";
	  color: var(--azul);
	  font-weight: 900;
	  margin-right: 7px;
	}

	@media (max-width: 1080px) {
	  .volei-programs {
	    grid-template-columns: 1fr;
	  }
	}

	@media (max-width: 760px) {
	  .volei-carousel-box {
	    height: 330px;
	    min-height: 330px;
	  }

	  .volei-slide img {
	    top: 10px;
	    left: 10px;
	    right: 10px;
	    width: calc(100% - 20px);
	    height: calc(100% - 118px);
	  }

	  .volei-slide-caption {
	    left: 12px;
	    right: 12px;
	    bottom: 32px;
	    padding: 10px 12px;
	  }

	  .volei-slide-caption strong {
	    font-size: 0.96rem;
	  }

	  .volei-slide-caption span {
	    font-size: 0.78rem;
	  }
	}
	
	
	/* =========================
	       RODAPÉ REESTRUTURADO (3 COLUNAS)
	    ========================= */
	    .footer-grid {
	      display: grid;
	      grid-template-columns: 1fr auto auto; /* Ativa as 3 colunas alinhadas */
	      gap: 40px;
	      align-items: center;
	    }

	    .footer-socials {
	      display: flex;
	      gap: 12px;
	      justify-content: center;
	    }

	    .footer-socials a {
	      display: inline-flex;
	      align-items: center;
	      justify-content: center;
	      width: 42px;
	      height: 42px;
	      border-radius: 50%;
	      background: rgba(255, 255, 255, 0.05);
	      color: var(--text-muted);
	      font-size: 1.2rem;
	      text-decoration: none;
	      border: 1px solid rgba(255, 255, 255, 0.1);
	      transition: all 0.3s ease;
	    }

	    .footer-socials a:hover {
	      background: var(--azul);
	      color: #060816;
	      border-color: var(--azul);
	      transform: translateY(-4px);
	      box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
	    }

	    /* Ajuste fino para o mobile não quebrar o layout */
	    @media (max-width: 760px) {
	      .footer-socials {
	        margin: 15px 0;
	        justify-content: flex-start; /* Alinha à esquerda no celular junto com o texto */
	      }
	    }
	