 .carousel {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    padding:0 !important;
    margin:0px !important;
  }

  .carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .carousel-slide.active {
    opacity: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
  }

  /* Máscara dourada */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(199, 156, 69, 0.85) 0%, rgba(240,210,120,0.35) 100%);
    mix-blend-mode: overlay;
  }

  .carousel-content {
    position: absolute;
    bottom: 6%;
    left: 10%;
    color: #fff;
    z-index: 2;
    max-width: 500px;
  }

  .carousel-content h2 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 10px;
   
  }

  .carousel-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .carousel-content a {
    display: inline-block;
    background: #c9a24e;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
  }

  .carousel-content a:hover {
    background: #e5c06d;
  }

  /* Contêiner dos botões no canto inferior direito */
  .carousel-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 3;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }

  .carousel-btn:hover {
    background: rgba(255, 215, 100, 0.7);
  }

  @media (max-width: 768px) {
    .carousel-content h2 {
      font-size: 3rem;
      padding-left:15px;
    }
    .carousel-content p {
      font-size: 1.5rem;
      padding-left:15px;
    }

    .carousel {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
    padding: 0 !important;
    margin: 0px !important;
}



.carousel-content {
    position: absolute;
    bottom: 6%;
    left: 10%;
    color: #fff;
    z-index: 2;
    max-width: 500px;
    margin-left: -30px;
}


.carousel-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}



  }