/* Fondo global claro */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}
.btn-wsp{
    position:fixed;
    width:60px;
    height:60px;
    line-height: 63px;
    bottom:25px;
    right:25px;
    background:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    transition: all 300ms ease;
}
.btn-wsp:hover{
    background: #20ba5a;

/* Sección del equipo */
.equipo {
  padding: 60px 20px;
  text-align: center;
  background: #ffffff;
  max-width: 1200px;
  margin: auto;
}

.equipo h2 {
  font-size: 36px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 40px;
}

/* Tarjeta individual */
.volunteer_card {
  background: #ffffff;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  box-shadow: none;
}

.volunteer_card:hover {
  transform: translateY(-5px);
}

/* Imagen circular centrada */
.volunteer_card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 30%;
  display: block;
  margin: 0 auto 15px auto;
  background: #ffffff;
}

/* Texto de la tarjeta */
.volunteer_text h3 {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 5px;
}

.volunteer_text h6 {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.volunteer_text p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Carrusel Bootstrap 3 */
.carousel-inner > .item {
  padding: 20px 0;
  background: #ffffff;
}

.carousel-control.left,
.carousel-control.right {
  background-image: none;
  color: #2c3e50;
  font-size: 30px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.carousel-control:hover {
  opacity: 1;
}

.carousel-indicators {
  bottom: -30px;
}

.carousel-indicators li {
  background-color: #ddd;
  border: none;
}

.carousel-indicators .active {
  background-color: #2c3e50;
}

/* Modal */

/* Modal video - tamaño reducido */
.modal-body video {
  width: 100%;
  max-width: 250px; /* Tamaño máximo en pantallas grandes */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* En pantallas pequeñas, que se adapte bien */
@media (max-width: 576px) {
  .modal-body video {
    max-width: 90%;
    height: auto;
  }
}

.modal-content {
  background-color: #ffffff;
  border: none;
  border-radius: 0;
}

.modal-body video {
  width: 50%;
  height: auto;
  border-radius: 0;
  display: block;
  margin: 0 auto;
  background: #ffffff;
}

/* Responsive */
@media (max-width: 70px) {
  .volunteer_card {
    margin: 10px auto;
  }

  .volunteer_card img {
    width: 100px;
    height: 100px;
  }

  .carousel-control.left,
  .carousel-control.right {
    font-size: 24px;
  }
}
