/* ═══════════════════════════════════════════════════════════
   SMART OFFICE — Layout de cards com imagens hexagonais
   Usado exclusivamente na página Smart Office
════════════════════════════════════════════════════════════ */

/* Contentor principal — flex wrap para distribuir os cards
   em múltiplas linhas quando o espaço não chega para 3 */
.smart-office-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 80px;
}

/* Card individual */
.flex-item {
    align-self: stretch;
    text-align: center;
    max-width: 30%;    
    min-width: 280px;  
    padding: 30px;
    background-color: rgba(34, 42, 54, 0.5);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column; 
}

/* Efeito de elevação ao hover — padrão em todos os cards do site */
.flex-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 141, 194, 0.3);
    background-color: rgba(34, 42, 54, 0.7);
}

/* Imagem hexagonal — ocupa toda a largura do card */
.flex-item .img-smart-office {
    width: 100%;
    margin: 0 auto;
}

/* RESPONSIVE */
@media screen and (max-width: 992px) {
    .flex-item {
        max-width: 45%;
        min-width: 250px;
    }
}

@media screen and (max-width: 768px) {
    .flex-item {
        max-width: 100%;
        min-width: initial;
    }
}