/* Estilos gerais para desktop */
.cards {
    max-width: 1400px;
    margin: auto;
    padding: 20px;
    
}

.cards-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    width: 100%;

    position: relative;
    top: -60px;
}

.bloco {
    background-color: #ffa500;
    text-decoration: none;
    padding: 20px;
    border-radius: 6px;
    width: 100%;
    height: 90px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bloco:hover {
    transform: scale(1.10);
    transition: .1s;
}

/* Estilos específicos para mobile */
@media (max-width: 768px) {
    .cards-banner {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .bloco {
        height: 50px; /* Ajuste a altura para mobile */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bloco:hover {
        display: none;
    }
}
