.parallax-wrapper {
    width: 70%;
    margin: 0 auto;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: hidden;
    margin-top: 225px;
}

.parallax-section {
    background-image: url('/images/IMG_PARCEIROS_1200_563.png');
    min-height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: zoomInParallax 1.5s ease-out forwards;
    transform: scale(0.9);
    opacity: 0;
}

.parallax-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 400px;
    padding-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.parallax-section h2{
    /* font-size: 3rem; */
    background-color: rgba(35, 19, 11, 0.4); 
    color: white; 
    display: inline-block;
    padding: 0.3em 0.8em;
    border-radius: 5px;
    margin: 0 auto;
}

.parallax-section p{
    /* font-size: 24px; */
    background-color: rgba(35, 19, 11, 0.4);
    color: white; 
    padding: 0.3em 0.8em;
    border-radius: 5px;
    margin: 0 auto;
}

.descricaoClientes{
    display: contents;
    align-items: center;
    font-size: 18px;
    color: #727171;
}

/* Container geral */
.clientes-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Aqui está o grid aplicado SOMENTE aos cards */
.cards-clientes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    justify-items: center;
    width: 100%;
    margin-top: 30px;
}

/* Mantém animação e estilo do card */
.card-cliente {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 0 4px 10px rgba(0,0,0,0.0.07);
    border-radius: 16px;
    padding: 24px 20px;
    width: 100%;
    max-width: 280px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card-cliente:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(3, 31, 156, 0.35);
}

@media (max-width: 600px) {
    .card-clientes {
        max-width: 100%;
    }
}

.card-cliente h3 {
    margin-top: 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    font-size: clamp(12px, 1.6vw, 18px); /* Tamanho flexível */
    color: #3f3f3f;
    white-space: nowrap;        /* Impede quebra de linha */
    overflow: hidden;           /* Esconde o que passar */
    text-overflow: ellipsis;    /* Adiciona "..." se for necessário */
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card-cliente ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}