body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.clientes {
    text-align: center;
    padding: 50px 0;
}

.clientes h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.clientes-content .cliente-1 {
    background: #fff;
    margin: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.2s;
    text-align: center;
}

.clientes-content .cliente-1:hover {
    transform: translateY(-10px);
}

.clientes-content .cliente-1 img {
    width: 85px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit:contain
}

.clientes-content .cliente-1 h3 {
    font-size: 24px;
    margin: 10px 0;
    color: #14293f !important; 
}

.clientes-content .cliente-1 p {
    font-size: 16px;
    color: #666;
}

.btnDetalle {
    margin-top: 10px;
}

.btn-1 {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background: #007bff;
    text-decoration: none;
    border-radius: 5px;
}

.btn-1:hover {
    background: #0056b3;
}