body{
    padding-top: 4rem;
}

.navbar{
    padding: 0;
    background-color: white;
    box-shadow: 0 10px 12px rgba(0, 0, 0, .3);
}

.navbar-brand{
    background-color: #09072b;
    text-align: right;
    min-width: 9rem;
    color: white;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-link{
    display: block;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dotted rgba(255, 255, 255, .2);
    text-transform: uppercase;
    font-size: .9rem;
    transition: all .5s ease;
    color: #586165;
    font-weight: 600;    
}

.nav-link:hover{
    color: #63c6ae;
}



.navbar-nav{
    background-color: #242a2c;
    text-align: center;
}



@media screen and  (min-width: 992px){
    .navbar-nav{
        background-color: transparent ;
        margin-left: 2rem;
    }
    .nav-link{
        padding-top: 0;
        padding-bottom: 0;
    }
}


.carousel-caption .h5{
    background-color: #63c6ae;
    color: white;
    font-size: 1.75rem ;
    font-weight: 600;
    padding: 25px 20px;
    margin-top: 240px;
}

.carousel-caption .carousel-text{
    background-color: #242a2c;
    margin: 5px 30px 35px;
    color: white;
    padding: 15px;
    font-size: 1.9rem;
}

.carousel-caption .btn{
    background-color: fgba
    ;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 5px;
    padding: 15px 25px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}


.mobile{
    color: #065c45;
}

.web{
    color: #f1f8f6;
}

.footer{
    background-color: #040542;
}






.card{
    border: none;
}

.card-body{
    border-left: 1px solid rgba(0, 0, 0, .15);
}

.section-cards{
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}




.section-content{
    background-color: #f8f9f9;
}



.articles-container{
    background-color: #63c6ae;
    padding: 1.5rem;
    color: white;
    text-transform: uppercase;
}

.articles-container .h3{
    margin-bottom: 0;    
}

.articles-thumbs{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: auto;
    grid-gap: 0;
}


.articles-thumbs img{
    display: block;
    width: 100%;
    
}

@media screen and (min-width: 991px) {
    .articles-thumbs{
        grid-template-columns: repeat(6, 1fr);
    }
    
}



.rodape{
    background-color: #7ff5c4;
    text-align: center;
    color: white;
}

.logo-text{
    background-color: #7ff5c4;
    text-align: center;
    color: black;
}

.footer-links{
    color: white;

}


.articles-container {
    text-align: center;
  }

  .articles-thumbs {
    display: flex;
    justify-content: center; /* Centraliza as imagens horizontalmente */
    gap: 20px; /* Espaçamento opcional entre as imagens */
  }
  