.container { max-width: 500px; margin: 0 auto; background: white; border-radius: 20px; padding: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.header { text-align: center; margin-bottom: 30px; position: relative; }
.logo { font-size: 12px; font-weight: bold; color: #000C34; margin-bottom: 10px; }
.logo img { width: 50%; height: auto; }
/* Aplicar el mismo tamaño al logo en infoClient.html */
.header img.logo { width: 50%; height: auto; }
.subtitle { color: #666; font-size: 16px; }
.step { margin-bottom: 25px; }
.step-title { font-size: 18px; font-weight: 600; color: #000C34; margin-bottom: 15px; display: flex; align-items: center; }
.step-number { background: #00A9FA; color: white; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: bold; margin-right: 10px; }

@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
        max-width: 100vw;
    }
}
