/* Reset e Variáveis de Cor (Estilo Netflix Premium) */
:root {
    --bg-principal: #141414; 
    --bg-card: #181818;      
    --vermelho-netflix: #E50914; 
    --vermelho-hover: #B81D24;
    --texto-claro: #FFFFFF;
    --texto-mutado: #A3A3A3;
    --borda-fina: rgba(255, 255, 255, 0.08);
    --neon-glow: rgba(229, 9, 20, 0.15);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
}

body { 
    background-color: var(--bg-principal); 
    color: var(--texto-claro); 
    padding: 40px 20px; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    min-height: 100vh;
    background: radial-gradient(circle at center, #1f1f1f 0%, #141414 100%);
}

/* Container Principal Adaptativo */
.container { 
    background: var(--bg-card); 
    border: 1px solid var(--borda-fina); 
    max-width: 800px; 
    width: 100%; 
    border-radius: 16px; 
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 
                0 0 50px var(--neon-glow);
}

/* Wrapper da Imagem Interativa */
.hero-banner {
    position: relative;
    width: 100%;
    height: 500px; 
    overflow: hidden;
    cursor: zoom-in; 
    -webkit-tap-highlight-color: transparent; /* Remove o flash azul ao tocar em celulares */
}

.hero-banner img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform; /* Informa a GPU do celular para preparar o processamento */
}

/* Efeito suave de aproximação ao passar o mouse */
@media (hover: hover) {
    .hero-banner:hover img {
        transform: scale(1.02);
    }
}

/* Degradê cinematográfico integrado */
.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, var(--bg-card) 0%, rgba(24, 24, 24, 0) 100%);
    pointer-events: none; 
}

/* Bloco de Conteúdo */
.content {
    padding: 40px;
    position: relative;
    margin-top: -30px; 
    z-index: 2;
}

h1 { 
    color: var(--texto-claro); 
    margin-bottom: 12px; 
    font-size: 2.5rem; 
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.badge-line {
    width: 80px;
    height: 4px;
    background-color: var(--vermelho-netflix);
    border-radius: 2px;
    margin-bottom: 24px;
}

p { 
    color: var(--texto-mutado); 
    line-height: 1.8; 
    margin-bottom: 35px; 
    font-size: 1.1rem;
    font-weight: 300;
}

/* Grupo de Ações Flexível */
.actions-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

/* Padronização dos Botões de Elite */
.btn-premium { 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    padding: 16px 32px; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 1rem; 
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    width: 100%; 
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    outline: none;
}

/* Botão Primário (Ação Principal) */
.btn-primary {
    background: var(--vermelho-netflix); 
    color: var(--texto-claro); 
    border: none;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.btn-primary:hover { 
    background: var(--vermelho-hover); 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.5);
}

/* Botão Secundário (WhatsApp Reestilizado para Apresentação) */
.btn-secondary {
    background-color: transparent;
    color: var(--texto-claro);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: #00f2ff; 
    color: #00f2ff;
    background-color: rgba(37, 211, 102, 0.05);
    transform: translateY(-2px);
}

.btn-premium:active {
    transform: translateY(0);
}

/* --- LIGHTBOX (Imagem em Tela Cheia Ultra Fluida) --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    cursor: zoom-out;
    will-change: opacity;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.lightbox.active img {
    transform: scale(1);
}

/* --- RESPONSIVIDADE (Adaptação Inteligente) --- */

/* Computadores, Notebooks e Tablets deitados */
@media (min-width: 768px) {
    .actions-group {
        flex-direction: row; /* Alinha os botões lado a lado */
    }
    .hero-banner {
        height: 520px;
    }
}

/* Celulares de todos os tamanhos */
@media (max-width: 480px) {
    body { padding: 15px 10px; }
    .hero-banner { height: 320px; }
    .content { padding: 30px 20px; }
    h1 { font-size: 1.95rem; }
    .btn-premium { padding: 14px 24px; font-size: 0.95rem; }
}