/* Importação de Fonte Moderna */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

:root {
    --bg-deep: #050505;
    --bg-card: #0f0f12;
    --primary-red: #ff3b3b;
    --dark-red: #a10000;
    --text-main: #ffffff;
    --text-dim: #a1a1aa;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
}

/* Efeito de Brilho no Fundo (Glow) */
body::before {
    content: "";
    position: fixed;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.15) 0%, transparent 70%);
    z-index: -1;
}

/* Header Profissional */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span { color: var(--primary-red); }

/* Botão de 3 Barras (Hamburger) */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-red);
    transition: 0.3s;
}

/* Hero Section (A parte que vende) */
.hero-sales {
    padding: 100px 8%;
    text-align: center;
}

.hero-sales h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sales p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Botão Vermelho Neon */
.btn-primary-red {
    background: var(--primary-red);
    color: white;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.4);
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 59, 59, 0.6);
    background: var(--dark-red);
}

/* Grid de Produtos */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 8%;
}

.product-premium-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.product-premium-card:hover {
    border-color: var(--primary-red);
    background: rgba(255, 59, 59, 0.02);
}

.product-premium-card h3 {
    margin-top: 15px;
    font-size: 1.4rem;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
    margin: 20px 0;
}

/* =========================================
   SESSÃO DE LOGIN (ESTILOS ADICIONAIS)
   ========================================= */

.login-section {
    min-height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 8%;
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px;
    width: 100%;
    max-width: 480px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.badge-elite {
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.login-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
}

.login-header h2 span { color: var(--primary-red); }

.login-header p {
    color: var(--text-dim);
    margin-top: 10px;
    font-size: 0.95rem;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dim);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.input-wrapper input {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
}

.input-wrapper input:focus {
    border-color: var(--primary-red);
    background: rgba(255, 59, 59, 0.05);
    outline: none;
    box-shadow: 0 0 15px rgba(255, 59, 59, 0.1);
}

.form-utils {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.85rem;
}

.check-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-dim);
}

.check-container input {
    margin-right: 8px;
    accent-color: var(--primary-red);
}

.link-red {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.link-red:hover { text-decoration: underline; }

.login-footer {
    text-align: center;
    margin-top: 30px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.link-white {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.link-white:hover { color: var(--primary-red); }