
.home-content {
    background-image: url('../img/fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
#slogan{
    font-size: 80px;
}

.linha {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: space-between;
}

.grupo {
    display: flex;
    flex: 1 1 48%;
    gap: 10px;
    min-width: 300px;
}

.item {
    background-color: #333;
    color: white;
    padding: 20px;
    font-size: 14px;
    flex: 3;
    border-radius: 6px;
}

.item strong {
    color: #fff;
}

.icon {
    background-color: white /* #28a745*/;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    border-radius: 6px;
    padding: 10px;
    color: #28a745 /*white*/;
}

.icon img {
    width: 40px;
    height: auto;
}

@media (max-width: 768px) {
    .grupo {
        flex: 1 1 100%;
    }

    .home-content{
        height: auto;
        padding-bottom: 50px;
        padding-top: 50px;
    }
    #slogan{
        font-size: 35px;
    }
}

.icon-stack {
    position: relative;

}

.icon-stack i {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.icon-stack .fa-hand-holding {
    bottom: 5px;
}

.icon-stack .overlay-car {
    top: 15px;
}

#btnTopo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#btnTopo:hover {
    background-color: #218838;
}

