/* Pulso — identidad compartida Control Personal */
.app-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

body {
    animation: fadeInPage 0.4s ease-out forwards;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

.app-brand--stack {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.app-brand-logo {
    display: block;
    height: 34px;
    width: auto;
    object-fit: contain;
}

.app-brand-logo--login {
    height: 52px;
}

.app-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
}

.app-brand-platform {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #1A1A1A;
}

.app-brand-tagline {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #666666;
}

.app-brand--header .app-brand-logo {
    height: 30px;
}

.app-brand--header .app-brand-platform {
    font-size: 12px;
    letter-spacing: 0.16em;
}