/* Estilo para a página de Clientes */

.wrap_section_clientes_header {
    padding: 40px 0 20px 0;
}

.breadcrumb_custom {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb_custom a {
    color: #666;
    text-decoration: none;
}

.breadcrumb_custom a:hover {
    color: #d0121d;
}

.titulo_clientes_red {
    font-size: 32px;
    font-weight: 700;
    color: #d0121d; /* red color */
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.wrap_section_clientes_galeria {
    padding: 0 0 60px 0;
}

.flex-row-clientes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* space between cards */
}

.col-cliente {
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
    display: flex;
    justify-content: center;
}

/* For responsiveness */
@media (max-width: 991px) {
    .col-cliente {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

@media (max-width: 767px) {
    .col-cliente {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .col-cliente {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.cliente-card {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 4px; /* Slight border radius for the card if needed, screenshot looks like plain white card */
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.cliente-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cliente-img-wrapper {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cliente-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
