.titulo-banner {
    color: 'white';
    font-size: 5rem;
    font-weight: 700;

}

.success-message{
    color: green;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
}

.subtitulo-banner {
    color: 'white';
    font-size: 1.3rem;
    /* deixa fonte em maiusculo */
    text-transform: uppercase;
    /* alinha o texto no inicio */
    top: -100px;
}

.image-banner-esquerda{
    display: block;
  }

  .portfolio-img img {
    width: 280px; /* Define um tamanho fixo para as imagens */
    height: 270px;
    object-fit: cover; /* Garante que as imagens sejam recortadas para caber no contêiner */
  }
  

/* Responsividade */
@media (max-width: 768px) {
    .titulo-banner {
        font-size: 3rem;
        padding-top: 100px;
    }

    .subtitulo-banner {
        display: none;
    }

    #hero .btn-get-started{
        display: none;

    }

    .image-banner-esquerda {
        display: none;
      }
      
}

/* maior que > 768px */
@media (max-width: 800px) {
    .titulo-banner {
        font-size: 3rem;
        display: 'flex';
        justify-content: 'center';
        align-items: 'center';
    }

    .subtitulo-banner {
        display: none;
    }

    #hero .btn-get-started{
        display: none;

    }

    .image-banner-esquerda {
        display: block;
      }
      
}


/* menor que < 768px */
@media (max-width: 768px) {
    .titulo-banner {
        font-size: 2.5rem;
        display: 'flex';
        justify-content: 'center';
        align-items: 'center';
    }

    .subtitulo-banner {
        display: block;
    }

    #hero .btn-get-started{
        display: block;
        width: 40%;
        position: absolute;
        bottom: -40px;
        left: 28%;

    }

    .image-banner-esquerda {
        display: none;
    }

      
.hero-waves {
    height: 35px !important;
    margin-top: -20px !important;
    z-index: 10;
  }

  .background-banner{
    /* display: none; */
    width: 100%;
    height: 400px !important;
  }

  .carousel-control-next-icon, .carousel-control-prev-icon {
    display: none;
  }
      
}