/* Fuente y base */
body {
  font-family: 'Poppins', sans-serif;
  background: #f5f7fa;
  color: #333;
  padding-top: 90px;
  line-height: 1.8;
}

/* Navbar */
.navbar {
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid #ccc;
}

.navbar-brand span {
  color: #006341;
  font-weight: 600;
  font-size: 1.3rem;
} 

/* Encabezados */
h2, h3 {
  color: #006341;
  letter-spacing: 1px;
}

/* Banner */
.img-fluid.w-100 {
  border-bottom: 4px solid #1B5E20;
}

/* Sección de introducción */
.intro {
  background: linear-gradient(to right, #e2f0ed, #f2fbf9);
  border-left: 5px solid #1B5E20;
  padding: 20px 25px;
  border-radius: 12px;
  margin-top: 30px;
}

/* Participantes */
.participant-card {
  background: linear-gradient(to bottom right, #ffffff, #e0f4ea);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.participant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.participant-card img,
.participant-card video {
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card-body {
  background-color: #ffffff;
  padding: 20px;
}

.card-text {
  color: #333;
  font-weight: 500;
}

/* Jaguar */
.jaguar-fijo {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 80px;
  height: auto;
  z-index: 1000;
  pointer-events: none;
}

/* Footer */
footer {
  background-color: #1B5E20;
  color: #fff;
  font-size: 0.95rem;
  padding: 15px 0;
}

/* Botón hamburguesa personalizado */
.custom-toggler {
  position: relative;
  width: 40px;
  height: 30px;
  border: none;
  background: transparent;
  z-index: 1051;
  transition: all 0.3s ease;
}

.toggler-line {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: #1B5E20;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.top-bar {
  top: 0;
}

.middle-bar {
  top: 50%;
  transform: translateY(-50%);
}

.bottom-bar {
  bottom: 0;
}

/* 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);
}
