/* Eliminar scroll horizontal global */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Hacer todos los elementos respetar el ancho */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Arreglar imágenes grandes */
img,
iframe {
  max-width: 100%;
  height: auto;
}

/* Corregir contenedor de video */
.ContebedorVideo img {
  width: 100%;
  height: auto;
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 60vh;
}

/* inicio donaciones */
.inicioDonaciones {
  position: relative;
  background-image: url(../Img/Donaciones/inicioDonaciones.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.full-width {
  position: absolute;
  top: 0%;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 15%;
  background-color: rgb(14, 14, 14, 0.5);
}

.inicioDonaciones p {
  font-weight: bold;
  font-size: 30px;
}

.inicioDonaciones p span {
  font-size: 35px;
  color: #f707db;
}

.inicioDonaciones a {
  text-decoration: none;
  padding: 20px 30px;
  border: solid 5px #df07db;
  color: #fff;
  font-weight: bold;
  border-radius: 35px;
}

.inicioDonaciones a:hover {
  background-color: #df07db;
}

/* TITULO CAMPAÑAS */
.campActivas {
  font-family: "Lobster", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  color: #7a39a0;
  margin-bottom: 3%;
}

/* CONTENEDOR CAMPAÑAS */
.contenedorCampActivas {
  margin-bottom: 20px;
  margin-top: 3%;
}

.contenedorCampActivas h3 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.contenedorCampActivas p {
  text-align: justify;
  font-size: 22px;
}

/* IMAGEN TIENDA SOLIDARIA */
.tiendasSolidarias img {
  width: 90%;
  height: 60%;
  border-radius: 35px;
}

/* VIDEO */
.ContebedorVideo img {
  width: 500px;
  height: 500px;
  border-radius: 35px;
  display: block;
  margin: 0 auto;
}

/* BOTONES DONACIONES */
.donaciones .col-12 {
  display: flex;
  justify-content: center;
}

.donaciones a {
  text-decoration: none;
  color: rgb(159, 7, 186);
  border: solid 4px rgb(159, 7, 186);
  border-radius: 35px;
  padding: 7px 22px;
  font-weight: bold;
  text-align: center;
}

.donaciones a:hover {
  color: #fff;
  background-color: rgb(159, 7, 186);
}

/* RESPONSIVE MOVIL */
@media (max-width: 767px) {

  .contenedorCampActivas p {
    font-size: 16px !important;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 1.6;
  }

  .campActivas {
    font-size: 32px;
  }

  .contenedorCampActivas h3 {
    font-size: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .inicioDonaciones p {
    font-size: 18px;
    padding: 0 15px;
  }

  .inicioDonaciones p span {
    font-size: 20px;
  }

}