@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Maven+Pro:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&display=swap');
*{
  box-sizing: border-box;
  

}
/* ====== GERAL ====== */
body {
    background: #f7f7f7;
    margin: 0;
    font-family: Arial, sans-serif;
   background:
radial-gradient(circle at 20% 20%, #e0f2fe, transparent 40%),
radial-gradient(circle at 80% 30%, #ede9fe, transparent 40%),
#f8fafc;
 padding-top: 72px; /* mesma altura do nav */
}

.site-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 16px;
}




/* ===== NAV ===== */
nav.menu {
    position: fixed;   /* 🔥 deixa fixo */
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999; /* 🔥 fica acima de tudo */
}



/* CONTAINER INTERNO */
.menu1 {
    width: 100%;
    max-width: 1400px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    gap: 16px;
}

/* ===== BOTÃO MENU ===== */
.btnmenu {
    background: none;
    border: none;
    cursor: pointer;
}

img.icon {
    width: 20px;
    height: 20px;
}

/* TEXTO MENU */
.namemenu {
    color: red;
    text-decoration: none;
    font-size: 14px;

    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== PESQUISA ===== */
.pesquisa {
    flex: 1;
    max-width: 700px;
    min-width: 300px;
    position: relative;
    margin-top: 20px;
    margin-left: 50px;
    z-index: 1;
    
}

.ipesquisa {
    width: 100%;
    height: 42px;
    border-radius: 10px;
    border: none;
    background: #2d2838;
    color: #fff;
    padding: 0 42px 0 14px;
    caret-color: yellow;

}

.ipesquisa::placeholder {
    color: #fff;
}
.btnlupa {
  position: relative;
  z-index: 10001;
}
.pesquisa {
  position: relative;
  z-index: 10001;
}

/*rsdfghjkllkjhgfdsdfghjkllkjhgfdsdfghjklkjhgfdsdfghjkllkjgfdsdfghj*/

.overlay-busca {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);

  z-index: 10000; /* 🔥 abaixo da busca, acima de tudo */
  display: none;
}

.overlay-busca.ativo {
  display: block;
}

.pesquisa.ativa {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  max-width: 600px;

  z-index: 10001; /* acima do overlay */
}








.btnlupa {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-65%);
    background: none;
    border: none;
    cursor: pointer;
}

/*LOGO*/
/* POR PADRÃO (DESKTOP) */
.logo-mobile {
    display: none;
}

.logo-desktop {
    display: block;
}

/* MOBILE (até 768px) */
@media (max-width: 768px) {
    
    .logo-mobile {
        display: block;
    }

    .logo-desktop {
        display: none;
    }
}


/* ===== CORRIGIR FAIXA BRANCA NO CELULAR ===== */

/* Impede o scroll lateral */
html, body {
 margin: 0;
    padding: 0;
    width: 100%;
   
}



/* ===== ÁREA DIREITA (ENTRAR + SACOLA) ===== */
.entrada {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto; /* joga tudo para a direita */
}

/* entrar / criar conta (desktop) */
.abrirLogin {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
}
.desktop {
    display: inline-flex;
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
}
.btncontato i {
    color: green;
}



/* conta logada */
.minhaconta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    position: relative;
}

/* bolinha verde */
.minhaconta::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

/* sacola */
a.sacola {
    color: #fff;
    text-decoration: none;
}

.btnsacola {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}




/* ====== PESQUISA ====== */


.linhaanimada {
	width: 100%;
	height: 10px;
	background-color: #4c68d1;
	animation: mudacor 2s infinite alternate;
    z-index: 9999;
    top: 70px;
    position: fixed;
}

@keyframes mudacor {
	0% {
		background-color: #04BBDF;
	}
	100% {
		background-color: #77089c;
	}
}




/* ====== FORMULÁRIO ====== */


.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    pointer-events:none;
    transition:.3s;
    z-index:998;
}
.overlay.ativo{opacity:1;pointer-events:all}

.cadastro{
  text-decoration: none;
  color: white;
}

/* PAINEL */
.painel{
    position:fixed;
    top:0;
    right:-420px;
    width:320px;
    max-width:100%;
    height: auto;;
    background:#fff;
    padding:32px 26px;
    transition:.4s ease;
    z-index:999;
    border-radius: 8px;
}
.painel.ativo{
    right: 110px;
    top: 100px;

}

.fechar{
    position:absolute;
    top:14px;
    right:18px;
    background:none;
    border:none;
    font-size:26px;
    cursor:pointer;
}

h2{margin: 40px 0 6;font-size:22px;font-weight:600;color:#222}
p{margin:0 0 22px;color:#777;font-size:14px}

input{
    width:100%;
    padding:14px 16px;
    margin-bottom:14px;
    border-radius:10px;
    border:1px solid #e5e5e5;
    font-size:14px;
}

button.btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#00b874;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.links{
    margin-top:18px;
    text-align:center;
    font-size:13px;
    color:#777;
}
.links span{
    color:#00b874;
    font-weight:600;
    cursor:pointer;
}


.tela{display:none}
.tela.ativa{display:block}
/* TELAS painel de cadastro */







/* ====== MENU====== */

.menu-dropdown {
	display: none;
	position: absolute;
	top: 50px;
	left: 0;

	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);

	z-index: 10000;
	width: 200px;

	/* SCROLL */
	max-height: 480px;
	overflow-y: auto;
}


.menu-dropdown::-webkit-scrollbar{
    width:6px;
}

.menu-dropdown::-webkit-scrollbar-thumb{
    background:#c1c1c1;
    border-radius:10px;
}

.menu-dropdown::-webkit-scrollbar-track{
    background:transparent;
}

.menu-dropdown ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-dropdown ul li {
	position: relative;
}

.menu-dropdown ul li a {
	display: block;
	padding: 10px 15px;
	color: #677179;
	text-decoration: none;
	font-size: 14px;
	transition: 0.3s;
}

.menu-dropdown ul li a:hover {
	background-color: goldenrod;
}

/* Submenu (nível 2) */
.menu-dropdown ul li .submenu {
	display: none;
	position: absolute;
	top: 0;
	left: 100%; /* abre ao lado do menu */
	background-color: #fff;
	border-radius: 8px;
	width: 180px;
}


.menu-dropdown ul li:hover .submenu {
	display: block;
}

/* Quando ativo */
.menu-dropdown.active {
	display: block;
}



/* Mostra o texto normalmente */
.namemenu {
  display: inline-block;
  margin-left: 15px;
  font-size: 18px;
  text-decoration: none;
  color: black;
}



/* Tela grande: títulos normais */
.form3, .form4 {
  display: block;
  font-size: 18px;
  margin: 5px 0;
  color: #000;
}

.fa-solid fa-bag-shopping fa-xl{
    position: relative;
    top: 2px;
    left: -50px;
}







/* ====== RESPONSIVIDADE ====== */
















/* ===== ÍCONE DE CONTATO ===== */
.btncontato {
  background: none;
  border: none;
  cursor: pointer;
  display: none; /* escondido por padrão */
  top: 10px;
   z-index: auto;
  
}

.fa-regular.fa-user.fa-xl {
    position: relative;
    top: 2px;
	left: 10px;
   
}

/* ===== TELAS GRANDES (DESKTOP) ===== */

.entrada {
  display: flex;
  align-items: center;
  gap: 12px;
  
}








/* ====== PROPAGANDA ====== */
.carrossel_pix {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -50px;
}

.imagem01 {
    width: 1200px; 
    height: 300px;
    border-radius: 100px; /* <-- aqui você arredonda */
    
}




/* ====== area do catalogo ====== */
.catalogo {
    display: flex;
    flex-wrap: wrap;        /* 🔑 quebra automática */
    justify-content: center;
    gap: 1px;
    width: 100%;
    max-width: 100%;
    padding: 10px 10px;
}


.imagem {
    background-color: #fff9ff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #ffd700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 5px;
    overflow: hidden;
}

.imagem img {
    width: 85px;
    height: auto;
    transition: transform 0.3s ease;
}

.imagem img:hover {
    transform: scale(1.1);
}

.cata p {
    background-color: #333;
    color: white;
    font-weight: 800;
    font-size: 16px;
    border-radius: 8px;
    padding: 5px 10px;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.catalogos {
    text-decoration: none;
}








/* ====== PRODUTOS MAIS VENDIDOS ====== */









/*PARTE CSS DO HTML SACOLA.HTML*/

.Pagamento {
	border-radius: 2vh;
	width: 40vh;
	height: 25vh;
	position: relative;
	left: 70vh;
	top: 15vh;
	background-color: #f5f5f5;
}

.btncomprar {
	width: 30vh;
	height: 5vh;
	border-color: #00b27a;
	background-color: #fff;
	border-radius: 5px;
	font-size: 16px;
	position: relative;
	left: 5vh;
	color: #00b27a;
}

.btnfinalizar {
	width: 30vh;
	height: 5vh;
	border-color: transparent;
	background-color: #00b27a;
	border-radius: 5px;
	font-size: 16px;
	position: relative;
	top: 2vh;
	left: 5vh;
}

h6.pagamento {
	position: relative;
	left: 1vh;
}




/* grid do times de futebol */

.grid-imagens {
  display: grid;
  grid-auto-flow: column; 
  grid-auto-columns: 170px; 
  gap: 20px;
  
  padding: 10px;
 
}



.times{
	font-size: 24px;
  color: #000;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  border-bottom: 3px solid #00b27a;
  position: relative;
  top: 460px;
}


/* cada item */
.item {
  width: 170px;
  height: 170px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  top: 500px;
}

/* imagem */
.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .3s;
}

/* overlay escuro */
.item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent; /* sem escurecer */
  opacity: 0; /* pode até remover, mas deixamos pra manter compatibilidade */
  transition: .3s;
}



/* quando passar o mouse, aparece tudo */
.item:hover::after {
  opacity: 1;
}

.item:hover .btn-add {
  opacity: 1;
  pointer-events: auto;
}

.item:hover img {
  transform: scale(1.1);
}







.overlayPesquisa {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;       
    height: 100%;       
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: start;
    padding-top: 80px;
    overflow: hidden;   
    border: none;
    

}


/* Caixa da pesquisa criada via JS */
.boxPesquisaFull {
    display: flex;
    width: 90%;
    gap: 10px;

}

/* Input criado via JS */
.boxPesquisaFull input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 1.1rem;
        border: 1px solid #ffd700;
}

/* Botão X criado via JS */
.btnClosePesquisa {
    background: red;
    border: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 1.2rem;
}

/* Só funciona no celular */





.menu2 {
    display: inline-block !important;
    width: auto !important;
    min-width: fit-content !important;
    padding: 15px 20px;
}

.menu2 ul {
    width: auto !important;
    min-width: fit-content !important;
}

.menu2 ul li {
    white-space: nowrap !important; 
    padding: 8px 0;
    font-size: 18px;
}






.footer {
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 520px;
    position: relative;
}

.footer-content p {
    margin: 5px 0;
    font-size: 14px;
    font-family: Poppins, sans-serif;
}



body{
margin:0;
font-family:Arial;
background:#e9e9e9;
}

/* CONTAINER CENTRALIZADO */

.grid-scroll{
max-width:1500px;
margin:20px auto;
padding:0 0px;
}

/* GRID DAS IMAGENS */

.grid-scroll-inner{
display:flex;
gap:20px;
}

/* CARD */
.item-roll{
    position:relative;
    min-width:260px;
    width:260px;
    height:390px;
    overflow:hidden;
    border-radius:25px;
    cursor:pointer;
    flex-shrink:0;
}

/* IMAGEM */
.item-roll img{
    width:100%;
    height:130%;
    object-fit:cover;
    transition:0.4s;
   
}

.item-roll:hover img{
    transform:scale(1.05);
}



/* TEXTO PRINCIPAL */
.texto-principal{
    position:absolute;
    bottom:90px;
    left:50%;
    transform: translateX(-50%);
    color:white;
    font-size:38px;
    font-weight:800;
    text-align:center;
    letter-spacing:2px;
    z-index:2;
}

/* BOTÃO */
.botao{
    position:absolute;
    bottom:30px;
    left:50%;
    transform: translateX(-50%);
    border:2px solid white;
    padding:10px 0;
    font-size:13px;
    color:white;
    text-decoration:none;
    width:75%;
    max-width:200px;
    text-align:center;
    border-radius:4px;
    z-index:2;
    transition:0.3s;
}

.botao:hover{
    background:white;
    color:black;
}

/* carrossel (desktop) */
body{
margin:0;
background:#e9e9e9;
font-family:Arial;
}

/* área do banner centralizada */
.mySwiper{
width:100%;
max-width:1550px;
margin:100px auto;
padding:0 35px;
box-sizing:border-box;
}

.swiper-slide{
    border-radius:18px;
    overflow:hidden;
    height:420px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;        /* 🔥 ocupa o slide inteiro */
    object-fit: cover;   /* 🔥 preenche sem deixar espaço */
    display: block;
}
/* celular */
@media (max-width: 768px){

    .swiper-slide{
        height: auto; /* 🔥 remove altura fixa */
    }

    .swiper-slide img{
        height: auto;
    }

}
.banner-mobile {
    display: none !important;
}

.banner-desktop {
    display: block !important;
}

@media (max-width: 768px){
    .banner-mobile {
        display: block !important;
    }

    .banner-desktop {
        display: none !important;
    }
}


.banner-mobile {
    display: none;
}

.banner-desktop {
    display: block;
}

/* MOBILE */
@media (max-width: 768px){
    .banner-mobile {
        display: block;
    }

    .banner-desktop {
        display: none;
    }
}

@media (max-width:768px){

.mySwiper{
padding:10px 10px;
top: 85px;
position: relative;
}

.swiper-slide{
height:210px;
border-radius:16px;
}

}


/*BARRA DE ROLAGEM*/

::-webkit-scrollbar{
  background-color:black ;
  width: 8px;
  
}
::-webkit-scrollbar-track{
  border-radius: 3px;
  background-color: black;
  border: 0.1px solid white;
}
::-webkit-scrollbar-thumb {
  background-color: #ffd700;
  border-radius: 3px;
 
}





/*LOGIN DA CONTA CASO ESTIVER CONECTADO*/
.minhaconta {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 15px;
    color: #fff;
    text-decoration: none;

    margin-left: 120px;
    position: relative;
}

/* bolinha verde */
.minhaconta::after {
    content: '';
    position: absolute;
    top: 2px;
    right: -10px;

    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}



/*LOCAL DE VENDA GRADES*/
.topo-sessao {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6px;
    margin-bottom: 8px;
    color: red;
}

/* TÍTULO DA CATEGORIA */
.titulo-sessao {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

/* LINK VER TODOS */
.ver-todos {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.ver-todos:hover {
    text-decoration: underline;
}
















/* MOBILE */
@media (max-width: 768px) {

  /* input escondido no nav */
  .ipesquisa {
    display: none;
    color: #000; /* texto PRETO */
  }

  .pesquisa.mobile-ativo {
    position: fixed;
    top: 16px;
    left: 40%;
    transform: translateX(-50%);
    width: 92%;
    z-index: 999;
  }

  .pesquisa.mobile-ativo .ipesquisa {
    display: block;
    width: 100%;
    height: 46px;
    border-radius: 12px;
    border: none;
    padding: 0 16px;
    font-size: 16px;
    background: #fff;
  }
}


#resultadoBuscaMobile {
  position: absolute;
  top: 70px;

  left: 50%;
  transform: translateX(-50%);   /* 🔑 centraliza de verdade */

  width: 90%;
  max-width:700px;              /* 🔒 NÃO ALARGA */
  min-width: 280px;

  max-height: 60vh;
  overflow-y: auto;

  background: #fff;
  border-radius: 12px;
  box-sizing: border-box;

  z-index: 1003;
}

@media (max-width: 768px) {
  #resultadoBuscaMobile {
    position: fixed;
    top: 140px; /* ajuste conforme a altura do nav */
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    max-width: 320px;
    max-height: 60vh;

    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);

    z-index: 9999;
  }
  .overlay-busca {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: none;
  z-index: 998;
}
.overlay-busca.ativo {
  display: block;
}

}


.titulo-busca {
  padding: 10px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

.item-busca {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 12px;
  border-bottom: 1px solid #eee;
  color: #000;
  text-decoration: none;
}

.item-busca span {
  font-size: 14px;
  color: #333;
}

.item-busca:hover {
  background: #f5f5f5;
}

.ver-todos {
  display: block;
  padding: 14px;
  text-align: center;
  font-weight: bold;
  color: #000;
}


    .status-logado {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #1ecb4f;
    border-radius: 50%;
    border: 2px solid #0f172a; /* cor do header */
}

.desktop {
    display: inline-flex;
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}
/* ===== GRADE DE PRODUTOS ===== */



.grade-container{
    position: relative;
    width: 100%;
    overflow: hidden;
    top: 150px;
}

.grade-slider{
    display: flex;
    gap: 18px;
    transition: transform .3s ease;
}

.grade-card{
    min-width: 250px; /* largura fixa do card */
    flex-shrink: 0;
}



.grade-slider::-webkit-scrollbar{
    display:none;
}

/* card */
.grade-card{
    background: #fff;
    border-radius: 14px;
    width: 200px;
    min-width: 220px;

    scroll-snap-align: start; 

    text-decoration: none;
    color: #111;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    padding: 14px;
    transition: 0.2s;
    margin-top: 20px;
}


.grade-card:hover{
    transform: translateY(-5px);
}

/* imagem produto */
.grade-card img{
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* caso não tenha imagem */
.sem-imagem{
    width:100%;
    height:180px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eee;
    border-radius:10px;
}

/* info produto */
.info-produto{
    display:flex;
    flex-direction:column;
}

/* titulo */
.grade-titulo{
    font-size:15px;
    font-weight:500;
    color:#333;
    margin-bottom:4px;
}

/* preço */
.grade-preco{
    font-size:22px;
    font-weight:700;
    color:#00a650;
    margin-bottom:4px;
}

/* parcelas */
.grade-parcelas{
    font-size:14px;
    color:#666;
}

/* pix */
.grade-pix{
    font-size:14px;
    color:#00a650;
    font-weight:500;
    position: relative;
    bottom: 16px;
}

/* setas */
.grade-seta{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#fff;
    width:38px;
    height:38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    cursor:pointer;
    box-shadow:0 2px 8px rgba(0,0,0,0.25);
    z-index:10;
}

.g-esq,
.g-dir{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
}

.g-esq{
    left: 0px;
}

.g-dir{
    right: 0px;
}


body, html{
    margin:0;
    padding:0;
}

/*fundo escuro do reset*/
.fundo-escuro{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.5);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

/* CAIXA */
.caixa-mensagem{
    background:#fff;
    width:380px;
    max-width:90%;
    padding:25px;
    border-radius:8px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
}

/* TÍTULO */
.caixa-mensagem h3{
    font-size:18px;
    font-weight:600;
    color:#222;
    margin-bottom:10px;
    line-height:1.4;
}

/* EMAIL */
.caixa-mensagem p{
    font-size:14px;
    color:#555;
    margin-bottom:15px;
}

/* TEXTO PEQUENO */
.caixa-mensagem small{
    font-size:13px;
    color:#777;
    display:block;
    line-height:1.5;
    margin-bottom:20px;
}

/* BOTÃO */
.caixa-mensagem button{
    background:#2ecc71; /* verde igual da imagem */
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:6px;
    font-size:14px;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:8px;
}

/* ÍCONE CHECK */
.caixa-mensagem button::before{
    content:"✔";
    font-size:14px;
}

/* HOVER */
.caixa-mensagem button:hover{
    background:#27ae60;
}





   @media (max-width: 768px){

    .fundo-escuro{
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width:100vw;   /* 🔥 força largura total real */
    height:100vh;
    margin:0;
    padding:0;
}

    .caixa-mensagem{
        width:350px;        /* tamanho fixo */
        max-width:90%;      /* segurança pra telas menores */
        padding:20px;
        border-radius:12px;
        margin:auto;        /* 🔥 ISSO CENTRALIZA */
    }
    .fundo-escuro{
    backdrop-filter: blur(5px);
}





    .caixa-mensagem h3{
        font-size:16px;
    }

    .caixa-mensagem p{
        font-size:13px;
    }

    .caixa-mensagem small{
        font-size:12px;
    }

    .caixa-mensagem button{
        width:100%; /* botão ocupa toda largura */
        justify-content:center;
        padding:12px;
        font-size:14px;
    }

}




.erro-login{
    margin-top:15px;
    background:#ffe5e5;
    color:#d60000;
    border:1px solid #ffb3b3;
    padding:12px;
    border-radius:10px;
    font-size:14px;
    text-align:center;
    font-weight:600;
}

.sucesso-cadastro{
    color:#16a34a;
    font-size:14px;
    margin-top:12px;
    text-align:center;
    font-weight:600;
}