/* ============================
   VARIÁVEIS
============================ */
:root { 
    --red: #e50914; 
    --text: #ffffff; 
}

/* ============================
   RESET
============================ */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', sans-serif; 
}

/* ============================
   BODY (SEM SCROLL)
============================ */
html, body {
    height: 100%;
    overflow: hidden;
}

body { 
    display: flex; 
    flex-direction: column;
    color: var(--text);

    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)), 
                url('img/bg-home.png') no-repeat center center / cover;
    background-color: #000;
}

/* ============================
   NAVBAR
============================ */
.navbar { 
    height: 90px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 0 80px; 
    background: transparent;   /* fundo transparente */
}

.logo-img { 
    height: 60px; 
}

.nav-links { 
    display: flex; 
    align-items: center;
    gap: 35px; 
}

.nav-item { 
    color: #fff; 
    font-size: 14px; 
    font-weight: 600; 
    text-transform: uppercase; 
    text-decoration: none;
    transition: 0.3s;
}

.nav-item:hover {
    color: var(--red);
}

.btn-nav-active {
    border: 2px solid var(--red);
    padding: 8px 25px;
    border-radius: 30px;
}

/* ============================
   HERO / CONTAINER DA ATIVAÇÃO
============================ */
.hero-section { 
    flex: 1;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
}

.activation-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* ============================
   BOX DE ATIVAÇÃO
============================ */
.act-box {
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    text-align: center;
    color: #fff;
    animation: fadeInBox 0.5s ease forwards;
}

.act-title { 
    font-size: 28px; 
    font-weight: 900; 
    margin-bottom: 10px; 
}

.act-sub { 
    font-size: 16px; 
    margin-bottom: 25px; 
}

.step-content { display: none; }
.step-content.active { display: block; animation: fadeIn 0.3s; }

.mac-input {
    width: 100%; 
    padding: 15px; 
    font-size: 18px; 
    text-align: center; 
    letter-spacing: 2px;
    border: 2px solid #ddd; 
    border-radius: 8px; 
    margin-bottom: 20px; 
    background: #fff; 
    color: #333;
}

.btn-big {
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    background: var(--red);
    color: #fff;
}
.btn-big:hover {
    background: #ff0b17;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.5);
}

/* ============================
   PLANOS
============================ */
.plans-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
.plan-card {
    border: 1px solid #e50914;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: 0.2s;
    background: rgba(255,255,255,0.05);
}
.plan-card:hover, .plan-card.selected {
    background: rgba(229,9,20,0.2);
}

/* ============================
   QR E COPY
============================ */
.qr-area {
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.qr-img { width: 180px; height: 180px; }
.copy-code {
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ddd; 
    background: #fff;
    font-size: 12px; 
    color: #333; 
    margin-top: 10px; 
    resize: none;
}

/* ============================
   ALERTAS
============================ */
.alert { padding: 10px; margin-bottom: 15px; border-radius: 4px; font-weight: bold; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; }
.alert-error { background: #f8d7da; color: #721c24; }

/* ============================
   ANIMAÇÕES
============================ */
@keyframes fadeInBox {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================
   FOOTER
============================ */
footer {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: rgba(0,0,0,0.6);
    border-top: 2px solid var(--red);
    letter-spacing: 1px;
    animation: fadeInFooter 0.8s ease forwards;
}

footer a {
    color: var(--red);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
footer a:hover { color: #fff; }

@keyframes fadeInFooter {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============================
   FUNDO
============================ */
#bg-fixo {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: url("https://atonflix.shop/app/img/Backgroundlogin.png") no-repeat center center / cover;
    z-index: -200;
}
#bg-glow-overlay {
    position: fixed; top:0; left:0; width:100%; height:100%;
    background: radial-gradient(circle at center, rgba(229,9,20,0.25) 0%, rgba(0,0,0,0.92) 100%);
    z-index: -100;
}
