/*======== HOME 1 ========*/
.home1-slider {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  display: flex;
  align-items: center;
}
.home1-slider-item1 {
  background-image: url("../img/home/slider1.png");
}
.home1-slider-item2 {
  background-image: url("../img/home/slider2.png");
}
.home1-slider-item3 {
  background-image: url("../img/home/slider3.png");
}
.carousel-control-next,
.carousel-control-prev {
  width: 10%;
}
.carousel-control-next-icon {
  background-image: url("../img/home/f-1.png");
  width: 3rem;
  height: 3rem;
}
.carousel-control-prev-icon {
  background-image: url("../img/home/f-2.png");
  width: 3rem;
  height: 3rem;
}
.home1-slider-div {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0.4rem);
  padding: 2rem 1rem;
}
.home1-slider-int {
  max-width: 900px;
  text-align: center;
  color: white;
  font-family: 'KGINeed';
}

/*======== HOME 2 ========*/
.home2 {
  margin-top: 5rem;
}
.home2-div {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}
.home2-div-titulo {
  color: black;
}
.home2-div-bg {
  background-image: url("../img/home/img1.png");
  border-radius: 1rem;
  box-shadow: 0 0 5px 0px black;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 500px;
}
.home2-div-int {
  column-count: 2;
  column-gap: 2rem;
  column-fill: balance;
  text-align: justify;
}
.home2-div-int p {
  font-size: 1.1rem;
  text-align: justify;
}

/*======== HOME 3 ========*/
.home3 {
  margin-top: 5rem;
  background-image: url("../img/home/background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home3-div {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.home3-div-int {
  display: flex;
  background-color: white;
  border-radius: 1rem;
  transition: all 0.15s ease-in-out;
}
.home3-div-int:hover {
  box-shadow: 0 0 10px 2px #a6a6a6;
}
.home3-div-texto {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 10rem 2rem;
}
.home3-div-texto p {
  font-size: 1.1rem;
  text-align: justify;
}
.home3-div-img {
  background-image: url("../img/home/img2.png");
  border-radius: 0 1rem 1rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
}

/*======== HOME 4 ========*/
.home4 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.home4-div {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
  justify-items: center;
}
.home4-div-int {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
  transition: all 0.15s ease-in-out;
  max-width: 450px;
  width: 100%;
  color: #000;
}
.home4-div-int:hover {
  transform: scale(1.05);
}
.home4-int-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.5rem;
  box-shadow: 0 0 5px 0 black;
}
.home4-int-img::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.home4-int-texto {
  padding-bottom: 0.5rem;
  border-bottom: 4px solid #ff003a;
}

/*======== RESPONSIVE ========*/
@media (max-width: 992px) {
  .carousel-control-next,
  .carousel-control-prev {
    display: none;
  }
  .home1-slider {
    height: unset;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .home4-div {
    grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
  }
  .home4-div-int {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .home2-div-int {
    column-count: 1;
  }
  .home3-div-int {
    flex-direction: column-reverse;
  }
  .home3-div-texto {
    width: 100%;
    padding: 5rem 2rem;
  }
  .home3-div-img {
    width: 100%;
    height: 100vw;
    max-height: 450px;
    border-radius: 1rem 1rem 0 0;
  }
}
@media (max-width: 580px) {
  .home4-div {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}