/* =============================================
   LOGIN.HTML — Estilos específicos da página
   ============================================= */

.hero-login {
    background: linear-gradient(135deg, #1A1A2E 0%, #2d2d44 100%);
    padding: 90px 0 100px;
    color: #fff;
}

.hero-login .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.hero-login .breadcrumb-item a:hover {
    color: #fff;
}

.hero-login .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.45);
}

.hero-login .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.35);
}

.hero-login .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #fff;
}

.hero-login .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(26, 26, 46, 0.25);
    text-align: center;
    max-width: 560px;
    margin: -60px auto 0;
    position: relative;
    z-index: 2;
}

.login-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--brand-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.login-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    color: var(--color-dark);
    margin-bottom: 12px;
}

.login-subtitle {
    color: var(--color-gray-mid);
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.btn-login-access {
    background: var(--brand-red);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 15px 36px;
    border-radius: 8px;
    font-size: 1.08rem;
    transition: background 0.2s, transform 0.15s;
}

.btn-login-access:hover {
    background: var(--brand-red-dark);
    color: #fff;
    transform: translateY(-1px);
}

.login-divider {
    margin: 32px 0 20px;
    color: var(--color-gray-mid);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
}

.login-divider::before,
.login-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    border-top: 1px solid var(--color-gray-border);
}

.login-divider::before { left: 0; }
.login-divider::after { right: 0; }

.login-help {
    padding: 40px 0 20px;
}

.login-help-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 8px;
}

.login-help-sub {
    text-align: center;
    color: var(--color-gray-mid);
    margin-bottom: 32px;
}
