/* style-login.css - ESTILO NEON PREMIUM */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

:root {
    --primary-neon: #bc13fe;
    --bg-dark: #0a0510;
    --card-bg: rgba(255, 255, 255, 0.02);
    --border-color: rgba(188, 19, 254, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at top right, #1a0a2e 0%, #0a0510 50%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navbar Estilo Glass */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    font-size: 20px;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(188, 19, 254, 0.4));
}

.logo strong {
    letter-spacing: 1px;
    font-weight: 800;
}

nav a { 
    color: white; 
    text-decoration: none; 
    margin-left: 30px; 
    font-size: 12px; 
    font-weight: 700; 
    letter-spacing: 1px;
    transition: 0.3s;
    opacity: 0.8;
}
nav a:hover { color: var(--primary-neon); opacity: 1; }

/* Hero Section */
.main-container { max-width: 1200px; margin: 0 auto; text-align: center; padding: 60px 20px; }

.hero-section h1 { 
    font-size: 55px; 
    font-weight: 800; 
    line-height: 1.1; 
    margin-bottom: 15px; 
    text-transform: uppercase;
    font-style: italic;
}
.hero-section h1 span { 
    color: white; 
    text-shadow: 0 0 20px rgba(188, 19, 254, 0.8), 0 0 40px rgba(188, 19, 254, 0.4); 
}

.hero-section p { 
    color: #888; 
    font-size: 15px; 
    margin-bottom: 50px; 
}

/* Grid de Cards */
.login-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Estilo Comum Cards */
.card { border-radius: 30px; padding: 40px; }

/* Card Profissional */
.card-profissional {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.1);
    text-align: left;
}

.card-tag { 
    font-size: 13px; 
    color: #999; 
    margin-bottom: 30px; 
    text-align: center;
    font-weight: 500;
}

.input-group { margin-bottom: 20px; }
.input-group label { 
    display: block; 
    font-size: 10px; 
    color: var(--primary-neon); 
    margin-bottom: 8px; 
    font-weight: 800;
    letter-spacing: 1px;
}
.input-group input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    outline: none;
    transition: 0.3s;
}
.input-group input:focus {
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.2);
}

.error-text { 
    color: #ff4b4b; 
    font-size: 12px; 
    margin-bottom: 15px; 
    display: none; 
    font-weight: 600;
}

.btn-logar {
    width: 100%;
    background: var(--primary-neon);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(188, 19, 254, 0.4);
    transition: 0.3s;
}
.btn-logar:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(188, 19, 254, 0.6); }

.divider { text-align: center; margin: 25px 0; border-bottom: 1px solid rgba(255,255,255,0.05); height: 10px; }
.divider span { background: #0d0718; padding: 0 15px; color: #444; font-size: 10px; font-weight: 800; }

.btn-cadastrar {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

/* Card VIP */
.card-vip { text-align: center; background: transparent; }
.vip-top-text { font-weight: 600; font-size: 20px; color: #bbb; margin-bottom: 15px; }
.vip-main-text { 
    font-size: 55px; 
    font-weight: 900; 
    line-height: 1.1; 
    margin-bottom: 40px;
    color: var(--primary-neon);
    text-shadow: 0 0 30px rgba(188, 19, 254, 0.5);
    text-transform: uppercase;
    font-style: italic;
}

.btn-download-vip {
    background: transparent;
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    border: 2px solid var(--primary-neon);
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: 0.4s;
}
.btn-download-vip:hover {
    background: var(--primary-neon);
    box-shadow: 0 0 40px rgba(188, 19, 254, 0.6);
    transform: scale(1.05);
}
.btn-download-vip span { display: block; font-size: 10px; margin-top: 5px; opacity: 0.7; }

/* Responsividade */
@media (max-width: 1000px) {
    .login-grid { grid-template-columns: 1fr; max-width: 500px; }
    .hero-section h1 { font-size: 35px; }
    .vip-main-text { font-size: 40px; }
}