/* Tipografía y base */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #e0f2f1, #ffffff);
  margin: 0;
  padding-top: 90px;
  color: #333;
  line-height: 1.8;
}

/* Imagen de fondo decorativa */
.jaguar-fijo {
  position: fixed;
  z-index: -1;
  opacity: 0.03;
  top: 60px;
  left: 0;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Navbar */
#mainNavbar {
  transition: background-color 0.4s ease;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
}

#mainNavbar .navbar-brand span {
  color: #006341;
  font-weight: 600;
  font-size: 1.3rem;
}

/* Sección de título */
.section-title {
  color: #1B5E20;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Introducción o descripción */
.intro {
  background: linear-gradient(to right, #e2f0ed, #f2fbf9);
  border-left: 5px solid #1B5E20;
  padding: 20px 25px;
  border-radius: 12px;
  margin: 30px auto;
  max-width: 960px;
}

/* Tarjetas de jugadores o participantes */
.card {
  background: linear-gradient(to bottom right, #ffffff, #e0f4ea);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* Contenido dentro del card */
.card-body {
  background-color: #ffffff;
  padding: 20px;
}

.card-text {
  color: #333;
  font-weight: 500;
}
/* Footer */
.footer-transparent {
  background: #1B5E20;
  color: white;
  font-size: 0.95rem;
  padding: 15px 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .intro {
    padding: 15px 20px;
  }

  .card-img-top {
    height: 200px;
  }
}
/* Animación al estar activo */
.custom-toggler:not(.collapsed) .top-bar {
  transform: rotate(45deg);
  top: 12px;
}

.custom-toggler:not(.collapsed) .middle-bar {
  opacity: 0;
}

.custom-toggler:not(.collapsed) .bottom-bar {
  transform: rotate(-45deg);
  bottom: 12px;
}

/* Hover visual */
.custom-toggler:hover .toggler-line {
  background-color: #43a047;
}
.btn-inicio {
  background-color: #1B5E20;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
}

.btn-inicio:hover {
  background-color: #2E7D32;
  color: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(27, 94, 32, 0.3);
}
