:root {
    /* Cores da Marca LM */
    --lm-blue: #0E45B3;
    --lm-blue-dark: #0A3489;
    --lm-blue-light: #1354D6;
    --black: #000000;
    --off-black: #1a1a1a;

    /* Neutros */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Feedback */
    --success: #2ecc71;
    --error: #e74c3c;
    --warning: #f39c12;

    /* Sombras minimalistas */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Transições suaves */
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 80px;
    /* Add space for footer */
    /* Compensar header fixo */
}

.hidden {
    display: none !important;
}

.login-box {
    background: var(--white);
    width: 100%;
    max-width: 420px;
    padding: 32px;
    /* Reduced padding from 48px */
    border-radius: 24px;
    /* Added rounded corners */
}

/* Header com Logo */
.page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 3px solid var(--gray-700);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-logo {
    height: 85px;
    width: auto;
}

/* Brand Title LM | CORE */
.brand-title {
    text-align: center;
    margin-bottom: 24px;
    /* Reduced from 40px */
}

.brand-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--lm-blue);
    letter-spacing: 2px;
    margin: 0;
}

.brand-title.brand-small h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Logo Section (forgot-password, reset-password) */
.logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.logo-section .logo {
    width: 120px;
    height: auto;
    margin-bottom: 24px;
}

.logo-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.logo-section .subtitle {
    font-size: 16px;
    color: var(--gray-600);
    margin: 0;
}


/* Títulos - Estilo Nubank/Inter */
.title {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    text-align: left;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.subtitle {
    font-size: 16px;
    color: var(--gray-600);
    text-align: left;
    margin-bottom: 24px;
    /* Reduced from 40px */
    line-height: 1.5;
    font-weight: 400;
}

/* Formulário */
.form {
    margin-bottom: 0;
}

.input-group {
    margin-bottom: 16px;
    /* Reduced from 24px */
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.input-group input[type="text"],
.input-group input[type="password"],
.input-group input[type="email"] {
    width: 100%;
    padding: 18px 16px;
    font-size: 16px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    transition: var(--transition);
    font-family: inherit;
    outline: none;
    background: var(--gray-50);
    color: var(--black);
}

.input-group input:hover {
    background: var(--white);
    border-color: var(--gray-300);
}

.input-group input:focus {
    border-color: var(--lm-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(14, 69, 179, 0.1);
}

.input-group input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

/* Password Toggle */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 52px;
}

.toggle-password {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 8px;
}

.toggle-password:hover {
    color: var(--lm-blue);
    background: var(--gray-100);
}

.input-error {
    display: block;
    font-size: 13px;
    color: var(--error);
    margin-top: 6px;
    font-weight: 500;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    font-size: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--gray-700);
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--lm-blue);
}

.link {
    color: var(--lm-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.link:hover {
    color: var(--lm-blue-dark);
    text-decoration: underline;
}

/* Botões - Estilo Nubank/Inter */
.btn-primary,
.btn-secondary {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    text-transform: none;
}

.btn-primary {
    background: var(--lm-blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(14, 69, 179, 0.25);
}

.btn-primary:hover {
    background: var(--lm-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 69, 179, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--lm-blue);
    border: 1px solid var(--gray-200);
    margin-top: 12px;
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--lm-blue);
}

.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Badge de Segurança */
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-500);
    padding: 16px;
    margin-top: 32px;
    font-weight: 500;
}

.security-badge svg {
    flex-shrink: 0;
    color: var(--success);
    width: 14px;
    height: 14px;
}

/* 2FA - Input de Código */
.code-input-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.code-input {
    width: 56px;
    height: 64px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    transition: var(--transition);
    outline: none;
}

/* Status Badge Agendado */
.transaction-status.agendado-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* Antecipar Button */
.btn-anticipate {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
    transition: all 0.2s;
}

.btn-anticipate:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
}



.code-input:hover {
    border-color: var(--gray-300);
}

.code-input:focus {
    border-color: var(--lm-blue);
    background: var(--white);
}

.code-input.filled {
    border-color: var(--lm-blue);
    background: rgba(14, 69, 179, 0.05);
}

/* Reenviar Código */
.resend-code {
    text-align: center;
    margin-bottom: 32px;
}

.resend-code p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 8px;
    font-weight: 500;
}

.resend-code .link {
    font-size: 14px;
}

.resend-code .link:disabled {
    color: var(--gray-400);
    cursor: not-allowed;
}

/* Animações minimalistas */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-box {
    animation: slideUp 0.4s ease-out;
}

/* Responsivo */
@media (max-width: 480px) {
    .login-box {
        padding: 32px 24px;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 15px;
    }

    .code-input {
        width: 48px;
        height: 56px;
        font-size: 24px;
    }

    .code-input-group {
        gap: 8px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px;
    }
}

/* Layout Split (Desktop) - Inspirado Nubank */
@media (min-width: 1024px) {
    body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: #f5f6fa;
        padding: 0;
        gap: 0;
    }

    /* Header apenas na direita em Desktop, mas com borda separadora */
    .page-header {
        width: 100%;
        left: 0;
        border-bottom: 5px solid #000;
        /* Linha preta grossa solicitada */
        background: #fff;
        backdrop-filter: none;
        box-shadow: none;
        z-index: 1001;
        /* Garantir que fique acima de tudo */
    }

    /* Ajustar o grid do corpo para que header nao fique sobrepondo o azul */
    /* Mas o usuario pediu "separando header do body", entao header é top bar */
    /* A sidebar atual é transparente com cartao flutuante. Header full width ok. */

    .container {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 140px 80px 100px 80px;
        /* Padding top para compensar header */
        background: #f5f6fa;
    }

    /* Carrossel Sidebar - Transparente com Retângulo Azul Flutuante */
    .carousel-sidebar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: transparent;
        padding: 40px;
        position: relative;
        overflow: visible;
        /* Permitir que elementos flutuem se necessário */
        height: 100vh;
    }

    /* Retângulo Azul Horizontal Arredondado */
    .carousel-sidebar::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 60%;
        background: var(--lm-blue);
        background: linear-gradient(135deg, var(--lm-blue) 0%, var(--lm-blue-dark) 100%);
        border-radius: 40px;
        /* Bordas arredondadas */
        box-shadow: 0 20px 60px rgba(14, 69, 179, 0.25);
        z-index: 0;
    }

    .carousel-container {
        position: absolute;
        /* Mudado de relative para absolute */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        /* Match dimensions of blue card */
        height: 60%;
        /* Match dimensions of blue card */
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .carousel-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
        pointer-events: none;
        padding: 40px;
        /* Increased padding */
    }

    .carousel-slide.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Imagens com bordas arredondadas transparentes */
    .carousel-slide img {
        max-width: 70%;
        width: 70%;
        height: auto;
        max-height: 35vh;
        object-fit: contain;
        margin-bottom: 30px;
        filter: brightness(1.1);
        border-radius: 20px;
        /* Remover background branco conforme pedido */
        background: transparent;
        padding: 0;
        box-shadow: none;
        /* Sombra suave na imagem em si se for PNG transparente */
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    }

    /* Textos Brancos (Dentro do Retângulo Azul) */
    .carousel-slide h3 {
        color: var(--white);
        font-size: 28px;
        font-weight: 800;

    }

    .carousel-slide p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        margin: 0;
        display: block;
        max-width: 400px;
        margin: 0 auto;
        /* Center text block */
    }

    .carousel-dots {
        display: flex;
        gap: 12px;
        margin-top: 30px;
        z-index: 1;
        position: absolute;
        bottom: 25%;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: var(--transition);
    }

    .dot.active {
        background: var(--white);
        width: 24px;
        border-radius: 6px;
    }
}

/* ============================================ */
/* Toast Notifications System */
/* ============================================ */
.toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background: var(--white);
    color: var(--black);
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 320px;
    max-width: 400px;
    pointer-events: auto;
    border-left: 4px solid var(--lm-blue);
    animation: toastSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
}

.toast.toast-success {
    border-left-color: var(--success);
}

.toast.toast-error {
    border-left-color: var(--error);
}

.toast.toast-warning {
    border-left-color: var(--warning);
}

.toast.toast-removing {
    animation: toastSlideOut 0.3s ease-in forwards;
}

.toast-icon {
    flex-shrink: 0;
    font-size: 22px;
    line-height: 1;
    margin-top: 2px;
}

.toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-title {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    color: var(--black);
}

.toast-message {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-700);
    font-weight: 500;
}

.toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 18px;
    line-height: 1;
    opacity: 0.7;
}

.toast-close:hover {
    background: var(--gray-100);
    opacity: 1;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--lm-blue);
    animation: toastProgress 5s linear forwards;
}

.toast-success .toast-progress {
    background: var(--success);
}

.toast-error .toast-progress {
    background: var(--error);
}

.toast-warning .toast-progress {
    background: var(--warning);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes toastSlideOut {
    to {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }
}

@keyframes toastProgress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

@media (max-width: 480px) {
    .toast-container {
        top: 80px;
        right: 16px;
        left: 16px;
    }

    .toast {
        min-width: auto;
        width: 100%;
    }
}

/* ============================================ */
/* Success/Error/Loading Boxes */
/* ============================================ */
.success-box,
.error-box,
.loading-box {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    animation: slideUp 0.4s ease-out;
}

.success-box {
    background: rgba(46, 204, 113, 0.05);
    border: 2px solid var(--success);
}

.error-box {
    background: rgba(231, 76, 60, 0.05);
    border: 2px solid var(--error);
}

.loading-box {
    background: rgba(14, 69, 179, 0.05);
    border: 2px solid var(--lm-blue);
}

.success-icon,
.error-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.success-icon {
    color: var(--success);
}

.error-icon {
    color: var(--error);
}

.success-box h3,
.error-box h3,
.loading-box p {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.success-box p,
.error-box p {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 8px;
    line-height: 1.5;
}

.info-text {
    font-size: 14px !important;
    color: var(--gray-600) !important;
    margin-top: 16px !important;
}

.success-box .btn-primary,
.success-box .btn-secondary,
.error-box .btn-primary {
    max-width: 300px;
    margin: 24px auto 0;
}

.loading-box i {
    font-size: 48px;
    color: var(--lm-blue);
    margin-bottom: 20px;
}

/* ============================================ */
/* Layout para forgot-password e reset-password */
/* ============================================ */
.login-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.login-form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--white);
}

.login-form-wrapper {
    width: 100%;
    max-width: 450px;
}

.carousel-section {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: none;
    /* Hidden on mobile */
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.carousel {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.carousel-slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 80%;
    max-width: 400px;
    margin: 0 auto 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.carousel-slide h2 {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.carousel-slide p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

/* Form elements for forgot/reset pages */
.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    font-size: 16px;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    font-size: 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    transition: var(--transition);
    font-family: inherit;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--lm-blue);
    box-shadow: 0 0 0 3px rgba(14, 69, 179, 0.1);
}

.error-message {
    display: block;
    color: var(--error);
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

.form-footer {
    text-align: center;
    margin-top: 24px;
}

/* Desktop layout */
@media (min-width: 1024px) {
    .carousel-section {
        display: flex;
    }
}

/* ============================================ */
/* Role Selection Styles */
/* ============================================ */
.role-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.secondary-roles {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-role {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Estilo Principal (Cliente) */
.btn-role.btn-role-primary {
    background: var(--white);
    border: 2px solid var(--lm-blue);
    /* Borda azul destaque */
    padding: 24px;
    /* Maior */
    box-shadow: 0 10px 30px rgba(14, 69, 179, 0.1);
}

.btn-role.btn-role-primary:hover {
    background: var(--lm-blue);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(14, 69, 179, 0.2);
}

.btn-role.btn-role-primary .role-name {
    font-size: 18px;
    color: var(--lm-blue);
}

.btn-role.btn-role-primary:hover .role-name,
.btn-role.btn-role-primary:hover .role-desc,
.btn-role.btn-role-primary:hover .role-icon,
.btn-role.btn-role-primary:hover .role-arrow {
    color: var(--white);
}

/* Estilo Secundário (Admin/Monitor) */
.btn-role.btn-role-secondary {
    flex: 1;
    /* Dividir espaço */
    padding: 12px 16px;
    background: transparent;
    border: 1px dashed var(--gray-400);
    opacity: 0.7;
}

.btn-role.btn-role-secondary:hover {
    background: var(--gray-100);
    opacity: 1;
    border-color: var(--gray-600);
}

.btn-role.btn-role-secondary .role-icon {
    font-size: 18px;
    margin-right: 8px;
}

.btn-role.btn-role-secondary .role-name {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 600;
}

.btn-role.btn-role-secondary .role-arrow {
    display: none;
    /* Remove seta nos pequenos */
}


.role-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 16px;
    color: var(--lm-blue);
    transition: var(--transition);
}

.role-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.role-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s;
}

.role-desc {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.role-arrow {
    font-size: 20px;
    color: var(--gray-400);
    font-weight: 600;
    transition: var(--transition);
}

.btn-role:hover .role-arrow {
    color: var(--lm-blue);
    transform: translateX(4px);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.4s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================ */
/* Footer Login */
/* ============================================ */
.login-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    background: transparent;
    /* Transparente conforme estilo clean */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.login-footer p {
    margin: 0;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
}

.login-footer .footer-links {
    display: flex;
    gap: 15px;
}

.login-footer a {
    font-size: 12px;
    color: var(--gray-500);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.login-footer a:hover {
    color: var(--lm-blue);
    text-decoration: underline;
}