@charset "UTF-8";
/* CSS Document */

.btn {
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #146c43;
  --bs-btn-hover-bg: #146c43;
  --bs-btn-hover-border-color: #0f5132;
  --bs-btn-active-bg: #0c5734;
}
.nav-link{
    color: #198754;

}
.nav-link:hover{
    color: rgb(41, 13, 13);
    
}
main{
    margin-top: 5rem;
}
section{
    scroll-margin-top: 6rem;
}
a.navbar-brand img {
    width: 50px;
}
/* Tamanho do carrosel */
.carousel-item  {
    height: 500px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.carousel-item::before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgb(31,31,31));
    position: absolute;;
}
.card-menu{
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.card-menu img{
    height: 300px;
    object-fit: cover;
}
.card-menu:hover{
    transform: scale(1.1);
}
footer img{
    width: 80px;
}
@keyframes fadeAndFloat {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

main{
    animation: fadeAndFloat 1.2s ease-out;
}

