/* Estilo Base */
:root {
    --netflix-red: #E50914;
    --dark-bg: #141414;
    --text-light: #FFFFFF;
    --glass-bg: rgba(20, 20, 20, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow: hidden;
    height: 100vh;
}

/* Fundo com imagem borrada (estilo capa de filme escurecida) */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('https://assets.nflxext.com/ffe/siteui/vlv3/20bf1f4d-1c73-48fd-8689-310d6dd80efc/81bdc063-cb8f-4afe-8a02-a3131ca4ef5e/BR-pt-20240812-POP_SIGNUP_TWO_WEEKS-perspective_WEB_a0c4f828-5a67-4bb5-903f-7f89d5cc922b_large.jpg') no-repeat center center/cover;
    filter: brightness(0.3) blur(5px);
    z-index: -1;
}

/* Container Principal */
.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0 5%;
    background: linear-gradient(to top, rgba(20,20,20,1) 0%, rgba(20,20,20,0) 100%);
}

/* Cabeçalho */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    animation: fadeInDown 1s ease-out;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.profile-icon {
    position: relative;
    display: inline-block;
}

.user-avatar {
    font-size: 35px;
    color: #e5e5e5;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
}

.user-avatar:hover {
    transform: scale(1.1);
    color: #ffffff;
}

/* Dropdown Administrativo */
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 10px 0;
    min-width: 180px;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.profile-icon:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

.dropdown-menu a {
    color: #e5e5e5;
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Seção Principal (Hero) */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    animation: fadeInLeft 1.5s ease-out;
}

.title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #8fff00; /* Verde neon específico solicitado pelo usuário */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Botões */
.action-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--text-light);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: rgba(109, 109, 110, 0.7);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: rgba(109, 109, 110, 0.9);
    transform: scale(1.05);
}

/* Rodapé Administrativo - Glassmorphism */
/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Responsividade */
@media (max-width: 768px) {
    .title { font-size: 2.5rem; }
    .subtitle { font-size: 1.2rem; }
    .action-buttons { flex-direction: column; }
}
