#destaque {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .carousel-item {
    position: relative;
  }
  
  .carousel-item::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  .carousel-content {
    text-align: left;
    padding: 20px;
    color: #fff;
  }
  
  .carousel-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .carousel-content h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #1977cc;
    text-decoration: none;
  }
  
  .btn-get-started:hover {
    background: #3291e6;
    color: #fff;
  }
  
  /* Adicionando animações */
  .animate__animated {
    animation-duration: 1s;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .carousel-content h1 {
      font-size: 32px;
    }
    
    .carousel-content h2 {
      font-size: 18px;
    }
    
    .btn-get-started {
      font-size: 14px;
      padding: 8px 24px;
    }
  }