/* ============================
   VARIÁVEIS
============================ */
:root { 
    --red: #e50914; 
    --text: #ffffff; 
}

/* ============================
   RESET
============================ */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', sans-serif; 
}

/* ============================
   TRAVA TOTAL DA VIEWPORT
============================ */
html, body {
    height: 100vh;
    overflow: hidden; /* SEM SCROLL */
}

/* ============================
   LAYOUT PRINCIPAL
============================ */
body { 
    display: flex; 
    flex-direction: column;
    height: 100vh;
    color: var(--text);
    background: #000;
}

/* ============================
   NAVBAR
============================ */
.navbar { 
    height: 90px; 
    min-height: 90px;
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 0 5vw; 
    flex-shrink: 0;
}

.logo-img { 
    height: 55px; 
}

.nav-links { 
    display: flex; 
    align-items: center;
    gap: 2vw; 
}

.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: 6px 20px;
    border-radius: 30px;
}

/* ============================
   HERO (ÁREA CONTROLADA)
============================ */
.hero-section { 
    flex: 1;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

/* ============================
   IMAGEM PRINCIPAL
============================ */
.tv-img { 
    max-height: 28vh; 
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-12px); } 
}

/* ============================
   TEXTOS RESPONSIVOS
============================ */
.hero-title { 
    font-size: clamp(28px, 4vh, 56px);
    font-weight: 900; 
    line-height: 1.1; 
}

.hero-sub { 
    margin-top: 20px;
    font-size: clamp(14px, 2vh, 22px);
}

.highlight {
    color: var(--red);
}

/* ============================
   LOGOS LOJA
============================ */
.hero-store {
    margin-top: 25px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 20px;
    flex-wrap: wrap;
}

.aton-inline {
    height: 32px;
}

.lg-logo {
    width: 150px;
}

/* ============================
   FOOTER FIXO
============================ */
.footer-custom {
    height: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    background: rgba(0,0,0,0.85);
    border-top: 2px solid var(--red);
    flex-shrink: 0;
}

.footer-custom a {
    color: var(--red);
    text-decoration: none;
    font-weight: bold;
}

/* ============================
   BACKGROUND FIXO
============================ */
#bg-fixo {
    position: fixed;
    inset: 0;
    background: url("https://atonflix.shop/app/img/Backgroundlogin.png") no-repeat center center / cover;
    z-index: -2;
}

#bg-glow-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(229,9,20,0.2) 0%, rgba(0,0,0,0.95) 100%);
    z-index: -1;
}
