.content {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.content h1 {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a3664;
}

.content > p {
    font-weight: 300;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background-color: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-4px);
}

.card img {
    height: 150px;
    margin-bottom: 15px;
}

.card h2 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a3664;
}

.card p {
    font-weight: 300;
    font-size: 14px;
}