/* RESET GLOBAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

/* BODY */

body{
background:white;
min-height:100vh;
width:100%;
display:flex;
flex-direction:column;
align-items:center;
}

/* ========================= */
/* BARRA SUPERIOR */
/* ========================= */

.top-links{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
padding:12px 30px;
background:white;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
z-index:100;
}

/* PERFIL */

.perfil{
display:flex;
align-items:center;
gap:10px;
}

.perfil img{
width:40px;
height:40px;
border-radius:50%;
object-fit:cover;
cursor:pointer;
}

.perfil span{
font-weight:bold;
color:#1e3a8a;
font-size:16px;
}

/* MENU */

.menu-links{
display:flex;
gap:20px;
}

.menu-links a{
text-decoration:none;
font-size:16px;
color:#1e3a8a;
font-weight:bold;
}

.menu-links a:hover{
text-decoration:underline;
}

/* INPUT FOTO ESCONDIDO */

#uploadFoto{
display:none;
}

/* ========================= */
/* CONTAINER CENTRAL */
/* ========================= */

.container{
width:500px;
max-width:90%;
background:#f9fafb;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
text-align:center;
margin-top:120px;
}

/* TITULOS */

h1{
font-size:36px;
margin-bottom:10px;
color:#1e3a8a;
}

h2{
font-size:18px;
margin-bottom:25px;
color:#333;
}

/* ========================= */
/* BUSCA */
/* ========================= */

.busca{
display:flex;
width:100%;
gap:10px;
}

.busca input{
flex:1;
padding:14px;
border-radius:6px;
border:1px solid #ccc;
font-size:16px;
}

.busca button{
padding:14px;
min-width:100px;
border-radius:6px;
border:2px solid #3b82f6;
background:#3b82f6;
color:white;
font-size:16px;
cursor:pointer;
transition:all 0.25s ease;
}

.busca button:hover{
background:white;
color:#3b82f6;
}

/* ========================= */
/* RESULTADOS */
/* ========================= */

#resultados{
margin-top:10px;
border:1px solid #ddd;
border-radius:8px;
max-height:250px;
overflow-y:auto;
}

.resultado-item{
display:flex;
align-items:center;
padding:10px;
border-bottom:1px solid #eee;
cursor:pointer;
}

.resultado-item:hover{
background:#f5f5f5;
}

.resultado-item img{
width:45px;
height:65px;
object-fit:cover;
margin-right:10px;
border-radius:4px;
}

#resultados::-webkit-scrollbar{
width:6px;
}

#resultados::-webkit-scrollbar-thumb{
background:#ccc;
border-radius:4px;
}

/* ========================= */
/* BOTÕES */
/* ========================= */

button,
.btn-cadastrar,
.btn-google,
.voltar{
width:auto;
padding:14px;
border-radius:6px;
border:2px solid #3b82f6;
background:#3b82f6;
color:rgb(0, 0, 0);
font-size:16px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
transition:all 0.25s ease;
}

button:hover,
.btn-cadastrar:hover,
.btn-google:hover,
.voltar:hover{
background:white;
color:#3b82f6;
}

.btn-google img{
width:20px;
height:20px;
}

/* ========================= */
/* PÁGINA FILME */
/* ========================= */

.filme-container{
text-align:center;
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
width:420px;
max-width:90%;
}

.poster-filme{
width:250px;
max-width:100%;
height:auto;
display:block;
margin:20px auto;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* STREAMINGS */

.streamings{
margin-top:25px;
display:flex;
flex-direction:column;
align-items:center;
gap:10px;
}

.streaming{
width:220px;
padding:12px;
background:#3b82f6;
color:white;
border-radius:6px;
cursor:pointer;
font-size:14px;
text-align:center;
transition:0.2s;
}

.streaming:hover{
background:white;
color:#3b82f6;
border:2px solid #3b82f6;
}

/* ========================= */
/* CATÁLOGO */
/* ========================= */

.catalogo{
margin-top:90px;
display:flex;
flex-direction:column;
gap:60px;
width:100%;
}

.bloco-genero{
display:flex;
flex-direction:column;
gap:14px;
width:100%;
}

.titulo-genero{
font-size:22px;
font-weight:bold;
color:#1e3a8a;
padding-left:25px;
}

/* ========================= */
/* CARROSSEL */
/* ========================= */

.carrossel{
position:relative;
width:100%;
}

.linha{
display:flex;
overflow:hidden;
gap:20px;
padding:0 70px;
scroll-behavior:smooth;
}

/* ========================= */
/* POSTERS */
/* ========================= */

.poster{
min-width:180px;
max-width:180px;
display:flex;
flex-direction:column;
gap:8px;
cursor:pointer;
flex-shrink:0;
position:relative;
}

.poster img{
width:180px;
height:270px;
object-fit:cover;
border-radius:8px;
box-shadow:0 8px 16px rgba(0,0,0,0.25);
transition:0.25s;
}

.poster img:hover{
transform:scale(1.05);
}

.titulo-filme{
font-size:14px;
text-align:center;
color:#111;
line-height:1.2;
height:36px;
overflow:hidden;
}

/* ========================= */
/* SETAS */
/* ========================= */

.seta{
position:absolute;
top:50%;
transform:translateY(-50%);
width:38px;
height:80px;
background:rgba(255,255,255,0.6);
backdrop-filter:blur(6px);
border:none;
border-radius:10px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:#1e3a8a;
transition:all 0.25s ease;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
z-index:20;
}

.seta-esquerda{
left:10px;
}

.seta-direita{
right:10px;
}

.seta:hover{
background:white;
transform:translateY(-50%) scale(1.08);
box-shadow:0 6px 14px rgba(0,0,0,0.15);
}

/* ========================= */
/* TOP BAR PÁGINA */
/* ========================= */

.top-bar{
position:fixed;
top:0;
left:0;
width:100%;
background:white;
display:flex;
align-items:center;
gap:20px;
padding:12px 20px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
z-index:200;
}

.refresh{
cursor:pointer;
font-size:24px;
transition:0.4s;
}

.refresh.girando{
transform:rotate(360deg);
}

.voltar-home{
margin-left:auto;
background:#3b82f6;
color:white;
padding:8px 14px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.voltar-home:hover{
background:white;
color:#3b82f6;
border:2px solid #3b82f6;
}

/* ========================= */
/* BUSCA */
/* ========================= */

.search{
display:flex;
align-items:center;
gap:10px;

width:420px;
max-width:80%;
}

.search input{
flex:1;
min-width:0;
}

.search button{
white-space:nowrap;
}

.search input{
flex:1;
padding:10px;
border:1px solid #ccc;
border-radius:6px;
font-size:15px;
}

.search button{
padding:10px 16px;
border:none;
background:#3b82f6;
color:white;
border-radius:6px;
cursor:pointer;
}

/* ========================= */
/* FAVORITOS / LISTAS */
/* ========================= */

.poster-botoes{
position:absolute;
top:8px;
right:8px;
display:flex;
gap:6px;
z-index:5;
}

.btn-fav,
.btn-lista{
width:28px;
height:28px;
border:none;
border-radius:50%;
color:white;
font-size:14px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
}

.btn-fav{
background:#facc15;
}

.btn-lista{
background:#22c55e;
}

.fav-ok{
transform:scale(1.2);
transition:0.2s;
}

/* DROPDOWN LISTAS */

.dropdown-listas{
position:absolute;
top:35px;
right:0;
background:white;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
display:flex;
flex-direction:column;
overflow:hidden;
z-index:50;
}

.dropdown-listas button{
padding:8px 12px;
border:none;
background:white;
cursor:pointer;
text-align:left;
}

/* REMOVIDO HOVER PARA NÃO TER ANIMAÇÃO */

.btn-listas{
background:#2563eb;
color:white;
padding:8px 12px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.btn-voltar{
background:#111;
color:white;
padding:8px 12px;
border-radius:6px;
text-decoration:none;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width:700px){

.container{
width:90%;
padding:30px;
}



.busca button{
width:100%;
}

.poster-filme{
width:70%;
max-width:320px;
}

.streaming{
width:260px;
font-size:16px;
}

.menu-links{
gap:12px;
font-size:14px;
}

.poster{
width:120px;
}

.seta{
display:none;
}

}
/* ===== REMOVER TODAS ANIMAÇÕES DE HOVER (EXCETO BOTÕES) ===== */

.poster:hover,
.titulo-filme:hover,
.poster-botoes:hover,
.dropdown-listas:hover,
.linha:hover,
.bloco-genero:hover {
    transform: none !important;
    scale: 1 !important;
    opacity: 1 !important;
    transition: none !important;
}

/* garantir que título sempre apareça */
.titulo-filme{
    opacity: 1 !important;
    transform: none !important;
}

/* remover qualquer efeito de hover em posters */
.poster:hover img{
    transform: none !important;
    filter: none !important;
}

/* manter hover apenas em botões */
button:hover{
    opacity: 0.9;
    cursor: pointer;
}
/* ===============================
RESET DE HOVER BUGADO
COLE NO FINAL DO CSS
=============================== */

/* remove qualquer animação global */
*{
transition:none !important;
animation:none !important;
}

/* posters não podem esconder texto */
.poster .titulo-filme{
opacity:1 !important;
transform:none !important;
visibility:visible !important;
}

/* impede hover estranho em posters */
.poster:hover{
transform:none !important;
}

/* dropdown das listas sempre visível */
.dropdown-listas button{
opacity:1 !important;
transform:none !important;
visibility:visible !important;
}

/* remove hover que faz aparecer texto */
.dropdown-listas button:hover{
transform:none !important;
}

/* garante que o nome da lista sempre aparece */
.dropdown-listas button{
display:block !important;
}

/* linhas de filmes */
.linha{
display:flex;
gap:12px;
overflow-x:auto;
}

/* posters tamanho fixo */
.poster{
flex-shrink:0;
}

/* mantém hover apenas em botões */
button:hover{
opacity:0.9;
}

/* evita animação escondida em imagens */
.poster img{
transform:none !important;
}

/* remove hover de qualquer container estranho */
div:hover{
transform:none !important;
}
#refreshBtn{
animation:none !important;
transition:none !important;
transform:none !important;
}

.girando{
animation:none !important;
}
#refreshBtn,
#refreshBtn *,
.girando{
animation: none !important;
transition: none !important;
transform: none !important;
}

#refreshBtn:hover{
animation:none !important;
transform:none !important;
}

#refreshBtn:active{
animation:none !important;
transform:none !important;
}
/* ============================= */
/* PAGINA MINHAS LISTAS */
/* ============================= */

#listasContainer{
max-width:1400px;
margin:auto;
padding:20px;
}

/* titulo principal */

.titulo{
font-size:36px;
font-weight:bold;
text-align:center;
margin-bottom:20px;
white-space:nowrap;
}

/* topo */

.topo{
position:relative;
display:flex;
justify-content:center;
align-items:center;
margin-bottom:30px;
}

/* botão voltar */

.voltar{
position:absolute;
left:20px;
top:0;
background:#1e6bff;
color:white;
border:none;
padding:8px 18px;
border-radius:8px;
cursor:pointer;
font-size:14px;
}

/* nome da lista */

#listasContainer h3{
text-align:center;
font-size:22px;
margin:30px 0 10px 0;
}

/* =============================== */
/* CORREÇÃO TOTAL PAGINA LISTAS */
/* =============================== */

#listasContainer{
width:100%;
max-width:1400px;
margin:40px auto;
padding:20px;
}

/* titulo */

.titulo{
font-size:36px;
font-weight:bold;
text-align:center;
margin-bottom:30px;
white-space:nowrap;
}

/* topo */

.topo{
position:relative;
display:flex;
justify-content:center;
align-items:center;
margin-bottom:30px;
}

/* botão voltar pequeno canto esquerdo */

.voltar{
position:absolute;
left:10px;
top:10px;
padding:5px 10px;
font-size:12px;
width:auto;
}

/* nome das listas */

#listasContainer h3{
font-size:22px;
margin:20px 0 10px 10px;
text-align:left;
}

/* CARROSSEL LISTAS */

#listasContainer .carrossel{
position:relative;
width:100%;
}

/* linha horizontal */

#listasContainer .linha{
display:flex;
gap:20px;
overflow-x:auto;
scroll-behavior:smooth;
padding-left:20px;
padding-right:40px;
}

/* remover barra scroll */

#listasContainer .linha::-webkit-scrollbar{
display:none;
}

/* poster */

#listasContainer .poster{
min-width:180px;
max-width:180px;
flex-shrink:0;
text-align:center;
}

/* imagem */

#listasContainer .poster img{
width:180px;
height:270px;
object-fit:cover;
border-radius:8px;
}

/* titulo filme */

#listasContainer .titulo-filme{
font-size:14px;
margin-top:6px;
}

/* botão apagar filme */

.btn-apagar{
margin-top:6px;
padding:4px 8px;
font-size:11px;
background:#1e6bff;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
}

/* botão apagar lista pequeno */

.btn-apagar-lista{
display:block;
margin:6px auto 12px auto;
padding:4px 10px;
font-size:11px;
background:#1e6bff;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
}

/* setas */

#listasContainer .seta{
position:absolute;
top:50%;
transform:translateY(-50%);
width:32px;
height:70px;
background:rgba(255,255,255,0.8);
border:none;
border-radius:8px;
cursor:pointer;
font-size:22px;
z-index:10;
}

#listasContainer .seta-esquerda{
left:0;
}

#listasContainer .seta-direita{
right:0;
}
/* ========================= */
/* CORREÇÃO BOTÕES LISTAS */
/* ========================= */

/* botão voltar pequeno no canto superior esquerdo */

.topo{
position:relative;
}

.voltar{
position:absolute;
left:10px;
top:10px;

width:auto !important;
padding:6px 12px;
font-size:13px;
}

/* botão apagar lista pequeno */

.btn-apagar-lista{
display:inline-block;

width:auto !important;
padding:4px 10px;
font-size:12px;

margin:8px 0 15px 10px;
}

/* botão apagar filme pequeno */

.btn-apagar{
width:auto !important;
padding:4px 8px;
font-size:11px;
}
/* ========================= */
/* FORÇAR BOTÃO VOLTAR NO CANTO */
/* ========================= */

.voltar{
position:fixed !important;

top:10px;
left:10px;

width:auto !important;
padding:6px 12px;

font-size:13px;

z-index:9999;
}
.sem-filmes{

width:100%;
text-align:center;

font-size:22px;
font-weight:bold;

margin-top:200px;

color:#444;

}
/* resultado da busca */

.resultado-item{
display:flex;
align-items:center;
gap:12px;
padding:10px;
border-bottom:1px solid #eee;
position:relative;
}

.resultado-item img{
width:70px;
border-radius:6px;
}

/* tres pontinhos */

.btn-menu{
background:none;
border:none;
font-size:22px;
cursor:pointer;
position:absolute;
right:10px;
top:50%;
transform:translateY(-50%);
opacity:0.7;
}

.btn-menu:hover{
opacity:1;
}

/* menu flutuante */

.menu-flutuante{
position:absolute;
right:35px;
top:40px;
background:white;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
display:flex;
flex-direction:column;
min-width:200px;
opacity:0;
transform:translateY(-10px) scale(0.95);
transition:all .15s ease;
z-index:999;
overflow:hidden;
}

.menu-flutuante button{
background:none;
border:none;
padding:12px 16px;
text-align:left;
cursor:pointer;
font-size:14px;
}

.menu-flutuante button:hover{
background:#f5f5f5;
}

/* animação */

.menu-ativo{
opacity:1;
transform:translateY(0) scale(1);
}/* botão tres pontinhos */

.menu-btn{
position:absolute;
right:8px;
top:50%;
transform:translateY(-50%);

background:transparent !important;
border:none !important;

color:#000;
font-size:18px;
font-weight:bold;

padding:0 !important;
margin:0;

width:auto !important;
height:auto !important;

cursor:pointer;
}

/* remove qualquer estilo global de button */

.menu-btn:hover{
background:transparent !important;
}
.menu-filme{
position:absolute;
right:25px;
top:35px;

background:white;
border-radius:10px;

box-shadow:0 8px 20px rgba(0,0,0,0.15);

display:flex;
flex-direction:column;

min-width:180px;
z-index:999;
}

.menu-filme button{
background:none;
border:none;

padding:10px 14px;
text-align:left;

cursor:pointer;
font-size:14px;
}

.menu-filme button:hover{
background:#f2f2f2;
}
/* ============================= */
/* BOTÃO 3 PONTOS FIXO NO CANTO */
/* ============================= */

.resultado-item{
display:flex;
align-items:center;
gap:12px;
padding:10px;
border-bottom:1px solid #eee;
position:relative;
}

.resultado-item img{
width:70px;
border-radius:6px;
}

/* botão tres pontinhos sempre visivel */

.menu-btn{
position:absolute;
right:10px;
top:50%;
transform:translateY(-50%);

background:none !important;
border:none !important;

font-size:18px;
line-height:1;

padding:0 !important;
margin:0 !important;

width:auto !important;
height:auto !important;

cursor:pointer;
z-index:20;
}

/* remove QUALQUER hover gigante */

.menu-btn:hover{
background:none !important;
transform:translateY(-50%) !important;
scale:1 !important;
}

/* menu flutuante */

.menu-filme{
position:absolute;

right:35px;
top:40px;

background:white;
border-radius:10px;

box-shadow:0 8px 20px rgba(0,0,0,0.15);

display:flex;
flex-direction:column;

min-width:180px;
z-index:999;
}

.menu-filme button{
background:none;
border:none;

padding:10px 14px;
text-align:left;

cursor:pointer;
font-size:14px;
}

.menu-filme button:hover{
background:#f2f2f2;
}
/* ============================= */
/* MOBILE: DESATIVAR TODAS ANIMAÇÕES */
/* PRIORIDADE MAXIMA */
/* ============================= */

@media (max-width:700px){

*{
animation:none !important;
transition:none !important;
transform:none !important;
}

*:hover{
animation:none !important;
transition:none !important;
transform:none !important;
}

.poster img:hover{
transform:none !important;
}

button:hover{
transform:none !important;
}

.menu-btn:hover{
transform:translateY(-50%) !important;
}

}
#trocarRecomendacao{

position:fixed;

top:20px;
right:20px;

width:40px !important;
height:40px !important;

font-size:18px;

padding:0;

display:flex;
align-items:center;
justify-content:center;

}
#poster{
width:220px;
border-radius:12px;
box-shadow:0 6px 16px rgba(0,0,0,0.2);
}

#streamings{
display:flex;
flex-direction:column;
gap:10px;
margin-top:15px;
}

.botao-stream{
background:#3b73d9;
color:white;
text-decoration:none;
padding:10px;
border-radius:8px;
text-align:center;
font-weight:600;
transition:0.2s;
}

.botao-stream:hover{
background:#2d5db3;
}
.botao-grande{

display:block;
width:100%;
max-width:320px;

margin:10px auto;

background:#3b73d9;
color:white;

padding:12px;

border-radius:8px;

text-align:center;

text-decoration:none;

font-weight:bold;

border:none;

cursor:pointer;

}

.botao-grande:hover{

background:#2d5db3;

}
/* ========================= */
/* MODAL CONFIRMAR LOGOUT */
/* ========================= */

.confirmar-fundo{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.5);

display:flex;
align-items:center;
justify-content:center;

z-index:9999;
}

.confirmar-box{
background:white;
padding:30px;

border-radius:10px;

width:300px;
max-width:90%;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.confirmar-box h3{
margin-bottom:20px;
font-size:18px;
color:#333;
}

.confirmar-botoes{
display:flex;
gap:10px;
}

.confirmar-botoes button{
flex:1;

padding:10px;

border-radius:6px;

border:2px solid #3b82f6;
background:#3b82f6;

color:white;
font-weight:bold;

cursor:pointer;
}

.confirmar-botoes button:hover{
background:white;
color:#3b82f6;
}
/* ========================= */
/* FORMULÁRIOS LOGIN / CADASTRO */
/* ========================= */

.formulario{
display:flex;
flex-direction:column;
gap:12px;
width:100%;
}

.formulario input{
width:100%;
padding:14px;
border:1px solid #ccc;
border-radius:6px;
font-size:16px;
}
/* espaço entre inputs e botões */

.botoes{
margin-top:20px;
display:flex;
flex-direction:column;
gap:10px;
}
/* ========================= */
/* MENU HAMBURGUER MOBILE */
/* ========================= */

.menu-hamburguer{
display:none;
font-size:28px;
cursor:pointer;
color:#1e3a8a;
}

/* MOBILE */

@media (max-width:700px){

.menu-hamburguer{
display:block;
}

.menu-links{
position:absolute;
top:60px;
right:20px;

background:white;

display:none;
flex-direction:column;

gap:10px;

padding:15px;

border-radius:10px;

box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.menu-links a{
padding:5px 10px;
}

.menu-links.ativo{
display:flex;
}

}
/* ========================= */
/* MENU HAMBURGUER MOBILE */
/* ========================= */

.menu-hamburguer{
display:none;
font-size:28px;
cursor:pointer;
color:#1e3a8a;
}

/* MOBILE */

@media (max-width:700px){

.menu-hamburguer{
display:block !important;
}

.menu-links{
display:none !important;

position:absolute !important;
top:60px !important;
right:20px !important;

background:white !important;

flex-direction:column !important;

gap:10px !important;

padding:15px !important;

border-radius:10px !important;

box-shadow:0 10px 25px rgba(0,0,0,0.2) !important;
}

.menu-links.ativo{
display:flex !important;
}

}
#estrelas{
font-size:35px;
margin-top:10px;
}

.estrela{
cursor:pointer;
color:gray;
}
.estrela{
font-size:28px;
color:white;
cursor:pointer;
}

.estrela.ativa{
color:gold;
}
.estrela {
font-size: 26px;
cursor: pointer;
color: #ccc;
transition: 0.2s;
}

.estrela.ativa {
color: gold;
}
#estrelas span{
font-size:26px;
cursor:pointer;
color:#ccc;
transition:0.2s;
}

#estrelas span.ativa{
color:gold;
}

.avaliacao-item{
margin-top:15px;
padding:10px;
border-radius:8px;
background:#111;
}

.avaliacao-topo{
display:flex;
align-items:center;
gap:10px;
margin-bottom:6px;
}

.avaliacao-topo img{
width:32px;
height:32px;
border-radius:50%;
}
.vip-box{
max-width:420px;
margin:auto;
background:#111;
padding:25px;
border-radius:10px;
}

.vip-input-area{
display:flex;
align-items:center;
gap:8px;
margin-top:8px;
}

#codigoVIP{
flex:1;
padding:12px;
font-size:16px;
border-radius:6px;
border:none;
outline:none;
}

.btn-olho{
background:#222;
border:none;
padding:10px 14px;
border-radius:6px;
cursor:pointer;
font-size:18px;
}

.btn-vip{
margin-top:15px;
width:100%;
padding:12px;
font-size:16px;
background:#2b7cff;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
}
/* BOTÃO VOLTAR */





/* CAIXA VIP */

.vip-box{
max-width:420px;
margin:40px auto;
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.15);
}


/* INPUT */

.vip-input-area{
display:flex;
align-items:center;
gap:10px;
margin-top:10px;
}

#codigoVIP{
flex:1;
padding:12px;
font-size:16px;
border:1px solid #ccc;
border-radius:6px;
}


/* BOTÃO OLHO */

.btn-olho{
background:none;
border:none;
font-size:20px;
cursor:pointer;
}


/* BOTÃO VIP */

.btn-vip{
width:100%;
margin-top:15px;
padding:12px;
font-size:16px;
background:#2b7cff;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
}
/* ÁREA INPUT VIP */

.vip-input-area{
display:flex;
width:100%;
align-items:center;
}


/* INPUT 95% */

#codigoVIP{
width:95%;
padding:12px;
font-size:16px;
border:1px solid #ccc;
border-radius:6px 0 0 6px;
outline:none;
}


/* BOTÃO OLHO 5% */

.btn-olho{
width:5%;
border:none;
background:none;
font-size:14px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
}
.pagina-filme{
display:flex;
gap:40px;
padding:30px;
align-items:flex-start;
}

.info-filme{
width:50%;
}

.poster-filme{
width:300px;
border-radius:10px;
box-shadow:0 0 20px rgba(0,0,0,0.5);
}

#streamings{
margin-top:20px;
display:flex;
flex-wrap:wrap;
gap:10px;
}

.botao-stream{
background:#e50914;
color:white;
padding:10px 15px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.avaliacao-container{
width:50%;
background:#111;
padding:25px;
border-radius:10px;
box-shadow:0 0 20px rgba(0,0,0,0.6);
}

#estrelas{
font-size:35px;
margin-bottom:15px;
}

.estrela{
cursor:pointer;
color:#555;
transition:0.2s;
}

.estrela:hover{
transform:scale(1.2);
}

.estrela.ativa{
color:gold;
}

#comentario{
width:100%;
height:120px;
margin-top:10px;
padding:10px;
border-radius:6px;
border:none;
}

#enviarAvaliacao{
margin-top:10px;
padding:10px 20px;
background:#e50914;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
}

.avaliacao-item{
background:#1c1c1c;
padding:15px;
border-radius:6px;
margin-top:15px;
}

.avaliacao-topo{
display:flex;
align-items:center;
gap:10px;
}

.avaliacao-topo img{
width:35px;
border-radius:50%;
}

/* ===== POPUP VIP ===== */

.vip-popup{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);

display:flex;
justify-content:center;
align-items:center;

opacity:0;
transition:0.3s;

z-index:9999;

}

.vip-popup.show{
opacity:1;
}

.vip-card{

background:white;
padding:30px;
border-radius:12px;
text-align:center;

transform:scale(0.8);
transition:0.3s;

}

.vip-popup.show .vip-card{
transform:scale(1);
}

.vip-card h2{
margin-bottom:10px;
}

.vip-card button{

margin-top:10px;
padding:10px 15px;

border:none;
border-radius:6px;

cursor:pointer;

background:#1e6bff;
color:white;

}

.vip-card button:last-child{
background:#666;
}

/* ===== LAYOUT FILME VERTICAL ===== */

.layout-filme{

display:flex;
flex-direction:column;
align-items:center;

gap:20px;

margin-top:30px;

text-align:center;

}

/* TITULO */

.coluna-titulo{

max-width:500px;

}

/* POSTER */

.poster-filme{

width:260px;

border-radius:12px;

box-shadow:0 10px 30px rgba(0,0,0,0.2);

}

/* STREAMINGS */

.coluna-streaming{

width:220px;

}

/* BOTÕES STREAMING (1 linha) */

.streaming-btn{

display:block;

width:100%;

margin:6px 0;

padding:10px;

background:#3f7ae0;

color:white;

border:none;

border-radius:6px;

cursor:pointer;

font-size:14px;

}

/* AVALIAÇÃO */

.avaliacao-box{

position:fixed;

right:20px;

top:120px;

width:200px;

background:#111;

color:white;

padding:20px;

border-radius:10px;

}
/* ===== PAGINA FILME VERTICAL ===== */

.pagina-filme{

display:flex;
flex-direction:column;

align-items:center;

text-align:center;

gap:20px;

margin-top:30px;

}

/* poster */

.poster-filme{

width:260px;

border-radius:12px;

box-shadow:0 10px 30px rgba(0,0,0,0.2);

}

/* streamings */

#streamings{

width:220px;

}

/* botões streaming */

.streaming-btn{

display:block;

width:100%;

margin:8px 0;

padding:10px;

background:#3f7ae0;

color:white;

border:none;

border-radius:6px;

cursor:pointer;

font-size:14px;

}
/* ===== STREAMINGS MAIS JUNTOS ===== */

#streamings{

display:flex;
flex-direction:column;
gap:4px;

}

.streaming-btn{

margin:0;

padding:8px;

font-size:14px;

}
/* ===== CENTRALIZAR PÁGINA RECOMENDADOS (VERSÃO FINAL) ===== */

/* O body global já é flex column.
   Aqui a gente centraliza conteúdo e muda o fundo SÓ nesta página. */
body.recomendados-page{
  display:flex;
  flex-direction:column;
  justify-content:center;  /* centro vertical */
  align-items:center;      /* centro horizontal */
  min-height:100vh;
  background:#f5f5f5;
}

/* Caixa do filme bem no meio */
body.recomendados-page .filme-container{
  margin:80px auto 40px;   /* respiro em cima e embaixo */
  padding:20px 20px 30px;
  background:#ffffff;
  border-radius:12px;
  box-shadow:0 4px 16px rgba(0,0,0,0.12);
  max-width:320px;
  width:100%;
  box-sizing:border-box;
}

/* Poster centralizado */
body.recomendados-page #poster.poster-filme{
  display:block;
  margin:20px auto;
  max-width:100%;
}

/* Botões de streaming centralizados */
body.recomendados-page .streaming-btn{
  display:block;
  margin:5px auto;
  width:200px;
  max-width:100%;
}

/* Texto "Somente nos cinemas" centralizado e destacado */
body.recomendados-page #cinemaInfo{
  margin-top:8px;
  font-size:14px;
  font-weight:bold;
  color:#f97316;
}

/* Telas pequenas: só descola um pouco do topo */
@media (max-width:600px){
  body.recomendados-page{
    justify-content:flex-start;
    padding-top:80px;
  }

  body.recomendados-page .filme-container{
    margin-top:20px;
  }
}
/* ===== ALTURA MAIOR DA BARRA DE BUSCA (HOME) ===== */

/* container continua igual, só repito pra garantir prioridade */
.busca{
  display:flex;
  align-items:center;
  gap:8px;
  max-width:600px;
  margin:0 auto 16px auto;
  padding:0 10px;
}

/* caixa de texto mais alta */
#searchInput{
  flex:1;
  height:52px;           /* AQUI: altura do input (aumenta se quiser) */
  padding:0 14px;
  box-sizing:border-box;
  font-size:15px;
}

/* botão mais alto também */
#btnBuscar{
  height:52px;           /* mesma altura do input */
  padding:0 22px;
  box-sizing:border-box;
  display:flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  font-size:15px;
  font-weight:600;
}

/* mobile igual (input em cima, botão embaixo) */
@media (max-width:480px){
  .busca{
    flex-direction:column;
    align-items:stretch;
  }

  #btnBuscar{
    width:100%;
  }
}
/* ===== AJUSTE SÓ NO CELULAR: CAIXA DE TEXTO MAIOR ===== */
@media (max-width:480px){
  .container .busca{
    flex-direction:column;
    align-items:stretch;
  }

  /* AQUI: só a caixa de texto fica mais alta no mobile */
  .container #searchInput{
    height:60px !important;   /* aumenta a altura da caixa de texto */
    padding:0 16px !important;
    font-size:16px !important;
  }

  /* botão continua a mesma lógica, só garante largura total */
  .container #btnBuscar{
    width:100% !important;
  }
}
/* ---------- CAIXA DE TEXTO MAIS ALTA (desktop e mobile) ---------- */
#searchInput{
    height:70px !important;          /* altura maior */
    padding:0 18px !important;
    font-size:18px !important;
    box-sizing:border-box !important;
}

/* mobile – garante a mesma altura quando a tela é estreita */
@media (max-width:480px){
    .container .busca{
        flex-direction:column !important;
        align-items:stretch !important;
    }
    #searchInput{
        height:70px !important;
        padding:0 18px !important;
        font-size:18px !important;
    }
    #btnBuscar{
        width:100% !important;
    }
}

/* ---------- AVISO VIP – cor padrão (preto) ---------- */
#vipInfo{
    color:inherit !important;        /* usa a cor padrão do body */
    margin-top:6px !important;
    font-weight:normal !important;
}
/* -------------------------------------------------
   CAIXA DE TEXTO – ALTURA MAIOR EM QUALQUER DISPOSITIVO
   ------------------------------------------------- */

/* 1️⃣ Seletores com a maior especificidade possível */
body .container .busca input#searchInput{
    height:70px !important;          /* altura que você quer */
    padding:0 18px !important;
    font-size:18px !important;
    box-sizing:border-box !important;
}

/* 2️⃣ Mobile – garante que o layout continue empilhado */
@media (max-width:480px){
    body .container .busca{
        flex-direction:column !important;
        align-items:stretch !important;
    }
    body .container .busca input#searchInput{
        height:70px !important;      /* reforça a mesma altura no mobile */
        padding:0 18px !important;
        font-size:18px !important;
    }
    body .container .busca button#btnBuscar{
        width:100% !important;
    }
}

/* 3️⃣ (Opcional) Se ainda houver algum outro CSS que defina altura,
   ele será sobrescrito porque usamos !important + seletor completo. */
   /* ========================= */
/* CORREÇÃO POSTER RECOMENDADOS */
/* ========================= */

body.recomendados-page{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  flex-direction:column !important;
}

body.recomendados-page .filme-container{
  margin:auto !important;
  text-align:center !important;
}

body.recomendados-page #poster{
  display:block !important;
  margin:20px auto !important;
  position:relative !important;
  left:0 !important;
  right:0 !important;
}
/* ========================= */
/* CORREÇÃO NOTA E ANO RECOMENDADOS */
/* ========================= */

body.recomendados-page #nota,
body.recomendados-page #ano,
body.recomendados-page #cinemaInfo{
  text-align:center !important;
  display:block !important;
  margin:5px auto !important;
}
/* ========================= */
/* CORREÇÃO FINAL BOTÃO VIP */
/* ========================= */


/* botão voltar só no VIP */

body.vip-page .btn-voltar{
position:fixed !important;

top:20px !important;
left:20px !important;

background:#3b82f6 !important;
color:white !important;

padding:10px 16px !important;
border-radius:8px !important;

text-decoration:none !important;
font-weight:bold !important;

display:inline-block !important; /* ISSO QUE TAVA QUEBRANDO */
width:auto !important;           /* ISSO TAMBÉM */

z-index:99999 !important;
}

/* hover */

body.vip-page .btn-voltar:hover{
background:white !important;
color:#3b82f6 !important;
border:2px solid #3b82f6 !important;
}
/* BOTÃO VOLTAR VIP - SEM QUEBRAR LAYOUT */

.vip-page .btn-voltar{
position:fixed !important;

top:20px !important;
left:20px !important;

background:#3b82f6 !important;
color:white !important;

padding:10px 16px !important;
border-radius:8px !important;

text-decoration:none !important;
font-weight:bold !important;

z-index:99999 !important;
}

.vip-page .btn-voltar:hover{
background:white !important;
color:#3b82f6 !important;
border:2px solid #3b82f6 !important;
}
@media (max-width:700px){

.menu-links{
display:flex !important;
gap:10px;
}

.menu-links a{
font-size:14px;
}

}
/* ============================= */
/* FIX INDEX: BOTÕES SEM DROPDOWN */
/* ============================= */

@media (max-width: 768px) {

.index-buttons {
display: flex !important;
flex-direction: row !important;
justify-content: center;
gap: 10px;
flex-wrap: nowrap;
}

.index-buttons button,
.index-buttons a {
display: inline-flex !important;
width: auto !important;
}

}
/* ========================================= */
/* FIX FORÇADO: INDEX BOTÕES LADO A LADO     */
/* ========================================= */

@media (max-width: 768px) {

.index-buttons {
display: flex !important;
flex-direction: row !important;
justify-content: center !important;
align-items: center !important;
gap: 10px !important;
flex-wrap: nowrap !important;
}

/* impede links virarem bloco */
.index-buttons a {
display: inline-flex !important;
width: auto !important;
}

/* impede botões ocuparem 100% */
.index-buttons button {
width: auto !important;
display: inline-flex !important;
}

/* mata qualquer dropdown herdado */
.index-buttons * {
flex-direction: row !important;
}

}

.index-buttons {
    display: flex !important;          /* força flexbox */
    flex-direction: row !important;    /* sempre em linha */
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;              /* espaço entre os botões */
    flex-wrap: nowrap !important;      /* impede quebra automática */
}

/* 3️⃣ Botões (ou links) dentro do contêiner */
.index-buttons a,
.index-buttons .btn-index {
    display: inline-flex !important;   /* evita que o link vire bloco */
    padding: 10px 16px !important;    /* tamanho confortável */
    background: #3b82f6 !important;    /* cor padrão do seu tema */
    color: #fff !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 15px !important;
    white-space: nowrap !important;   /* impede quebra de linha */
}


.index-buttons a:hover,
.index-buttons .btn-index:hover {
    background: #fff !important;
    color: #3b82f6 !important;
    border: 2px solid #3b82f6 !important;
}
/* =========================
   FIX FINAL: HEADER - BOTÕES NO CANTO SUPERIOR DIREITO
   Cole este bloco NO FINAL do style.css para garantir prioridade.
   ========================= */

.top-links,
.top-bar {
  background: white !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08) !important;
  border: none !important;
}

/* Header fixo com esquerda (logo) e botões no canto direito */
.top-links {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 24px !important;
  gap: 12px !important;
  z-index: 9999 !important;
  box-sizing: border-box !important;
  background: white !important;
}

/* Espaço esquerdo (logo) */
.top-links > .left-space {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

/* Container de botões alinhado à direita */
.top-links > .menu-links {
  margin-left: auto !important;
  display: flex !important;
  gap: 12px !important;
  align-items: center !important;
  justify-content: flex-end !important;
}



/* Variante secundária (ex.: Cadastrar) */
.top-links .menu-links a.alt,
.top-links .menu-links .btn-alt {
  background: #ffffff !important;
  color: #3b82f6 !important;
  border: 2px solid #3b82f6 !important;
}

/* Hover / focus */
.top-links .menu-links a:hover,
.top-links .menu-links button:hover,
.top-links .menu-links a:focus,
.top-links .menu-links button:focus {
  background: #ffffff !important;
  color: #3b82f6 !important;
  border: 2px solid #3b82f6 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12) !important;
}

/* Força layout em linha e impede dropdowns */
.menu-links,
.index-buttons {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
}

/* Mobile: garante que os botões fiquem lado a lado e não ocupem 100% */
@media (max-width: 768px) {
  .top-links {
    padding: 10px 12px !important;
  }

  .top-links > .menu-links {
    position: relative !important;
    right: 0 !important;
    top: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .top-links .menu-links a,
  .top-links .menu-links button {
    padding: 8px 10px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .menu-links.ativo,
  .menu-links {
    display: flex !important;
    flex-direction: row !important;
  }
}

/* Garante que header não tenha transform/anim */
.top-links * {
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

/* Espaço no topo do body para não ficar atrás do header */
body {
  padding-top: 68px !important;
}

/* Botão logout (opcional) */
.top-links .btn-logout {
  background: #ef4444 !important;
  border-color: #ef4444 !important;
}
/* ===== MENU HAMBÚRGUER (DROPBOX RETÂNGULO) - COLE NO FINAL DO style.css ===== */

/* botão hamburguer (escondido por padrão em desktop) */
header.top-links .menu-hamburguer {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1e3a8a;
  background: transparent;
  border: none;
  padding: 6px 8px;
  line-height: 1;
}

/* MOBILE: <=700px - mostra o botão e prepara o painel */
@media (max-width: 700px) {
  header.top-links .menu-hamburguer {
    display: block !important;
  }

  /* painel retangular (inicialmente escondido) */
  .mobile-dropdown-panel {
    position: absolute;
    top: 56px;                /* ajuste se seu header for maior */
    right: 12px;
    width: calc(100% - 24px); /* margens laterais */
    max-width: 420px;
    margin: 0 auto;
    left: 12px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scaleY(0.98);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 99999;
  }

  /* painel aberto */
  .mobile-dropdown-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scaleY(1);
  }

  /* lista de links dentro do painel */
  .mobile-dropdown-panel .panel-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
  }

  .mobile-dropdown-panel .panel-links a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 600;
    background: transparent;
  }

  .mobile-dropdown-panel .panel-links a:hover,
  .mobile-dropdown-panel .panel-links a:focus {
    background: rgba(30,58,138,0.06);
  }

  /* pequena margem no topo para não colar no header */
  header.top-links { z-index: 1000; }
}

/* Desktop: não mostra o hambúrguer e mantém os links em linha */
@media (min-width: 701px) {
  header.top-links .menu-hamburguer { display: none !important; }
  .mobile-dropdown-panel { display: none !important; }
}
/* ---------- HEADER: links sem fundo (desktop) ---------- */
.top-links .menu-links a,
.top-links .menu-links button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 6px;
  background: transparent;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
  font-size: 14px;
}

/* Hover leve (desktop) */
.top-links .menu-links a:hover,
.top-links .menu-links button:hover {
  text-decoration: underline;
  background: transparent;
  color: #1e3a8a;
  border-color: transparent;
}

/* Botão primário (use quando quiser o botão azul) */
.btn-primary {
  background: #3b82f6;
  color: #fff;
  border: 2px solid #3b82f6;
  padding: 8px 12px;
  border-radius: 8px;
}

/* ---------- MENU HAMBÚRGUER: painel retangular (mobile) ---------- */
header.top-links .menu-hamburguer {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1e3a8a;
  background: transparent;
  border: none;
  padding: 6px 8px;
  line-height: 1;
}

@media (max-width:700px){
  header.top-links .menu-hamburguer { display:block !important; }

  .mobile-dropdown-panel{
    position:absolute;
    top:56px;
    right:12px;
    left:12px;
    width: calc(100% - 24px);
    max-width:420px;
    margin:0 auto;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    border:1px solid rgba(0,0,0,0.06);
    overflow:hidden;
    opacity:0;
    visibility:hidden;
    transform:translateY(-6px) scale(.98);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index:99999;
  }

  .mobile-dropdown-panel.open{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
  }

  .mobile-dropdown-panel .panel-links{
    display:flex;
    flex-direction:column;
    gap:6px;
    padding:10px;
  }

  .mobile-dropdown-panel .panel-links a{
    display:block;
    padding:10px 12px;
    border-radius:8px;
    text-decoration:none;
    color:#1e3a8a;
    font-weight:600;
  }

  .mobile-dropdown-panel .panel-links a:hover,
  .mobile-dropdown-panel .panel-links a:focus{
    background: rgba(30,58,138,0.06);
  }
}

/* Garante comportamento desktop inalterado */
@media (min-width:701px){
  header.top-links .menu-hamburguer { display:none !important; }
  .mobile-dropdown-panel { display:none !important; }
}
/* 1) Esconder links do header no mobile (mantém só o hambúrguer) */
@media (max-width:700px){
  /* esconde a lista horizontal original (não o painel móvel) */
  header.top-links .menu-links {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* mostra apenas o botão hamburguer no canto direito */
  header.top-links .menu-hamburguer {
    display: block !important;
    position: relative !important;
    z-index: 10000 !important;
  }

  /* garante que o perfil (esquerda) continua visível */
  header.top-links .perfil {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }
}
/* MOBILE: mover ação de logout para o nome/avatar e esconder VIP botão (só mobile) */
@media (max-width:700px) {

  /* Esconde qualquer link VIP na barra (caso exista) */
  header.top-links a[href*="vip"], header.top-links .btn-vip {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* Torna o container do nome/usuário um alvo touch nítido */
  header.top-links .perfil {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 10px;
    -webkit-tap-highlight-color: rgba(0,0,0,0.08);
  }

  /* destaca visualmente no mobile (sem alterar desktop) */
  header.top-links .perfil:active,
  header.top-links .perfil:focus {
    background: rgba(0,0,0,0.04);
  }

  /* opcional: esconde o botão "Sair" visível no menu (manter só no nome) */
  header.top-links #logoutBtn,
  header.top-links .btn-logout {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}
.vip-bar-container {
  width: 100%;
  height: 10px;
  background: #333;
  border-radius: 20px;
  margin: 10px 0;
  overflow: hidden;
}

.vip-bar {
  height: 100%;
  background: gold;
  transition: width 0.4s ease;
}

.vip-brilhando {
  animation: brilho 1s infinite alternate;
}

@keyframes brilho {
  from { filter: drop-shadow(0 0 2px gold); }
  to   { filter: drop-shadow(0 0 12px gold); }
}

.vip-popup-alert {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: black;
  color: white;
  padding: 12px;
  border-radius: 10px;
  z-index: 9999;
  animation: aparecer 0.3s ease;
}

@keyframes aparecer {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.vip-alerta {
  animation: brilho 1.2s infinite alternate;
  color: gold;
  text-shadow: 0 0 10px gold, 0 0 20px orange;
}

@keyframes brilho {
  from {
    transform: scale(1);
    filter: brightness(1);
  }
  to {
    transform: scale(1.2);
    filter: brightness(2);
  }
}
#vipCoroa {
  cursor: pointer;
  position: relative;
  z-index: 9999;
  pointer-events: auto;
}
.mensagem-sucesso {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #007bff;
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  opacity: 0;
  transition: 0.3s;
}

.mensagem-sucesso.show {
  opacity: 1;
}