/* Auth Styles Import */
@import url('auth-styles.css');

/* Raiz do documento - Variáveis globais de design */
:root {
    /* Paleta de cores personalizada */
    --primary: #0f0f23;
    --secondary: #1a1a2e;
    --surface: #16213e;
    --accent: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Cores de texto */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    /* Layout */
    --roundness-sm: 8px;
    --roundness-md: 12px;
    --roundness-lg: 16px;
    --roundness-xl: 20px;
    --roundness-2xl: 24px;
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Espaçamento */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}

/* Fundo moderno para telas de login/cadastro */
/* Glassmorphism para containers de login/cadastro */
.glass-container {
    /* Reflexo animado */
    overflow: hidden;
    background: rgba(30, 30, 30, 0.35);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1.5px solid rgba(255,255,255,0.18);
    padding: 2.5rem 2rem;
    z-index: 2;
    position: relative;
    transition: box-shadow 0.3s;
}
.glass-container::before {
    content: "";
    position: absolute;
    top: -40%; left: -40%;
    width: 180%; height: 180%;
    background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 60%, transparent 100%);
    opacity: 0.5;
    filter: blur(18px);
    pointer-events: none;
    z-index: 1;
    animation: glassShine 4s linear infinite;
}

@keyframes glassShine {
    0% { transform: translateX(-30%) translateY(-30%) rotate(0deg); opacity: 0.4; }
    50% { transform: translateX(10%) translateY(10%) rotate(8deg); opacity: 0.7; }
    100% { transform: translateX(-30%) translateY(-30%) rotate(0deg); opacity: 0.4; }
}

.glass-btn {
    position: relative;
    overflow: hidden;
}
.glass-btn::after {
    content: "";
    position: absolute;
    top: -60%; left: -60%;
    width: 220%; height: 220%;
    background: linear-gradient(120deg, rgba(255,255,255,0.22) 0%, transparent 100%);
    opacity: 0.3;
    filter: blur(12px);
    pointer-events: none;
    z-index: 1;
    animation: glassBtnShine 3.5s linear infinite;
}

@keyframes glassBtnShine {
    0% { transform: translateX(-20%) rotate(0deg); opacity: 0.2; }
    50% { transform: translateX(20%) rotate(8deg); opacity: 0.5; }
    100% { transform: translateX(-20%) rotate(0deg); opacity: 0.2; }
}
.glass-container:hover {
    box-shadow: 0 12px 40px 0 rgba(0,0,0,0.32);
}
.login-page-body, .register-page-body {
    /* Adiciona camadas para animação */
    overflow: hidden;
}

/* Gradiente animado dinâmico */
.login-page-body::after, .register-page-body::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(120deg, #6366f1, #8b5cf6, #18181b);
    opacity: 0.22;
    background-size: 200% 200%;
    animation: gradientMove 8s ease-in-out infinite alternate;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Partículas leves animadas */
.login-page-body .bg-particle, .register-page-body .bg-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    pointer-events: none;
    z-index: 1;
    animation: particleMove 12s linear infinite;
}

@keyframes particleMove {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    80% { opacity: 0.7; }
    100% { transform: translateY(60vh) scale(1.3); opacity: 0; }
}

.login-page-body, .register-page-body {
    min-height: 100vh;
    width: 100vw;
    background: #000 !important;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

/* Animação de gradiente suave */
.login-page-body::after, .register-page-body::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(120deg, #6366f1 0%, #8b5cf6 100%);
    opacity: 0.18;
    animation: gradientMove 8s ease-in-out infinite alternate;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.login-page-body::before, .register-page-body::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 70%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.10) 0%, transparent 70%);
    z-index: 0;
}

.login-panel, .register-panel {
    position: relative;
    z-index: 2;
    background: rgba(30,30,30,0.38);
    border-radius: 22px;
    box-shadow: 0 12px 40px 0 rgba(0,0,0,0.32);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    padding: 48px 36px 36px 36px;
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
    border: 1.5px solid rgba(255,255,255,0.22);
    transition: box-shadow 0.3s, background 0.3s;
}
.login-panel:hover, .register-panel:hover {
    box-shadow: 0 18px 56px 0 rgba(0,0,0,0.38);
    background: rgba(40,40,40,0.48);
}

/* Glassmorphism para botões */
.glass-btn {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 12px;
    color: #fff;
    padding: 0.7em 2em;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    backdrop-filter: blur(6px);
    transition: background 0.2s, box-shadow 0.2s;
}
.glass-btn:hover {
    background: rgba(255,255,255,0.22);
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    color: #e0e0ff;
}

/* Glassmorphism para inputs */
.glass-input {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    color: #fff;
    padding: 0.7em 1em;
    font-size: 1em;
    box-shadow: 0 1px 6px rgba(0,0,0,0.10);
    backdrop-filter: blur(4px);
    margin-bottom: 1em;
    transition: background 0.2s, box-shadow 0.2s;
}
.glass-input:focus {
    background: rgba(255,255,255,0.18);
    box-shadow: 0 2px 12px rgba(0,0,0,0.14);
    outline: none;
}
/* --- Estilo dos cards das categorias (carousel-card) --- */
.carousel-card {
    flex-shrink: 0;
    width: 220px;
    scroll-snap-align: start;
    background: var(--glass-gradient);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-radius: var(--roundness-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-md);
    margin-bottom: 8px;
}

.carousel-card:hover {
    transform: translateY(-12px) scale(1.03) rotateX(2deg);
    border-color: var(--accent);
    box-shadow: var(--shadow-xl);
    background: var(--glass-gradient-hover);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.carousel-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background-color: #000;
    border-bottom: 1px solid var(--border);
}

.carousel-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 12px 10px 10px 10px;
    text-align: center;
    background: rgba(0,0,0,0.15);
    border-radius: 0 0 var(--roundness-xl) var(--roundness-xl);
    flex: 0 0 auto;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Botão Sair estilo glass */
.logout-btn {
    margin-top: 24px;
    padding: 12px 32px;
    border: none;
    border-radius: 16px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}
.logout-btn:hover {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    color: #e63946;
}
/* Formulário de login centralizado */
#loginForm {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
/* Estilos para página de registro */
.register-page-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--bg);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(6, 182, 212, 0.01) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

/* Animated background elements */
.register-page-body::before,
.register-page-body::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.02), rgba(139, 92, 246, 0.02));
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.register-page-body::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.register-page-body::after {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.register-panel {
    max-width: 480px;
    width: 100%;
    padding: 56px 48px;
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    margin: 20px;
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
}

/* Enhanced glass decoration */
.register-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        rgba(99, 102, 241, 0.3), 
        rgba(255, 255, 255, 0.2), 
        transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.register-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.register-panel h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 40px;
    color: var(--text-primary);
    background: linear-gradient(135deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.register-panel h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    border-radius: 2px;
}

.register-panel input {
    width: 100%;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.register-panel input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.register-panel input:focus {
    border-color: var(--accent);
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.2),
        inset 0 0 20px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.register-panel input:focus::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: inputShimmer 0.6s ease-out;
}

@keyframes inputShimmer {
    to { left: 100%; }
}

.register-panel button {
    width: 100%;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: white;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.register-panel button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.register-panel button:hover {
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    transform: translateY(-4px);
    box-shadow: 
        0 16px 48px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.register-panel button:hover::before {
    left: 100%;
}

.register-panel button:active {
    transform: translateY(-2px);
    transition: all 0.1s ease;
}

.register-panel button:focus {
    outline: none;
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.3),
        0 8px 32px rgba(99, 102, 241, 0.3);
}

#registerMessage {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
    padding: 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Links de navegação */
.register-panel a,
.register-panel a:visited,
.login-panel a,
.login-panel a:visited {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.register-panel a:hover,
.login-panel a:hover {
    color: var(--accent);
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-1px);
}

/* Icon styles for buttons and links */
.register-panel a i,
.login-panel a i,
.register-panel button i,
.login-button i {
    margin-right: 8px;
    font-size: 1rem;
    opacity: 0.9;
}

.register-panel button i,
.login-button i {
    font-size: 1.1rem;
    margin-right: 10px;
}

/* Enhanced button styles with icons */
.register-panel button,
.login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.register-panel button span,
.login-button span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

:root {
    /* Glass Theme Variables */
    --primary: #ffffff;
    --nav-bg: rgba(255, 255, 255, 0.05);
    --secondary: #000000;
    --accent: #6366f1; /* Indigo moderno */
    --accent-secondary: #8b5cf6; /* Violet */
    --accent-tertiary: #06b6d4; /* Cyan */
    --bg: linear-gradient(135deg, #0a0a1a 0%, #0f0f1f 50%, #0d1428 100%); /* Gradient mais escuro */
    --surface: rgba(255, 255, 255, 0.08); /* Glass surface */
    --surface-hover: rgba(255, 255, 255, 0.12); /* Glass hover */
    --surface-secondary: rgba(255, 255, 255, 0.05); /* Glass secondary */
    --text-primary: #f8fafc; /* Branco suave */
    --text-secondary: #cbd5e1; /* Cinza claro */
    --danger: #ef4444; /* Vermelho moderno */
    --danger-hover: #dc2626;
    --success: #10b981; /* Verde */
    --warning: #f59e0b; /* Amarelo */
    --modal-overlay: rgba(0, 0, 0, 0.4);
    --border: rgba(255, 255, 255, 0.1); /* Glass border */
    --border-focus: rgba(99, 102, 241, 0.3); /* Accent border */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.37);
    --roundness-xl: 24px;
    --roundness-lg: 16px;
    --roundness-md: 12px;
    --roundness-sm: 8px;
    
    /* Enhanced Transitions */
    --transition-ultra-fast: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Glass Effects */
    --blur: blur(16px);
    --blur-strong: blur(24px);
    --blur-subtle: blur(8px);
    
    /* Glass gradients with animation support */
    --glass-gradient: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05));
    --glass-gradient-hover: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15), 
        rgba(255, 255, 255, 0.08));
    --accent-gradient: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    --accent-gradient-hover: linear-gradient(135deg, #7c3aed, #06b6d4);
    
    /* Shimmer effect */
    --shimmer-gradient: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    background: var(--bg);
    position: relative;
}

/* Enhanced glass background with animated gradients */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: floatingGradient 20s ease-in-out infinite;
}

/* Floating gradient animation */
@keyframes floatingGradient {
    0%, 100% { 
        background: 
            radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    }
    25% { 
        background: 
            radial-gradient(circle at 80% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    }
    50% { 
        background: 
            radial-gradient(circle at 60% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 20% 60%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.07) 0%, transparent 50%);
    }
    75% { 
        background: 
            radial-gradient(circle at 30% 90%, rgba(99, 102, 241, 0.09) 0%, transparent 50%),
            radial-gradient(circle at 70% 10%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 10% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    }
}

/* Sidebar removed - categories no longer needed */

/* Logo and category navigation removed */

/* Category items removed - no longer needed */

/* Removed legacy .continue-watching-btn and malformed duplicated movie-card styles */

.container {
    max-width: 1200px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 120px 40px 24px 40px;
    flex-grow: 1;
    transition: margin-left 0.3s ease; /* Adiciona transição para o movimento */
    
    /* Animações de transição entre abas */
    opacity: 1;
    transform: translateX(0) scale(1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Estados de transição das abas */
.container.tab-exit {
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
    filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    pointer-events: none;
}

.container.tab-enter {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    filter: blur(5px);
    pointer-events: none;
}

.container.tab-enter-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: all;
}

/* Animação do conteúdo interno */
.container.tab-enter-active > * {
    animation: contentSlideIn 0.8s ease-out 0.2s both;
}

.container.tab-enter-active .search-panel,
.container.tab-enter-active .carousel-section,
.container.tab-enter-active .content-wrapper,
.container.tab-enter-active .support-container,
.container.tab-enter-active .store-container {
    animation: contentSlideIn 0.6s ease-out both;
}

.container.tab-enter-active .search-panel {
    animation-delay: 0.1s;
}

.container.tab-enter-active .carousel-section:nth-child(2) {
    animation-delay: 0.2s;
}

.container.tab-enter-active .carousel-section:nth-child(3) {
    animation-delay: 0.3s;
}

.container.tab-enter-active .carousel-section:nth-child(4) {
    animation-delay: 0.4s;
}

.container.tab-enter-active .carousel-section:nth-child(5) {
    animation-delay: 0.5s;
}

.container.tab-enter-active .carousel-section:nth-child(6) {
    animation-delay: 0.6s;
}

.container.tab-enter-active .carousel-section:nth-child(7) {
    animation-delay: 0.7s;
}

.container.tab-enter-active .carousel-section:nth-child(8) {
    animation-delay: 0.8s;
}

.container.tab-enter-active .carousel-section:nth-child(9) {
    animation-delay: 0.9s;
}

.container.tab-enter-active .carousel-section:nth-child(10) {
    animation-delay: 1.0s;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 400px;
    max-width: 800px;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 999px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: inherit;
}

.navbar:hover::before {
    opacity: 1;
}

.navbar:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    cursor: default;
}

.navbar-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.9;
    cursor: default;
}

/* Removed sidebar toggle - no longer needed */

.search-panel {
    max-width: 800px;
    margin: 60px auto 50px auto;
    display: flex;
    gap: 0;
    padding: 0;
    border-radius: 50px;
    background: rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    align-items: stretch;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Minimalist glass refraction effect */
.search-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.12) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

.search-panel:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(15, 23, 42, 0.35);
}

.search-panel:hover::before {
    opacity: 1;
}

.search-panel input {
    flex: 1;
    padding: 20px 28px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1.1rem;
    background: transparent;
    color: white;
    outline: none;
    transition: all 0.3s ease;
    min-width: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
    cursor: text;
}

.search-panel input:focus {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.01);
}

.search-panel input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    font-weight: 300;
}

.search-panel input:focus::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-panel button {
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.15) 0%, 
        rgba(139, 92, 246, 0.15) 50%,
        rgba(6, 182, 212, 0.15) 100%);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 32px;
    min-height: 60px;
    min-width: 140px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(99, 102, 241, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    z-index: 2;
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Efeito de cristal animado */
.search-panel button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.4) 30%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.4) 70%,
        transparent 100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: skewX(-20deg);
}

/* Efeito de brilho interno */
.search-panel button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: -1;
}

.search-panel button i {
    font-size: 1.2rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    z-index: 3;
    position: relative;
}

.search-panel button span {
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    z-index: 3;
    position: relative;
}

.search-panel button:hover {
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.3) 0%, 
        rgba(139, 92, 246, 0.3) 50%,
        rgba(6, 182, 212, 0.3) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(99, 102, 241, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 0 30px rgba(99, 102, 241, 0.2),
        0 0 20px rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(24px) saturate(250%);
    -webkit-backdrop-filter: blur(24px) saturate(250%);
}

.search-panel button:hover::before {
    left: 100%;
}

.search-panel button:hover::after {
    width: 100px;
    height: 100px;
}

.search-panel button:hover i {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
}

.search-panel button:hover span {
    transform: translateX(3px);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.search-panel button:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
    box-shadow: 
        0 6px 20px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Animações especiais para o botão de busca */
@keyframes glassButtonPulse {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(99, 102, 241, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 0 20px rgba(99, 102, 241, 0.1);
    }
    50% {
        box-shadow: 
            0 6px 25px rgba(99, 102, 241, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.25),
            inset 0 0 25px rgba(99, 102, 241, 0.15);
    }
}

@keyframes glassShimmerWave {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Aplicar pulsação sutil contínua */
.search-panel button {
    animation: glassButtonPulse 3s ease-in-out infinite;
}

/* Shimmer automático ocasional */
.search-panel button::before {
    animation: glassShimmerWave 4s ease-in-out infinite;
    animation-delay: 2s;
}

/* Parar animações durante hover para focar na interação */
.search-panel button:hover {
    animation: none;
}

.search-panel button:hover::before {
    animation: none;
}

/* Adicionar animação de foco para o input */
.search-panel input:focus {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.01);
}

/* Animação de entrada para a barra de busca */
@keyframes searchPanelSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-panel {
    animation: searchPanelSlideIn 0.6s ease-out;
}

/* Responsive adjustments for search panel */
@media (max-width: 768px) {
    .search-panel {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 40px auto 30px auto;
        border-radius: 25px;
        align-items: stretch;
    }
    
    .search-panel input {
        border-radius: 25px 25px 0 0;
        text-align: center;
        padding: 18px 24px;
        min-height: 50px;
    }
    
    .search-panel button {
        border-radius: 0 0 25px 25px;
        width: 100%;
        min-width: auto;
        padding: 18px 24px;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .search-panel {
        margin: 30px 20px 20px 20px;
    }
    
    .search-panel input {
        font-size: 1rem;
        padding: 16px 20px;
    }
    
    .search-panel button {
        font-size: 0.9rem;
        padding: 16px 20px;
        min-height: 50px;
    }
}

.search-panel button:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

/* Loading state for search button */
.search-panel button.loading {
    pointer-events: none;
    opacity: 0.9;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.search-panel button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.search-panel button.loading span,
.search-panel button.loading i {
    opacity: 0;
}

.search-panel button:active {
    transform: scale(0.98);
    opacity: 0.9;
}

.search-panel button:hover:not(:disabled) {
    filter: brightness(1.2);
}

.search-panel button:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    box-shadow: none;
}

.movie-list {
    display: flex;
    overflow-x: auto;
    gap: 32px;
    padding: 10px 24px; /* left/right padding to avoid clipping first/last cards */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-tap-highlight-color: transparent;
    -ms-overflow-style: none;
    will-change: transform;
    justify-content: flex-start; /* start items at the left edge */
    scroll-padding-left: 24px; /* ensure snap doesn't clip the first card */
}

.movie-list.touching {
    scroll-behavior: auto;
    cursor: grabbing;
}

.movie-list::-webkit-scrollbar {
    display: none;
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 32px;
    width: 100%;
}

.movie-card {
    flex-shrink: 0;
    width: calc(33.333% - 22px);
    scroll-snap-align: start;
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--roundness-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Enhanced glass shimmer effect */
.movie-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.6s ease;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.movie-card:hover::before {
    left: 100%;
    opacity: 1;
}

.genre-grid .movie-card {
    width: auto;
    flex-shrink: 1;
}

.movie-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
}

.movie-card:active {
    transform: translateY(-6px) scale(1.01);
    opacity: 0.95;
    transition: all 0.1s ease;
}

.movie-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    background-color: #000;
}

.genre-grid .movie-card img {
    height: 330px;
}

.movie-info {
    padding: 24px;
    flex: 1;
    box-sizing: border-box;
}

.movie-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.movie-year {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: capitalize;
}
#mainPlayerContainer {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 80px auto 24px;
    border-radius: 16px;
    border: 1px solid #2c2c2c;
    display: none;
}

#mainPlayerContainer iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Proteção de clique / bloqueio básico de popups do player externo */
.player-wrapper { position: absolute; inset:0; }
.click-shield {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(30,41,59,0.85), rgba(15,23,42,0.95));
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .5px;
    text-align: center;
    padding: 24px;
    box-sizing: border-box;
    z-index: 10;
    opacity: 1;
    transition: opacity .3s ease;
}
.click-shield span { max-width: 420px; line-height: 1.4; }
.click-shield.fade-out { opacity: 0; pointer-events: none; }

.adblock-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    background: rgba(0,0,0,0.55);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background .2s ease, transform .2s ease;
}
.adblock-toggle:hover { background: rgba(56,189,248,0.25); }
.adblock-toggle[aria-pressed="false"] { filter: grayscale(.4) opacity(.85); }
.adblock-toggle:active { transform: scale(.92); }

#results-area {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
    display: none;
}

.loader {
    border: 4px solid var(--surface);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--modal-overlay);
    backdrop-filter: var(--blur-strong);
    -webkit-backdrop-filter: var(--blur-strong);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    position: relative;
    background: var(--glass-gradient);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-radius: var(--roundness-xl);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-sizing: border-box;
    animation: fade-in 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: lighter;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

#details-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2.5rem;
}

#details-poster {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--roundness-md);
}

#details-info h1 {
    margin-top: 0;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

#details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

#details-meta span, .director-tag {
    background-color: #27272a;
    color: var(--text-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
}

#details-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

#details-plot {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Estilos específicos para o modal de perfil */
#profileModal .modal-content {
    max-width: 500px;
    padding: 2rem;
}

.profile-header {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-avatar {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.profile-header h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.profile-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface-secondary);
    border-radius: var(--roundness-md);
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.info-item:hover {
    background: var(--surface-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
    width: 2rem;
    text-align: center;
}

.info-content {
    flex: 1;
}

.info-content label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.info-content span {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.license-status {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.license-status.ativa {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.license-status.inativa {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.license-status.expirada {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.profile-actions {
    text-align: center;
}

.profile-actions button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--primary);
    border: none;
    border-radius: var(--roundness-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.profile-actions button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--accent-gradient-hover);
}

#elenco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.actor-card {
    background-color: #27272a;
    padding: 0.8rem;
    border-radius: var(--roundness-md);
}

.actor-name {
    font-weight: 600;
    font-size: 0.9rem;
}

#seasons-select {
    padding: 10px;
    border-radius: 8px;
    background: #27272a;
    color: var(--text-primary);
    border: 1px solid #3f3f46;
    width: 100%;
    font-size: 1rem;
    box-sizing: border-box;
}

#episodes-list {
    list-style: none;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 1rem;
    border: 1px solid #27272a;
    border-radius: 8px;
}

#episodes-list li {
    padding: 12px 15px;
    border-bottom: 1px solid #3f3f46;
    cursor: pointer;
    transition: background-color 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
}

#episodes-list li:active {
    background-color: var(--accent);
    color: var(--primary);
}

#episodes-list li:hover {
    background-color: #3f3f46;
}

#stream-movie-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background: #27272a;
    color: var(--primary);
    border: 1px solid #3f3f46;
    border-radius: var(--roundness-md);
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#stream-movie-btn:hover {
    background-color: #3f3f46;
}

.nav-tab {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 28px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    user-select: none;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

/* Enhanced glass shimmer effect */
.nav-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.nav-tab:hover::before {
    left: 100%;
    opacity: 1;
}

/* Efeito especial quando a aba fica ativa */
.nav-tab.switching {
    animation: tabActivation 0.8s ease-in-out;
    position: relative;
    overflow: hidden;
}

.nav-tab.switching::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(147, 51, 234, 0.3), 
        rgba(6, 182, 212, 0.3), 
        transparent);
    animation: tabSwitchShimmer 0.8s ease-in-out;
}

.nav-tab.active {
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.3) 0%, 
        rgba(139, 92, 246, 0.3) 100%);
    color: #ffffff;
    box-shadow: 
        0 4px 20px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    font-weight: 600;
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
}

.nav-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
}

.nav-tab:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 0;
    flex: 1;
}

.dropdown-trigger.selected {
    color: #ffffff;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.2) 0%, 
        rgba(139, 92, 246, 0.2) 100%);
    border-color: rgba(99, 102, 241, 0.3);
}

.dropdown-trigger.selected .dropdown-text {
    font-weight: 600;
}

.dropdown-text {
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    position: relative;
    text-align: left;
}

/* Animação de troca de texto */
@keyframes textChange {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-text.changing {
    animation: textChange 0.4s ease-in-out;
}

/* Indicador visual de categoria ativa */
.dropdown-trigger.selected::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 1px;
    opacity: 0.8;
}

.dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-dropdown:hover .dropdown-icon,
.nav-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.6s ease;
    opacity: 0;
}

.dropdown-item:hover::before {
    left: 100%;
    opacity: 1;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dropdown-item i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Animação de entrada do dropdown */
@keyframes dropdownFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.nav-dropdown:hover .dropdown-menu {
    animation: dropdownFadeIn 0.3s ease-out;
}

/* Responsividade para o dropdown */
@media (max-width: 768px) {
    .navbar {
        min-width: 320px;
        max-width: calc(100vw - 40px);
    }
    
    .navbar-left {
        gap: 8px;
    }
    
    .navbar-right {
        gap: 8px;
    }
    
    .logo-container {
        padding: 3px;
    }
    
    .navbar-logo {
        width: 24px;
        height: 24px;
    }
    
    .dropdown-menu {
        min-width: 220px;
        left: 0;
        transform: translateX(0);
    }
    
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        transform: translateX(0) translateY(0);
    }
    
    .dropdown-item {
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    .dropdown-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        min-width: 280px;
    }
    
    .navbar-left {
        gap: 6px;
    }
    
    .navbar-right {
        gap: 6px;
    }
    
    .logo-container {
        padding: 3px;
    }
    
    .navbar-logo {
        width: 20px;
        height: 20px;
    }
    
    .dropdown-menu {
        min-width: 200px;
        max-width: calc(100vw - 40px);
        right: 0;
        left: auto;
        transform: translateX(0);
    }
    
    .dropdown-item {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .dropdown-item i {
        font-size: 0.9rem;
    }
    
    .dropdown-text {
        font-size: 0.85rem;
    }
}

/* ===== NAVEGAÇÃO POR TECLADO - ESTILOS ===== */
/* Foco por teclado no botão do dropdown */
.dropdown-trigger:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

/* Foco por teclado nos itens do dropdown */
.dropdown-item:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
    background: rgba(99, 102, 241, 0.2);
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Estado especial para navegação por teclado */
.dropdown-item.keyboard-focused {
    background: rgba(99, 102, 241, 0.15);
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(99, 102, 241, 0.3);
}

/* Indicador visual para navegação por teclado ativa */
.dropdown-item.keyboard-focused::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.6);
}

/* Remove outline padrão do navegador */
.dropdown-trigger,
.dropdown-item {
    outline: none;
}

/* Animação para transições de foco */
.dropdown-item {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Melhor visibilidade no modo de alto contraste */
@media (prefers-contrast: high) {
    .dropdown-item:focus-visible,
    .dropdown-item.keyboard-focused {
        background: rgba(255, 255, 255, 0.3);
        outline: 3px solid #ffffff;
        outline-offset: -3px;
    }
    
    .dropdown-trigger:focus-visible {
        outline: 3px solid #ffffff;
        outline-offset: 2px;
    }
}

/* Suporte para modo escuro forçado */
@media (prefers-color-scheme: dark) {
    .dropdown-item.keyboard-focused::after {
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.8);
    }
}

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

/* Enhanced Glass Animations */
@keyframes shimmerPulse {
    0%, 100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.7; transform: scaleX(1.1); }
}

@keyframes shimmerWave {
    0% { transform: translateX(-100%) skewX(-15deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) skewX(-15deg); opacity: 0; }
}

@keyframes shimmerSweep {
    0% { transform: translateX(-100%) scaleY(0.8); opacity: 0; }
    30% { opacity: 1; transform: translateX(-50%) scaleY(1); }
    100% { transform: translateX(100%) scaleY(0.8); opacity: 0; }
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: var(--shadow-lg);
        border-color: var(--accent);
    }
    50% { 
        box-shadow: var(--shadow-xl), 0 0 20px rgba(99, 102, 241, 0.3);
        border-color: var(--accent-secondary);
    }
}

/* Animações das transições de abas */
@keyframes tabActivation {
    0% { 
        transform: scale(1); 
    }
    30% { 
        transform: scale(1.05);
        box-shadow: var(--shadow-xl), 0 0 25px rgba(99, 102, 241, 0.4);
    }
    100% { 
        transform: scale(1);
        box-shadow: var(--shadow-lg);
    }
}

@keyframes tabSwitchShimmer {
    0% { 
        left: -100%;
        opacity: 0;
    }
    50% { 
        left: 0%;
        opacity: 1;
    }
    100% { 
        left: 100%;
        opacity: 0;
    }
}

@keyframes contentSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes floatUp {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@keyframes glassReflection {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes glassBreath {
    0%, 100% { 
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
    }
    50% { 
        backdrop-filter: blur(24px) saturate(200%);
        -webkit-backdrop-filter: blur(24px) saturate(200%);
    }
}

@keyframes glassMorphShimmer {
    0% {
        background-position: -200% 0%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        background-position: 200% 0%;
        opacity: 0;
    }
}

/* Aplicar animação sutil de respiração aos elementos glass principais */
.navbar,
.search-panel,
.movie-card {
    animation: glassBreath 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.01); opacity: 0.98; }
}

@keyframes buttonPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
        transform: scale(1.02);
    }
}

@keyframes slideInBounce {
    0% { transform: translateX(-100%) scaleX(0.8); opacity: 0; }
    60% { transform: translateX(5%) scaleX(1.05); opacity: 0.8; }
    100% { transform: translateX(0) scaleX(1); opacity: 1; }
}

@keyframes pulseVertical {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: var(--roundness-sm);
}

/* Glass morphism utilities */
.glass-effect {
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    background: var(--glass-gradient);
    border: 1px solid var(--border);
}

.glass-effect-hover:hover {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: var(--glass-gradient-hover);
}

/* Performance optimizations */
.movie-card,
.nav-tab,
.search-panel {
    will-change: transform, box-shadow, background;
    transform: translateZ(0);
}

/* Support Page Styles */
.support-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 24px 0;
}

.support-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.support-title h1 i {
    color: var(--accent);
    font-size: 2.2rem;
}

.support-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
}

.support-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Support Cards */
.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.support-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--roundness-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    opacity: 0;
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-secondary);
}

.support-card:hover::before {
    opacity: 1;
}

.support-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.support-card-icon::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--surface);
    border-radius: 50%;
    z-index: 1;
}

.support-card-icon i {
    font-size: 1.8rem;
    color: var(--accent);
    z-index: 2;
    position: relative;
}

.support-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.support-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Support Buttons */
.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--roundness-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.support-btn.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.support-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
    filter: brightness(1.1);
}

.support-btn.secondary {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.support-btn.secondary:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
    transform: translateY(-2px);
}

.support-btn.tertiary {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.support-btn.tertiary:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 64px;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.faq-section h2 i {
    color: var(--accent-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--roundness-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-secondary);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent);
    font-size: 1.2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    margin-bottom: 48px;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-section h2 i {
    color: var(--accent);
}

.contact-options {
    max-width: 600px;
    margin: 0 auto 32px;
}

.contact-option {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--roundness-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    margin-bottom: 16px;
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-secondary);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-info {
    flex: 1;
}

.contact-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px;
}

.contact-info p {
    color: var(--accent);
    margin: 0 0 4px;
    font-weight: 500;
}

.contact-info small {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--roundness-md);
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Support Footer */
.support-footer {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--roundness-md);
    border: 1px solid var(--border);
}

.support-footer p {
    color: var(--text-secondary);
    margin: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.support-footer i {
    color: var(--accent-secondary);
}

.support-footer strong {
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-title h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .support-title h1 i {
        font-size: 1.8rem;
    }
    
    .support-subtitle {
        font-size: 1.1rem;
    }
    
    .support-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-card {
        padding: 24px;
    }
    
    .faq-section h2,
    .contact-section h2 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-option {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .support-footer p {
        flex-direction: column;
        gap: 4px;
    }
}

.support-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    padding: 24px;
}

.support-content {
    text-align: center;
    background: var(--surface);
    padding: 48px;
    border-radius: var(--roundness-lg);
    border: 1px solid var(--border);
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.support-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-button {
    text-decoration: none;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    color: var(--primary);
    border-radius: var(--roundness-md);
    font-weight: 600;
    padding: 16px 32px;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
    filter: brightness(1.1);
}

.contact-button:hover {
    filter: brightness(1.1);
}

.logout-confirm-btn, .logout-cancel-btn {
    margin: 15px 10px 0 10px;
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    font-weight: 600;
}
.logout-confirm-btn {
    background-color: #d33;
    color: white;
}
.logout-cancel-btn {
    background-color: #555;
    color: white;
}

.carousel-section {
    margin-bottom: 48px;
    display: block;
}

.carousel-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    transition: var(--transition);
}

.carousel-section h2 i {
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
    font-size: 1.6rem;
}

.carousel-section:hover h2 {
    transform: translateX(5px);
}

.carousel-section:hover h2 i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6));
}

/* Cores específicas por categoria */
#releases-section h2 i {
    color: #fbbf24; /* Amarelo dourado para lançamentos */
}

#trending-section h2 i {
    color: #ef4444; /* Vermelho para trending/fogo */
}

#action-section h2 i {
    color: #f97316; /* Laranja para ação */
}

#comedy-section h2 i {
    color: #10b981; /* Verde para comédia */
}

#drama-section h2 i {
    color: #8b5cf6; /* Roxo para drama */
}

#horror-section h2 i {
    color: #6366f1; /* Azul escuro para terror */
}

#scifi-section h2 i {
    color: #06b6d4; /* Ciano para ficção científica */
}

#romance-section h2 i {
    color: #ec4899; /* Rosa para romance */
}

#documentary-section h2 i {
    color: #84cc16; /* Verde lima para documentários */
}

.carousel-container {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.trending-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--accent);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.section-divider {
    border: none;
    height: 1px;
    background-color: var(--border);
    margin: 0 0 48px 0;
    display: block;
}

.search-results-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 0 10px;
}

.search-results-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

#clear-search-btn {
    background-color: var(--surface-hover);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--roundness-md);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

#clear-search-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.carousel-btn.prev {
    left: 8px; /* keep inside container to avoid visual clipping */
}

.carousel-btn.next {
    right: 8px; /* keep inside container */
}

.carousel-btn:hover:not(:disabled) {
    background-color: var(--accent);
    border-color: var(--accent);
}

.carousel-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}

#pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    width: 100%;
}

#pagination-controls button {
    background-color: var(--surface-hover);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--roundness-md);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

#pagination-controls button:hover:not(:disabled) {
    background-color: var(--accent);
    border-color: var(--accent);
}

#pagination-controls button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#page-info {
    font-weight: 500;
}

@media (max-width: 1024px) {
    .navbar {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile-specific styles (mantendo ajustes de espaçamento e tamanho que são úteis para telas menores) */
@media (max-width: 768px) {
    :root {
        --sidebar-width: 280px;
    }
    .container {
        padding: 100px 16px 16px 16px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .genre-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
    .carousel-btn.prev { left: 5px; }
    .carousel-btn.next { right: 5px; }
    
    /* Category items removed */
    
    .search-panel {
        padding: 20px;
        margin: 60px auto 24px auto;
        flex-direction: column;
        gap: 20px;
    }
    
    .search-panel button {
        height: 56px;
        width: 100%;
        justify-content: center;
        font-size: 1.1rem;
        padding: 16px 32px;
        min-width: unset;
    }
    
    .movie-card {
        width: 100%;
    }
    
    .navbar {
        padding: 4px;
        top: 12px;
    }
    
    .nav-tab {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    /* Store responsive adjustments */
    .store-container {
        gap: 24px;
    }
    
    .store-header {
        padding: 32px 20px;
    }
    
    .store-header h2 {
        font-size: 2rem;
    }
    
    .store-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plan-card {
        padding: 24px;
    }
    
    .plan-price .value {
        font-size: 2.5rem;
    }
}

/* Enhanced Logout Modal Styles */
#logoutConfirmModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--modal-overlay);
    backdrop-filter: blur(12px);
    z-index: 1500;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

#logoutConfirmModal.visible {
    opacity: 1;
}

#logoutConfirmModal .modal-content {
    max-width: 400px;
    width: 100%;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--roundness-lg);
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

#logoutConfirmModal.visible .modal-content {
    transform: translateY(0) scale(1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#logoutConfirmModal p {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-weight: 600;
    line-height: 1.4;
}

.logout-confirm-btn,
.logout-cancel-btn {
    margin: 0 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--roundness-md);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    min-width: 120px;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logout-confirm-btn {
    background: linear-gradient(135deg, var(--danger), var(--danger-hover));
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

.logout-confirm-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--danger-hover), #a02834);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.logout-confirm-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
}

.logout-confirm-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.logout-cancel-btn {
    background: var(--surface-hover);
    color: var(--text-primary);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logout-cancel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.2);
}

.logout-cancel-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(138, 43, 226, 0.1);
}

#logoutConfirmModal .bi {
    font-size: 1.1rem;
}

/* Button container for better spacing */
#logoutConfirmModal .modal-content .button-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 8px;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    #logoutConfirmModal .modal-content {
        margin: 0 16px;
        padding: 24px;
    }
    
    #logoutConfirmModal p {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    
    .logout-confirm-btn,
    .logout-cancel-btn {
        padding: 12px 20px;
        min-width: 100px;
        font-size: 0.95rem;
    }
    
    #logoutConfirmModal .modal-content .button-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .logout-confirm-btn,
    .logout-cancel-btn {
        width: 100%;
    }
}

body.sidebar-open {
    overflow: hidden; /* Evita scroll no body quando a sidebar está aberta */
}

/* Continue Watching Styles */
.continue-watching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    width: 100%;
}

.continue-watching-card {
    background: var(--surface);
    border-radius: var(--roundness-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.continue-watching-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.continue-watching-poster {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.continue-watching-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.continue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 16px;
    color: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.continue-watching-card:hover .continue-overlay {
    opacity: 1;
}

.continue-overlay i {
    font-size: 3rem;
    margin-bottom: 8px;
}

.continue-overlay span {
    font-size: 0.9rem;
    font-weight: 600;
}

.continue-watching-info {
    padding: 16px;
}

.continue-watching-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.episode-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.continue-watching-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.continue-btn {
    flex: 1;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: var(--roundness-md);
    padding: 8px 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.continue-btn:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

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

.remove-btn {
    background: var(--surface-hover);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--roundness-md);
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    width: 36px;
    height: 36px;
}

.remove-btn:hover {
    background: var(--danger);
    color: var(--primary);
    border-color: var(--danger);
}

.remove-btn i {
    font-size: 1rem;
}

#back-to-home-btn {
    background-color: var(--surface-hover);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--roundness-md);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

#back-to-home-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* Login Page Specific Styles */
.login-page-body {
    /* Centraliza o painel de login na tela */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--bg);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(6, 182, 212, 0.01) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

/* Animated background elements */
.login-page-body::before,
.login-page-body::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.02), rgba(139, 92, 246, 0.02));
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.login-page-body::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.login-page-body::after {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

.login-panel {
    max-width: 480px;
    width: 100%;
    padding: 56px 48px;
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    margin: 20px;
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
}

/* Enhanced glass decoration */
.login-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        rgba(99, 102, 241, 0.3), 
        rgba(255, 255, 255, 0.2), 
        transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.login-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

/* Links de alternância (login/cadastro) */
.register-panel a,
.register-panel a:visited,
.login-panel a,
.login-panel a:visited {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.register-panel a:hover,
.login-panel a:hover {
    color: var(--accent);
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-1px);
}

/* Campos do formulário de login */
#loginForm label {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

#loginForm input[type="email"],
#loginForm input[type="password"] {
    width: 100%;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

#loginForm input[type="email"]::placeholder,
#loginForm input[type="password"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

#loginForm input[type="email"]:focus,
#loginForm input[type="password"]:focus {
    border-color: var(--accent);
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.2),
        inset 0 0 20px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

#loginForm input[type="email"]:focus::before,
#loginForm input[type="password"]:focus::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: inputShimmer 0.6s ease-out;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-panel h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 40px;
    color: var(--text-primary);
    background: linear-gradient(135deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.login-panel h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    border-radius: 2px;
}

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

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--roundness-md);
    font-size: 1rem;
    background: var(--bg);
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.4); /* Sombra azul no foco */
}

.login-button {
    width: 100%;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: white;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.login-button:hover {
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    transform: translateY(-4px);
    box-shadow: 
        0 16px 48px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

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

.login-button:active {
    transform: translateY(-2px);
    transition: all 0.1s ease;
}

.login-button:focus {
    outline: none;
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.3),
        0 8px 32px rgba(99, 102, 241, 0.3);
}

#error-message {
    color: #ff5c5c; /* Vermelho claro para erro */
    text-align: center;
    margin-top: 20px;
    height: 20px;
    font-weight: 500;
}

.movie-card, .search-panel, .modal-content {
    animation: fade-in 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sidebar overlay removed - no longer needed */

/* Store (Loja) */
.store-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.store-header {
    text-align: center;
    background: var(--glass-gradient);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: var(--roundness-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
}

.store-header h2 {
    font-size: 2.5rem;
    margin: 0 0 16px 0;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.store-subtext {
    color: var(--text-secondary);
    margin: 0 0 24px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.subscription-status {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-weight: 600;
    background: var(--glass-gradient);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.subscription-status.active {
    color: var(--primary);
    border-color: var(--accent);
    background: var(--accent-gradient);
    box-shadow: var(--shadow-md), 0 0 20px rgba(99, 102, 241, 0.3);
    animation: pulseGlow 3s ease-in-out infinite;
}

.subscription-status.inactive {
    color: var(--text-secondary);
    background: var(--glass-gradient);
    border-color: var(--border);
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.plan-card {
    background: var(--glass-gradient);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: var(--roundness-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    transition: var(--transition-slow);
    opacity: 0;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(99, 102, 241, 0.2);
    border-color: var(--border-focus);
    background: var(--glass-gradient-hover);
}

.plan-card:hover::before {
    left: 100%;
    opacity: 1;
    animation: shimmerWave 1.2s ease-out;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.plan-name { 
    font-weight: 700; 
    font-size: 1.3rem;
    color: var(--text-primary);
}

.plan-badge {
    font-size: 0.75rem;
    border: 1px solid var(--accent);
    color: var(--primary);
    background: var(--accent-gradient);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    animation: buttonPulse 2s ease-in-out infinite;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
    justify-content: center;
    padding: 16px 0;
    border-radius: var(--roundness-md);
    background: var(--surface-secondary);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
}

.plan-price .currency { 
    opacity: 0.9; 
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 600;
}

.plan-price .value { 
    font-size: 3rem; 
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.plan-price .cents { 
    opacity: 0.9; 
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 600;
}

.plan-price .period { 
    color: var(--text-secondary); 
    margin-left: 8px; 
    font-size: 1rem;
    font-weight: 500;
}

.plan-features { 
    list-style: none; 
    padding: 0; 
    margin: 24px 0; 
    color: var(--text-secondary);
    flex-grow: 1;
}

.plan-features li { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin: 12px 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: bold;
}

.plan-features li:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

/* Coupon field inside plan card */
.coupon-container {
    margin: 20px 0;
}

.coupon-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--glass-gradient);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: var(--roundness-md);
    outline: none;
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
    font-weight: 500;
}

.coupon-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.coupon-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--border-focus), inset 0 0 20px rgba(255, 255, 255, 0.05);
    background: var(--glass-gradient-hover);
    transform: scale(1.01);
}

.purchase-button {
    width: 100%;
    background: var(--accent-gradient);
    color: var(--primary);
    border: none;
    border-radius: var(--roundness-md);
    padding: 18px 24px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-lg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.purchase-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.purchase-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 25px rgba(99, 102, 241, 0.4);
    background: var(--accent-gradient-hover);
}

.purchase-button:hover::before {
    left: 100%;
    animation: shimmerWave 1s ease-out;
}

.purchase-button:active {
    transform: translateY(-1px) scale(0.98);
    transition: var(--transition-fast);
}

.purchase-button i {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.plan-note { 
    color: var(--text-secondary); 
    font-size: 0.85rem; 
    margin-top: 16px; 
    text-align: center;
    line-height: 1.4;
    opacity: 0.8;
}

/* Footer Styles */
.footer {
    background: var(--glass-gradient);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-top: 1px solid var(--border);
    margin-top: 80px;
    position: relative;
    animation: footerSlideUp 0.8s ease-out both;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: footerGlow 2s ease-in-out infinite alternate;
}

@keyframes footerSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes footerGlow {
    from {
        opacity: 0.6;
    }
    to {
        opacity: 1;
        box-shadow: 0 0 20px var(--accent);
    }
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px 40px 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    justify-items: center;
}

.footer-section {
    opacity: 0;
    transform: translateY(30px);
    animation: footerSectionSlide 0.6s ease-out both;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.footer-section h3 i {
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.footer-logo p {
    color: var(--text-secondary);
    margin-top: 8px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.9rem;
    width: 16px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px;
    background: var(--surface-secondary);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-radius: var(--roundness-md);
    border: 1px solid var(--border);
    transition: var(--transition-bounce);
    font-weight: 500;
}

.social-link:hover {
    background: var(--glass-gradient-hover);
    color: var(--accent);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-focus);
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    background: var(--surface-secondary);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--glass-gradient);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-badge:hover {
    background: var(--accent-gradient);
    color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.footer-badge i {
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        padding: 40px 20px 30px 20px;
        gap: 30px;
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .footer-bottom-content {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}

/* Responsive adjustments for login and register pages */
@media (max-width: 768px) {
    .login-page-body,
    .register-page-body {
        padding: 20px;
    }
    
    .login-panel,
    .register-panel {
        margin: 0;
        width: 100%;
        max-width: 100%;
        padding: 40px 24px;
        border-radius: 20px;
    }
    
    .login-panel h2,
    .register-panel h2 {
        font-size: 2rem;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .login-page-body,
    .register-page-body {
        align-items: flex-start;
        padding: 16px;
    }
    
    .login-panel,
    .register-panel {
        margin: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        min-height: 100vh;
        padding: 32px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .login-panel h2,
    .register-panel h2 {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }
    
    .login-panel input,
    .register-panel input,
    .login-button,
    .register-panel button {
        font-size: 1rem;
        padding: 18px 20px;
        min-height: 52px;
    }
    
    .login-panel label,
    .register-panel label {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    /* Adjust background elements for mobile */
    .login-page-body::before,
    .login-page-body::after,
    .register-page-body::before,
    .register-page-body::after {
        width: 200px;
        height: 200px;
    }
}

/* ===== BARRA DE PESQUISA GLASSMORPHISM AVANÇADO ===== */
.search-container {
    max-width: 800px;
    margin: 60px auto 40px auto;
    position: relative;
}

.search-box {
    display: flex;
    gap: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.12) 100%
    );
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Efeito de brilho interno */
.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Efeito de borda luminosa */
.search-box::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.1)
    );
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.search-box:focus-within {
    border-color: rgba(99, 102, 241, 0.8);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.18) 100%
    );
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transform: translateY(-3px) scale(1.01);
}

.search-box:focus-within::before {
    opacity: 1;
}

.search-box:focus-within::after {
    opacity: 1;
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.search-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    margin-left: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
    position: relative;
}

.search-box:focus-within .search-icon {
    color: rgba(99, 102, 241, 1);
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.4));
    transform: scale(1.1);
}

.search-box:hover .search-icon {
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

#searchInput {
    flex: 1;
    padding: 22px 24px 22px 20px;
    border: none;
    background: transparent;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    outline: none;
    min-width: 0;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

#searchInput:focus {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

#searchInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

#searchInput:focus::placeholder {
    color: rgba(255, 255, 255, 0.4);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.clear-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    padding: 10px;
    margin-right: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.clear-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.search-button {
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.9) 0%,
        rgba(139, 92, 246, 0.9) 50%,
        rgba(99, 102, 241, 0.9) 100%
    );
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 22px 36px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    min-width: 150px;
    justify-content: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 24px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.search-button:hover {
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.95) 0%,
        rgba(168, 85, 247, 0.95) 50%,
        rgba(124, 58, 237, 0.95) 100%
    );
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(99, 102, 241, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.search-button:hover::before {
    left: 100%;
}

.search-button:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 
        0 4px 16px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.search-button i {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.search-button span {
    font-weight: 600;
    letter-spacing: 0.8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.search-button:hover i {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
    transform: scale(1.1);
}

.search-button:hover span {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: translateX(2px);
}

/* Estado de loading */
.search-button.loading {
    pointer-events: none;
    background: linear-gradient(
        135deg,
        rgba(79, 70, 229, 0.9) 0%,
        rgba(124, 58, 237, 0.9) 50%,
        rgba(79, 70, 229, 0.9) 100%
    );
    border-color: rgba(255, 255, 255, 0.3);
}

.search-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.search-button.loading span,
.search-button.loading i {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Sugestões de busca */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    margin-top: 12px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 8px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: suggestionsSlideIn 0.3s ease-out;
}

@keyframes suggestionsSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-item {
    padding: 16px 24px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.suggestion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: left 0.5s ease;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    transform: translateX(5px);
    border-left: 3px solid rgba(99, 102, 241, 0.6);
}

.suggestion-item:hover::before {
    left: 100%;
}

.suggestion-item .suggestion-icon {
    color: rgba(99, 102, 241, 0.9);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.3));
    transition: all 0.3s ease;
}

.suggestion-item .suggestion-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.suggestion-item:hover .suggestion-icon {
    color: rgba(99, 102, 241, 1);
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.5));
    transform: scale(1.1);
}

.suggestion-item:hover .suggestion-text {
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Responsividade da barra de pesquisa */
@media (max-width: 768px) {
    .search-container {
        margin: 40px 20px 30px 20px;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 20px;
        backdrop-filter: blur(20px) saturate(160%);
        -webkit-backdrop-filter: blur(20px) saturate(160%);
    }
    
    .search-input-wrapper {
        border-radius: 20px 20px 0 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .search-button {
        border-radius: 0 0 20px 20px;
        width: 100%;
        min-width: auto;
        padding: 20px 28px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    #searchInput {
        padding: 20px 24px 20px 20px;
        font-size: 1rem;
    }
    
    .search-icon {
        margin-left: 20px;
        font-size: 1.2rem;
    }
    
    .clear-btn {
        margin-right: 16px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .search-container {
        margin: 30px 16px 20px 16px;
    }
    
    .search-box {
        border-radius: 18px;
        backdrop-filter: blur(18px) saturate(150%);
        -webkit-backdrop-filter: blur(18px) saturate(150%);
    }
    
    .search-input-wrapper {
        border-radius: 18px 18px 0 0;
    }
    
    .search-button {
        border-radius: 0 0 18px 18px;
        padding: 18px 24px;
        font-size: 0.95rem;
    }
    
    #searchInput {
        padding: 18px 20px 18px 16px;
        font-size: 1rem;
    }
    
    .search-icon {
        margin-left: 16px;
        font-size: 1.1rem;
    }
    
    .clear-btn {
        margin-right: 12px;
        padding: 6px;
        font-size: 1rem;
    }
}

/* Estilos para a seção de licença no modal de perfil */
.license-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--surface-secondary);
    border-radius: var(--roundness-md);
    border: 1px solid var(--border);
}

.license-section h3 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.license-section h3 i {
    color: var(--accent);
}

.license-status {
    margin-bottom: 1.5rem;
}

.license-status p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--surface-primary);
    border-radius: var(--roundness-sm);
    border: 1px solid var(--border);
}

.license-status strong {
    color: var(--text-secondary);
    font-weight: 600;
    min-width: 100px;
    flex-shrink: 0;
}

.license-status span {
    color: var(--text-primary);
    font-weight: 500;
    flex: 1;
}

/* Estilos específicos para diferentes tipos de informação */
.license-status p:nth-child(1) {
    border-left: 4px solid var(--accent);
}

.license-status p:nth-child(2) {
    border-left: 4px solid #22c55e;
}

.license-status p:nth-child(3) {
    border-left: 4px solid #f59e0b;
}

.license-status p:nth-child(4) {
    border-left: 4px solid #8b5cf6;
}

.license-status p:nth-child(5) {
    border-left: 4px solid #ef4444;
}

.license-status p:nth-child(6) {
    border-left: 4px solid #06b6d4;
}

.license-input-section {
    margin-top: 1rem;
}

.license-input-section label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
}

.license-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.license-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--roundness-md);
    background: var(--surface-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: var(--transition);
}

.license-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.license-input::placeholder {
    color: var(--text-tertiary);
}

.activate-license-btn {
    padding: 0.75rem 1.25rem;
    background: var(--accent-gradient);
    color: var(--primary);
    border: none;
    border-radius: var(--roundness-md);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    white-space: nowrap;
}

.activate-license-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    background: var(--accent-gradient-hover);
}

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

.activate-license-btn i {
    font-size: 1rem;
}

.license-message {
    min-height: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.license-message.success {
    color: #22c55e;
}

.license-message.error {
    color: #ef4444;
}

.license-message.info {
    color: var(--accent);
}

/* Status da licença com cores */
#profile-license-status.ativa {
    color: #22c55e;
    font-weight: 600;
}

#profile-license-status.inativa {
    color: #ef4444;
    font-weight: 600;
}

#profile-license-status.expirada {
    color: #f59e0b;
    font-weight: 600;
}

#profile-license-status.carregando {
    color: var(--text-secondary);
    font-style: italic;
}

/* Nota de demonstração */
.demo-note {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 8px 12px;
    margin-top: 10px;
    color: #856404;
    font-size: 0.9em;
}

.demo-note strong {
    color: #d63031;
}



/* Responsividade para a seção de licença */
@media (max-width: 480px) {
    .license-input-group {
        flex-direction: column;
    }
    
    .activate-license-btn {
        width: 100%;
        justify-content: center;
    }
    
    .license-section {
        padding: 1rem;
    }
}

/* Estilos para alerta de licença inativa */
.licenca-alert {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 3rem 2rem;
    text-align: center;
    background: var(--glass-gradient);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-radius: var(--roundness-xl);
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    animation: licenceAlertSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.licenca-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        rgba(99, 102, 241, 0.4), 
        rgba(255, 255, 255, 0.2), 
        transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.licenca-alert-icon {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: iconBounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s forwards;
}

.licenca-alert h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: textSlideUp 0.6s ease-out 0.5s forwards;
}

.licenca-alert p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: textSlideUp 0.6s ease-out 0.7s forwards;
}

.licenca-alert-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    opacity: 0;
    animation: buttonsSlideUp 0.6s ease-out 0.9s forwards;
}

.licenca-alert-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--roundness-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 160px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.licenca-alert-btn.primary {
    background: var(--accent-gradient);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.licenca-alert-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--accent-gradient-hover);
}

.licenca-alert-btn.secondary {
    background: var(--surface-hover);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.licenca-alert-btn.secondary:hover {
    background: var(--surface);
    border-color: var(--accent);
    transform: translateY(-1px);
}

@keyframes licenceAlertSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes iconBounceIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes textSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonsSlideUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .licenca-alert {
        margin: 1rem;
        padding: 2rem 1.5rem;
        min-height: 50vh;
    }
    
    .licenca-alert h2 {
        font-size: 2rem;
    }
    
    .licenca-alert p {
        font-size: 1.1rem;
    }
    
    .licenca-alert-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .licenca-alert-btn {
        width: 100%;
        min-width: unset;
    }
}

/* Estilos para tela de acesso negado */
.access-denied-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
}

.access-denied-content {
    text-align: center;
    max-width: 500px;
    background: var(--glass-gradient);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-radius: var(--roundness-xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.access-denied-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.access-denied-content h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.access-denied-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.access-denied-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.access-denied-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--roundness-md);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.access-denied-btn.primary {
    background: var(--accent-gradient);
    color: var(--primary);
}

.access-denied-btn.primary:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.access-denied-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.access-denied-btn.secondary:hover {
    background: var(--border);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsividade para tela de acesso negado */
@media (max-width: 480px) {
    .access-denied-content {
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    .access-denied-actions {
        flex-direction: column;
    }
    
    .access-denied-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Estilos para aviso de permissão */
.permission-warning {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease-out;
}

.permission-warning-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.permission-warning-content i {
    font-size: 1.1rem;
    color: #fff;
}

.permission-warning-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.permission-warning-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.permission-warning-close {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.permission-warning-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsividade para aviso de permissão */
@media (max-width: 768px) {
    .permission-warning-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .permission-warning-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== PERFIL REDESENHADO ===== */

.profile-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: profileFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.profile-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
    animation: avatarPulse 2s ease-in-out infinite;
}

.profile-avatar i {
    font-size: 3rem;
    color: white;
}

.profile-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #fff, #e2e8f0, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.8;
}

.profile-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
    justify-content: center;
}

.profile-card {
    background: var(--glass-gradient);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: var(--roundness-xl);
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    min-height: 280px;
    align-self: stretch;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        rgba(99, 102, 241, 0.3), 
        rgba(255, 255, 255, 0.2), 
        transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(99, 102, 241, 0.1);
}

.profile-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-header i {
    font-size: 1.5rem;
    color: var(--accent);
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Account Card Styles */
.account-card .card-header i {
    color: #10b981; /* Emerald */
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 8px;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    flex: 0 0 auto;
}

.info-label i {
    font-size: 1.1rem;
    color: var(--accent-secondary);
    flex-shrink: 0;
}

.info-value {
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 200px;
    line-height: 1.3;
    min-height: 1.3em;
}

/* Layout responsivo para info-items quando o conteúdo é longo */
@media (max-width: 500px) {
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .info-value {
        text-align: left;
        max-width: 100%;
    }
}

/* Para conteúdo longo (emails, etc.) */
.info-value.email-value {
    flex: 1 1 100%;
    text-align: left;
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.2;
}

.info-item.email-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.info-item.email-item .info-value {
    text-align: left;
    max-width: 100%;
    font-size: 0.9rem;
}

.status-active {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* License Card Styles */
.license-card .card-header i {
    color: #f59e0b; /* Amber */
}

.license-status-container {
    margin-bottom: 24px;
}

.license-status-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--roundness-lg);
    margin-bottom: 12px;
}

.license-status-badge i {
    font-size: 1.3rem;
    color: var(--accent);
}

.license-status-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.license-expiry {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.input-group {
    display: flex;
    gap: 0;
    border-radius: var(--roundness-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
}

.license-input {
    flex: 1;
    padding: 16px;
    border: 1px solid var(--border);
    border-right: none;
    background: var(--surface);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.license-input:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--surface-hover);
}

.activate-btn {
    padding: 16px 24px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.activate-btn:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-1px);
}

.license-help {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.license-help a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.license-help a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

/* Info Card Styles */
.info-card .card-header i {
    color: #06b6d4; /* Cyan */
}

.license-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-primary);
    font-weight: 500;
}

.license-info-item i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Profile Actions */
.profile-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.profile-action-btn {
    padding: 16px 32px;
    border: none;
    border-radius: var(--roundness-lg);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.profile-action-btn.primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.profile-action-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--accent-gradient-hover);
}

.profile-action-btn.secondary {
    background: var(--surface-hover);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.profile-action-btn.secondary:hover {
    background: var(--surface);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes profileFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes avatarPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-container {
        padding: 20px 16px;
    }
    
    .profile-header h2 {
        font-size: 2.2rem;
    }
    
    .profile-avatar {
        width: 80px;
        height: 80px;
    }
    
    .profile-avatar i {
        font-size: 2.5rem;
    }
    
    .profile-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .profile-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .profile-action-btn {
        width: 100%;
        min-width: unset;
    }
    
    .input-group {
        flex-direction: column;
        gap: 1px;
    }
    
    .license-input {
        border: 1px solid var(--border);
        border-radius: var(--roundness-md) var(--roundness-md) 0 0;
    }
    
    .activate-btn {
        border-radius: 0 0 var(--roundness-md) var(--roundness-md);
    }
}

/* Reset Password Page Styles - Modern Design */
.reset-panel {
    max-width: 480px;
    min-height: auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible;
}

.reset-panel::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.3) 0%,
        rgba(139, 92, 246, 0.3) 25%,
        rgba(6, 182, 212, 0.3) 50%,
        rgba(16, 185, 129, 0.3) 75%,
        rgba(99, 102, 241, 0.3) 100%
    );
    border-radius: inherit;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.6;
    animation: borderGlow 4s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.4; filter: blur(8px); }
    100% { opacity: 0.8; filter: blur(12px); }
}

/* Header Redesign */
.reset-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.reset-icon-container {
    position: relative;
    margin-bottom: 24px;
}

.reset-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.8) 0%,
        rgba(139, 92, 246, 0.8) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.reset-icon::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--surface);
    border-radius: 50%;
    z-index: 1;
}

.reset-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
    position: relative;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

/* Icon Background Particles */
.icon-bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 50%;
}

.icon-bg-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 3s infinite ease-in-out;
}

.icon-bg-particles .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.icon-bg-particles .particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.icon-bg-particles .particle:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

.reset-header h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.reset-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0 0 32px;
    opacity: 0.9;
}

/* Spam Alert Redesign */
.spam-alert {
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.08) 0%,
        rgba(251, 191, 36, 0.05) 100%
    );
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--roundness-lg);
    padding: 16px 20px;
    margin-bottom: 32px;
    display: flex;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.spam-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.alert-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.alert-icon i {
    color: #f59e0b;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.3));
}

.alert-content {
    flex: 1;
}

.alert-content strong {
    color: #f59e0b;
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.alert-content span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Form Redesign */
.reset-form {
    margin-bottom: 32px;
}

.input-group {
    margin-bottom: 32px;
}

.input-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1rem;
}

.input-label i {
    color: var(--accent);
    font-size: 1.1rem;
}

.input-container {
    position: relative;
}

.reset-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--roundness-lg);
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.reset-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.input-border {
    position: absolute;
    inset: 0;
    border-radius: var(--roundness-lg);
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.reset-input:focus + .input-border {
    opacity: 0.2;
}

/* Button Redesign */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reset-button {
    position: relative;
    padding: 16px 24px;
    border: none;
    border-radius: var(--roundness-lg);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
}

.reset-button.primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.reset-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.reset-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reset-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--accent-secondary);
}

.reset-button.accent {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.reset-button.accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.35);
}

.button-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.button-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reset-button:hover .button-effect {
    opacity: 1;
}

/* Actions Section */
.reset-actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.back-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--roundness-md);
}

.back-link:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
    transform: translateX(-4px);
}

.help-center {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.help-button {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 10px 20px;
    border-radius: var(--roundness-md);
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.help-button:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
}

.reset-message {
    padding: 16px;
    border-radius: var(--roundness-md);
    margin: 20px 0;
    font-size: 0.95rem;
    text-align: center;
    transition: var(--transition);
}

.reset-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.reset-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.reset-message.info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.reset-back {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.back-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--roundness-sm);
}

.back-link:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
    transform: translateX(-4px);
}

.back-link i {
    font-size: 1rem;
}

.test-button {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    padding: 6px 12px;
    border-radius: var(--roundness-sm);
    cursor: pointer;
    font-family: inherit;
}

.test-button:hover {
    color: var(--accent-secondary);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-secondary);
}

.test-button i {
    font-size: 0.8rem;
}

/* Forgot Password Link */
.forgot-password {
    text-align: right;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.forgot-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    padding: 4px 8px;
    border-radius: var(--roundness-sm);
}

.forgot-link:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-1px);
}

.forgot-link i {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Reset Modal Styles */
.reset-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.reset-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.reset-modal-content {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--roundness-lg);
    padding: 0;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.reset-modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reset-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.reset-modal-header h3 i {
    color: var(--accent);
    font-size: 1.2rem;
}

.close-modal-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--roundness-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.reset-modal-body {
    padding: 32px;
}

.reset-modal-body p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 24px;
}

.modal-input-group {
    margin-bottom: 24px;
}

.modal-input-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 32px;
}

.modal-actions .login-button {
    margin: 0;
    flex: 0 0 auto;
}

.modal-actions .login-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.modal-actions .login-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--accent-secondary);
}

.modal-message {
    padding: 12px 16px;
    border-radius: var(--roundness-md);
    margin: 16px 0 0;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition);
}

.modal-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.modal-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.modal-message.info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.modal-spam-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--roundness-md);
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.modal-spam-warning i {
    color: #f59e0b;
    font-size: 1rem;
    flex-shrink: 0;
}

.modal-spam-warning strong {
    color: #f59e0b;
}

/* Responsive Modal */
@media (max-width: 520px) {
    .reset-modal {
        padding: 16px;
    }
    
    .reset-modal-content {
        max-width: 100%;
    }
    
    .reset-modal-header,
    .reset-modal-body {
        padding: 20px;
    }
    
    .reset-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .modal-actions .login-button {
        width: 100%;
    }
    
    .forgot-password {
        align-items: stretch;
    }
    
    .forgot-link {
        justify-content: center;
    }
}

/* Success State */
.reset-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s ease-in-out;
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.reset-success h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0 0 16px;
    font-weight: 600;
}

.reset-success p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 32px;
    font-size: 1rem;
}

.help-tips {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--roundness-md);
    padding: 20px;
    margin: 24px 0;
    text-align: left;
}

.help-tips h4 {
    color: var(--accent);
    font-size: 1rem;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-tips ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-secondary);
}

.help-tips li {
    margin: 6px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.spam-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--roundness-md);
    padding: 16px;
    margin-top: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.spam-warning i {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.spam-warning strong {
    color: #f59e0b;
    display: block;
    margin-bottom: 4px;
}

.spam-warning p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.alternative-support {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--roundness-md);
    padding: 20px;
    margin-top: 24px;
    text-align: center;
}

.alternative-support h4 {
    color: #10b981;
    font-size: 1.1rem;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.alternative-support p {
    color: var(--text-secondary);
    margin: 12px 0;
    font-size: 0.95rem;
}

.alternative-support .login-button.support {
    background: linear-gradient(135deg, #10b981, #059669);
    margin: 16px 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.alternative-support .login-button.support:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.support-note {
    font-size: 0.85rem !important;
    color: var(--text-secondary) !important;
    font-style: italic;
    opacity: 0.8;
}

.copy-email-btn {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    border-radius: var(--roundness-md);
    padding: 8px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    margin: 12px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-family: inherit;
}

.copy-email-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    transform: translateY(-1px);
}

.copy-email-btn i {
    font-size: 0.9rem;
}

.spam-tips-btn:hover {
    color: #f59e0b !important;
    background: rgba(245, 158, 11, 0.05) !important;
    border-color: rgba(245, 158, 11, 0.5) !important;
}

/* Melhorias para mensagens importantes */
.help-tips strong {
    color: #f59e0b;
}

.reset-success {
    text-align: center;
    padding: 20px 0;
    position: relative;
}

/* Animação para chamar atenção para pasta de spam */
@keyframes pulseWarning {
    0%, 100% { 
        background: rgba(245, 158, 11, 0.1);
        border-color: rgba(245, 158, 11, 0.3);
    }
    50% { 
        background: rgba(245, 158, 11, 0.15);
        border-color: rgba(245, 158, 11, 0.5);
    }
}

.spam-warning {
    animation: pulseWarning 3s ease-in-out infinite;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.success-actions .login-button {
    margin: 0;
}

.success-actions .login-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.success-actions .login-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
}

/* Responsive Design for Reset Page */
@media (max-width: 480px) {
    .reset-panel {
        margin: 20px;
        padding: 32px 24px;
        max-width: calc(100% - 40px);
    }
    
    .reset-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .reset-icon i {
        font-size: 1.6rem;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
    }
    
    .success-icon i {
        font-size: 2rem;
    }
    
    .success-actions {
        gap: 12px;
    }
    
    .reset-success h3 {
        font-size: 1.3rem;
    }
}

/* Success State - Enhanced Modern Design */
.success-container {
    display: none;
    text-align: center;
    animation: successFadeIn 0.6s ease-out;
}

@keyframes successFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-animation {
    position: relative;
    margin-bottom: 32px;
}

.success-icon-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.success-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.15) 0%, 
        rgba(34, 197, 94, 0.15) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: successPulse 2s ease-in-out infinite;
}

.success-circle::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.3), 
        rgba(34, 197, 94, 0.3)
    );
    border-radius: 50%;
    animation: successGlow 3s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes successGlow {
    0% { 
        opacity: 0.3;
        filter: blur(4px);
    }
    100% { 
        opacity: 0.8;
        filter: blur(8px);
    }
}

.success-checkmark {
    position: relative;
    width: 48px;
    height: 48px;
}

.success-checkmark::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: bold;
    color: #10b981;
    animation: checkmarkDraw 1s ease-out 0.5s both;
}

@keyframes checkmarkDraw {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

.success-sparks {
    position: absolute;
    inset: 0;
}

.spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: sparkFly 1.5s ease-out infinite;
}

.spark:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0.2s;
}

.spark:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.spark:nth-child(3) {
    bottom: 25%;
    left: 25%;
    animation-delay: 0.8s;
}

.spark:nth-child(4) {
    bottom: 15%;
    right: 20%;
    animation-delay: 1.1s;
}

@keyframes sparkFly {
    0% {
        opacity: 0;
        transform: scale(0) translateY(0);
    }
    50% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) translateY(-40px);
    }
}

.success-title {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
}

.success-message {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Tips Grid */
.success-tips {
    margin-bottom: 40px;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 450px;
    margin: 0 auto;
}

.tip-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--roundness-lg);
    padding: 20px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.tip-card:hover::before {
    transform: translateX(0);
}

.tip-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tip-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary);
}

.tip-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.tip-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Support Section */
.success-support {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--roundness-lg);
    padding: 24px;
    margin-bottom: 32px;
}

.support-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.support-icon {
    color: #10b981;
    font-size: 1.3rem;
}

.support-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.support-text {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.support-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--roundness-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    max-width: 300px;
}

.contact-text {
    color: var(--text-secondary);
    font-family: monospace;
    font-size: 0.95rem;
}

.copy-btn {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 6px 12px;
    border-radius: var(--roundness-sm);
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.copy-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--accent);
    transform: scale(1.05);
}

/* Success Actions */
.success-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}