/**
 * Estilos Específicos da Página de Login
 * Sistema Wiki
 * 
 * Layout moderno com duas colunas (50/50):
 * - Esquerda: Área de publicidade/banner
 * - Direita: Formulário de login compacto
 */

/* Reset Global - Garantir que não haja scroll */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
    max-height: 100% !important;
    overflow: hidden !important;
}

/* Reset e Base */
.login-page {
    margin: 0 !important;
    padding: 0 !important;
    height: 100vh !important;
    max-height: 100vh !important;
    width: 100vw !important;
    max-width: 100vw !important;
    background: #f8f9fa !important; /* Cor sólida neutra */
    font-family: var(--fonte-principal) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* Container Principal - Layout de Duas Colunas (50/50) */
.login-wrapper {
    display: flex !important;
    height: 100vh !important;
    max-height: 100vh !important;
    width: 100% !important;
    overflow: hidden !important;
}

/* ============================================
   LADO ESQUERDO: ÁREA DE PUBLICIDADE/BANNER
   ============================================ */
.login-banner {
    flex: 1 !important;
    background: #1a202c !important; /* Cor sólida elegante e escura - sem degradê */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 50px 60px !important;
    position: relative !important;
    overflow: hidden !important;
    height: 100vh !important;
    max-height: 100vh !important;
    box-sizing: border-box !important;
}

/* Padrão de fundo sutil */
.login-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 1;
    z-index: 0;
}

/* Elementos decorativos */
.login-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 0;
}

/* Linha decorativa lateral */
.login-banner {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: var(--cor-texto-branco);
    max-width: 520px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 20px 0;
    box-sizing: border-box;
}

.banner-default {
    text-align: center;
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
    gap: 40px;
}

/* ============================================
   HEADER COMPACTO
   ============================================ */
.banner-header-compact {
    flex-shrink: 0;
    text-align: center;
    margin-bottom: 20px;
}

.banner-logo-text {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.banner-logo-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.banner-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 12px;
}

/* ============================================
   GRID DE PRODUTOS VISUAIS
   ============================================ */
.products-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 480px;
    flex: 1 1 auto;
    min-height: 0;
}

.product-visual-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.product-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.product-visual-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.product-visual-card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.product-visual-card:hover::before {
    transform: scaleX(1);
}

.product-visual-card:hover::after {
    width: 150%;
    height: 150%;
}

.product-visual-icon {
    font-size: 56px;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.product-visual-card:hover .product-visual-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.product-visual-name {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.product-visual-badge {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.product-visual-card:hover .product-visual-badge {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   DESTAQUES VISUAIS
   ============================================ */
.highlights-visual {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    flex-shrink: 0;
    justify-content: center;
}

.highlight-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.highlight-item:hover::before {
    transform: scaleX(1);
}

.highlight-icon {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.15) rotate(5deg);
}

.highlight-value {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.highlight-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.3;
}

/* HTML Customizado da Publicidade */
.banner-html-custom {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-html-custom * {
    max-width: 100%;
    max-height: 100%;
}

/* ============================================
   HEADER DO BANNER
   ============================================ */
.banner-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    position: relative;
}

.banner-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 1);
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.banner-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
}

.banner-badge:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.banner-badge:hover::before {
    left: 100%;
}

.badge-icon {
    font-size: 16px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.banner-main-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
}

.banner-main-title::first-letter {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.banner-main-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ============================================
   INTRODUÇÃO
   ============================================ */
.banner-intro {
    margin-bottom: 18px;
    flex-shrink: 0;
    padding: 12px 0;
    position: relative;
}

.banner-intro::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.intro-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 0 12px;
    font-weight: 400;
    letter-spacing: 0.1px;
}

/* ============================================
   DIFERENCIAIS DA MARCA
   ============================================ */
.brand-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.brand-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.brand-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.brand-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(6px) translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.brand-feature-item:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-feature-item:hover .feature-icon {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.feature-text {
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
}

/* ============================================
   PORTFÓLIO DE SOLUÇÕES
   ============================================ */
.solutions-showcase {
    margin-bottom: 18px;
    flex-shrink: 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.solutions-showcase:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.solutions-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
}

.solutions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.solution-name {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.solution-dot {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
}

/* ============================================
   GRID DE PRODUTOS (mantido para compatibilidade)
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    min-height: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover::after {
    opacity: 1;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    flex-shrink: 0;
}

.product-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.product-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.product-card:hover .product-icon-wrapper {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-card:hover .product-icon-wrapper::before {
    width: 100%;
    height: 100%;
}

.product-icon {
    font-size: 22px;
    line-height: 1;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.product-badge {
    padding: 5px 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover .product-badge {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.product-content {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: -0.4px;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.product-tagline {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 6px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.product-description {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 8px 0;
    font-weight: 400;
    flex: 1;
    overflow: hidden;
    letter-spacing: 0.1px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-shrink: 0;
}

.product-features li {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 14px;
    position: relative;
    line-height: 1.2;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover .product-features li::before {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
}

/* ============================================
   FOOTER COM ESTATÍSTICAS
   ============================================ */
.banner-footer {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    position: relative;
}

.banner-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.footer-stats {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.stat-box {
    text-align: center;
    flex: 1;
    padding: 16px 10px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box:hover::after {
    width: 120%;
    height: 120%;
}

.stat-value {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

/* ============================================
   LADO DIREITO: FORMULÁRIO DE LOGIN
   ============================================ */
.login-form-container {
    flex: 1 !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 50px 60px !important;
    min-width: 0 !important;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
    position: relative !important;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08) !important;
}

/* Elementos decorativos no formulário */
.login-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #1a202c;
    z-index: 1;
}

.login-form-container::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 85, 104, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.login-form-wrapper {
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 2;
}

/* Logomarca */
.login-logo {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 35px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    position: relative;
}

.login-logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #1a202c;
    border-radius: 2px;
}

.logo-image {
    max-width: 260px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.1));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-image:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

.login-header {
    text-align: center;
    margin-bottom: 45px;
    flex-shrink: 0;
}

.login-welcome-text {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.login-subtitle-text {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.login-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--cor-texto-principal);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.login-subtitle {
    font-size: 15px;
    color: var(--cor-texto-secundario);
    margin: 0;
    font-weight: 400;
}

.login-form {
    margin-top: 0;
}

.login-form .form-group {
    margin-bottom: 28px;
    position: relative;
}

.login-form .form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 4px;
}

.login-form .form-group label::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--cor-primaria);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-form .form-group:focus-within label::before {
    opacity: 1;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100% !important;
    padding: 16px 20px !important;
    font-size: 15px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    color: #1e293b !important;
    font-weight: 400 !important;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
    border-color: var(--cor-primaria) !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15) !important;
    outline: none !important;
    transform: translateY(-1px);
}

.login-form input::placeholder {
    color: #94a3b8;
    font-size: 15px;
    font-weight: 400;
}

.btn-login {
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    background: var(--cor-primaria) !important;
    color: #ffffff !important;
    border: none !important;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    transition: left 0.4s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    background: var(--cor-primaria-hover) !important;
}

.btn-login:hover::before {
    left: 100%;
}

.btn-login:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
}

.btn-login:hover .btn-icon {
    transform: translateX(4px);
}

.login-footer {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #f1f5f9;
    flex-shrink: 0;
    position: relative;
}

.login-footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #1a202c;
    border-radius: 2px;
}

.footer-text {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Alertas na página de login */
.login-form-container .alert {
    margin-bottom: 28px;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 14px;
    border: 2px solid #fee2e2;
    background: #fef2f2;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 1400px) {
    .banner-main-title {
        font-size: 52px;
    }
    
    .products-grid {
        gap: 20px;
    }
    
    .product-card {
        padding: 24px;
    }
}

@media (max-width: 1200px) {
    .login-banner {
        padding: 50px 60px;
    }
    
    .banner-main-title {
        font-size: 48px;
    }
    
    .banner-main-subtitle {
        font-size: 16px;
    }
    
    .products-grid {
        gap: 18px;
    }
    
    .product-name {
        font-size: 22px;
    }
    
    .product-card {
        padding: 22px;
    }
}

@media (max-width: 1024px) {
    .login-wrapper {
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
    }
    
    .login-banner {
        flex: 0 0 50vh;
        min-height: 50vh;
        max-height: 50vh;
        padding: 20px 30px;
        overflow: hidden;
    }
    
    .login-form-container {
        flex: 1;
        min-height: 50vh;
        max-height: 50vh;
        padding: 20px;
        overflow: hidden;
    }
    
    .banner-content {
        max-width: 100%;
        height: 100%;
        max-height: 100%;
    }
    
    .banner-main-title {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .product-card {
        padding: 10px;
    }
    
    .footer-stats {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .login-banner {
        flex: 0 0 60vh;
        min-height: 60vh;
        max-height: 60vh;
        padding: 30px 20px;
        overflow: hidden;
    }
    
    .login-form-container {
        flex: 1;
        min-height: 40vh;
        max-height: 40vh;
        padding: 20px 15px;
        overflow: hidden;
    }
    
    .banner-logo-text {
        font-size: 48px;
    }
    
    .banner-tagline {
        font-size: 12px;
    }
    
    .products-visual-grid {
        gap: 12px;
        max-width: 100%;
    }
    
    .product-visual-card {
        padding: 20px 12px;
    }
    
    .product-visual-icon {
        font-size: 40px;
    }
    
    .product-visual-name {
        font-size: 14px;
    }
    
    .product-visual-badge {
        font-size: 9px;
        padding: 4px 10px;
    }
    
    .highlights-visual {
        gap: 10px;
        max-width: 100%;
    }
    
    .highlight-item {
        padding: 16px 8px;
    }
    
    .highlight-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .highlight-value {
        font-size: 22px;
    }
    
    .highlight-label {
        font-size: 9px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .product-card {
        padding: 14px;
    }
    
    .product-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .product-icon {
        font-size: 20px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-description {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .product-features {
        gap: 4px;
    }
    
    .product-features li {
        font-size: 10px;
    }
    
    .footer-stats {
        flex-direction: row;
        gap: 8px;
    }
    
    .stat-box {
        padding: 10px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .login-title {
        font-size: 22px;
    }
    
    .login-subtitle {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .login-page {
        background: var(--cor-fundo-branco);
    }
    
    .login-banner {
        display: none;
    }
    
    .login-form-container {
        flex: 1;
        box-shadow: none;
        padding: 20px;
    }
    
    .login-form-wrapper {
        max-width: 100%;
    }
}
