/*
  Arquivo: style.css
  Descrição: Arquivo de estilo para layout, cores e responsividade do site.
  Classes comentadas por bloco visual.
*/
/* === Estilos Globais === */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* === Cabeçalho === */
header {
    background-color: #111;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    height: 70px;
}



/* === Conteúdo Principal === */
main {
    padding: 40px 20px;
    text-align: center;
}

/* === Mensagem do Carrinho === */
#mensagem-carrinho {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: #2e46ccb7;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    transition: opacity 2s ease;
}



#contador-carrinho {
    position: absolute;
    top: -8px;
    right: -8px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    display: none;
}

/* === Vitrine de Produtos === */
#vitrine {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.produto {
    background-color: #111;
    border-radius: 10px;
    padding: 15px;
    width: 260px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
    transition: transform 50ms;
}

.produto:hover {
    transform: scale(1.03);
}

.produto img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: 10ms ease-in-out;
}

.produto h2 {
    margin: 10px 0 5px;
}

.produto p {
    font-size: 18px;
    margin: 0;
}

.produto button,
.botao-comprar {
    background-color: #534b8f;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

/* === Responsividade Menu === */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .logo {
        margin: 0 auto;
    }
}

/* === Rodapé === */
footer {
    background-color: #111;
    color: white;
    padding: 40px 20px;
    margin-top: 60px;
    font-family: Arial, sans-serif;
}

footer h1 {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
}

footer h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

footer p,
footer a {
    font-size: 16px;
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: #2ecc71;
}

footer .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    gap: 30px;
}

footer .footer-social img {
    width: 32px;
    height: 32px;
    margin: 0 5px;
    transition: transform 0.2s;
}

footer .footer-social img:hover {
    transform: scale(1.1);
}

footer .powered-by img {
    height: 80px;
    max-width: 150px;
    object-fit: contain;
    margin-top: 10px;
}

footer .copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #aaa;
}

/* Responsivo Rodapé */
@media (max-width: 768px) {
    footer .footer-container {
        flex-direction: column;
        align-items: center;
    }
}


/* Neon e hover para botões */
button, .btn-finalizar, .btn-tamanho, .btn-ver-produto {
  background: linear-gradient(90deg, #00f0ff, #7f00ff);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

button:hover, .btn-finalizar:hover, .btn-tamanho:hover, .btn-ver-produto:hover {
  background: linear-gradient(90deg, #7f00ff, #00f0ff);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(127, 0, 255, 0.7);
}

/* Tamanho botão */
.btn-tamanho {
  padding: 8px 14px;
  font-size: 0.9em;
}

/* Botão ver produto (link estilizado) */
.btn-ver-produto {
  display: inline-block;
  margin-top: 10px;
}

/* Alinhar itens do carrinho de forma estilizada */
.carrinho-item {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: white;
}

.carrinho-item img {
  max-width: 80px;
  border-radius: 8px;
  border: 1px solid #555;
}

.carrinho-info {
  flex: 1;
}

.carrinho-info h3 {
  margin: 0;
  font-size: 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.carrinho-info .tamanho {
  font-size: 0.9em;
  color: #aaa;
}

.carrinho-info .preco {
  margin-top: 5px;
  font-weight: bold;
}

.carrinho-info .voltar {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85em;
  color: #00f0ff;
  text-decoration: underline;
}


.pagina-produto {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 30px;
  background-color: #111;
  color: white;
}

.imagem-grande img {
  width: 400px;
  height: auto;
  border: 2px solid #555;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.imagem-grande img:hover {
  transform: scale(1.3);
  cursor: zoom-in;
}

.detalhes-produto {
  flex: 1;
  min-width: 300px;
}

.estoque {
  color: #0f0;
  font-weight: bold;
}

.preco {
  font-size: 24px;
  color: #0ff;
  margin: 10px 0;
}

.customizacao input[type="text"] {
  display: block;
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  background: #222;
  color: white;
  border: 1px solid #555;
  border-radius: 6px;
}

.botoes-tamanho {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.tamanho-btn {
  background: #333;
  color: white;
  border: 1px solid #666;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
}

.tamanho-btn:hover,
.tamanho-btn.selected {
  background: #0ff;
  color: black;
}

.quantidade-compra {
  margin-top: 16px;
}

.quantidade-compra input[type="number"] {
  width: 60px;
  padding: 6px;
  margin-right: 10px;
}

.btn-comprar {
  background: #00f;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.icone-carrinho {
    position: relative;
}



#opcoes-tamanho button.selecionado {
  background-color: #7f00ff;
  color: white;
}


.lineups h2 {
    font-size: 22px;
    color: white;
    margin-bottom: 50px;
    margin-left: 2vh;
    text-align: center; /* padrão desktop */
}

/* Para celular */
@media (max-width: 768px) {
    .lineups h2 {
        text-align: left;
    }
}


.valhalla-section {
    background: linear-gradient(to bottom right, #0e1a2b, #08101f);
    padding: 60px 30px;
    text-align: center;
    color: white;
}

.valhalla-hero {
    max-width: 1000px;
    margin: 0 auto;
}

.logo-hero {
    width: 220px;
    max-width: 90%;
    filter: drop-shadow(0 0 25px #5cfaff);
    animation: pulseLogo 3s infinite ease-in-out;
}

.hero-text {
    font-size: 18px;
    margin-top: 30px;
    line-height: 1.8;
    text-align: justify;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #000;
}

@keyframes pulseLogo {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}
