.alcateia-depoimentos {
  background: #000;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.alcateia-carousel {
  position: relative;
  width: 100%;
  height: 90vh;
}

.alcateia-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease, transform 1.2s ease;
}

.alcateia-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 5s ease;
}

.alcateia-slide.active {
  opacity: 1;
  z-index: 2;
}

.alcateia-slide.active img {
  transform: scale(1);
}

.alcateia-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000 20%, rgba(0,0,0,0.2));
}

.alcateia-content {
  position: absolute;
  bottom: 15%;
  left: 8%;
  max-width: 600px;
  color: #fff;
  z-index: 3;
}

.alcateia-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.alcateia-content p {
  color: #fbcfe8;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.alcateia-btn {
  background: #7c3aed;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.7s;
}

.alcateia-btn:hover {
  background: #a277f2;
  color: #000;
}

.alcateia-prev,
.alcateia-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(124, 58, 237, 0.6);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 4;
  transition: 0.3s;
}

.alcateia-prev:hover,
.alcateia-next:hover {
  background: #f472b6;
  color: #000;
}

.alcateia-prev { left: 20px; }
.alcateia-next { right: 20px; }

.alcateia-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

.alcateia-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #444;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.alcateia-dot.active {
  background: #7c3aed;
  transform: scale(1.3);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
@media(max-width:1024px)
{
    .alcateia-depoimentos
    {
        margin-top: 55px;
    }

    .alcateia-carousel 
    {
      position: relative;
      width: 100%;
      height: 95vh;
    }

    .alcateia-slide 
    {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease, transform 1.2s ease;
    }
    .alcateia-slide img 
    {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.1);
      transition: transform 5s ease;
    }
}

/* PARA TELAS DE TABLET ELE FICA DE DOIS EM DOIS */
@media (min-width: 768px) and (max-width: 1023px) 
{
    .alcateia-depoimentos
    {
        margin-top: 55px;
    }

    .alcateia-carousel 
    {
      position: relative;
      width: 100%;
      height: 95vh;
    }

    .alcateia-slide 
    {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease, transform 1.2s ease;
    }

    .alcateia-slide img 
    {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.1);
      transition: transform 5s ease;
    }
}