@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: "Poppins", sans-serif;
    margin: 0%;
    padding: 0;
    box-sizing: border-box;
}

#truck-icon{
    margin-left: 5px;
}


.top{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-weight: 500;
}

hr{
    margin-top: 15px;
}


.title{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    font-weight: 600;
    font-size: 26px;
}

.txt-topo{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 24px;
    font-weight: 300;
}

.txt-topo-2{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 300;
}

.txt-topo-3{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -2px;
    font-size: 20px;
    font-weight: 300;
}

br{
    display: flex;
    justify-content: center;
    align-items: center;
}

span{
    color: #ffd727;
    margin-left: 7px;
}



.btn-default{
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffd727;
    border-radius: 12px;
    padding: 10px 14px ;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
    margin-top: 1px;
}

.btn-default:hover{
    background-color: #fffd6e;
}

header{
    width: 100%;
    padding: 0px 0%;
}

#navbar{
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #a7a6a5ab;
}

.btn-default-topo{
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffd727;
    border-radius: 12px;
    padding: 10px 16px ;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
    text-decoration: none;
    color: #000000;
    margin: 18px;
}

.btn-default-topo:hover{
    background-color: #ffffff;
}


#nav_logo{
    height: 80px;
    width: 80px;
    color: #ffd727;
}

#nav_list{
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-item a{
    text-decoration: none;
    color: #000000ad;
    font-weight: 600;
}

.nav-item.active a {
    color: #000000;
    position: relative;
    font-weight: 400;
}

.nav-item.active a::after{
    content: " ";
    width: 0%;
    height: 2px;
    background-color: #ffd727;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.5s ease-in-out;
}

.nav-item.active a:hover::after{
    width: 100%;

}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0; /* Espaçamento entre as colunas */
    padding: 20px;
}

.image-grid img{
    width: 30%;
    height: auto;
    display: block;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 80px;
    margin-left: 150px;
}

.site-footer {
    background-color: #333333a3;
    color: white;
    padding: 0px 0px;
    font-size: 14px;
    text-align: center;
    height: -50px;
    margin-top: 50px;
}

.footer-bottom {
    background-color: #2222226d;
    color: #aaa;
    padding: 10px 0;
}

.footer-bottom p {
    margin: 0px;
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas menores */
    }
}

@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr; /* 1 coluna em telas muito pequenas */
    }
}