﻿body {
  width: 99%;
  margin-top: 130px;
  margin-left: 13px;
  overflow-y: scroll;
	height: 100%;
	/* Garante que o body ocupe toda a altura da viewport */
	display: block;
}

#header {
  display: flex;
  position: fixed;
  background: rgba(0,0,0,1.0);  
  top: 1px;
  width: 100%;
  height: 120px;  
  left: 0px;
  z-index: 999;
}

#banner {
  margin-top: 5px;
  text-align: center;
}

#banner > img, #banner > div {
  display: inline-block;
  vertical-align: top;
  padding: 5px 10px;
}

::-webkit-scrollbar {
	background-color: #8C1717;
	\*cor da rolagem*/ width: 15px;
	height: 20px;
	-webkit-box-shadow: 0px 1px 1px #FA1C16;
	inset;
}

::-webkit-scrollbar-thumb {
	border-radius: 15px;
	background-color: #000000;
}

body {
	scrollbar-3d-light-color: #000000;
	scrollbar-arrow-color: #8C1717;
	scrollbar-base-color: #63492f;
	scrollbar-face-color: #000000;

}

h2 {
	text-align: center;
	margin-bottom: 10px;
}

 .button {
    width: 150px;
    margin: 10px;
    font-weight: bold;
    color: black;
    background-color: #d13433;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    padding: 5px;
    
  }

button:hover {
    background-color: #FA1C16;
}

.container {
    max-width: 650px;
}

.container ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* Permite quebrar linha quando não couber */
    gap: 5px; /* Espaçamento entre os itens */
}

.container li {
    margin-bottom: 5px;
    flex: 1 1 200px; /* Define largura mínima dos itens (ajusta conforme o espaço disponível) */
}

.btn-container {
    display: block;
    width: 200px; /* Largura do botão */
    height: 25px; /* Altura do botão */
    position: relative;
}

.btn-container img {
    width: 100%;
    height: 75%;
    object-fit: cover; /* Faz a imagem cobrir o espaço inteiro do botão */
}

.btn-text {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: normal;
    font-size: 16px;
    text-shadow: 1px 1px 2px black;
}


@media (max-width: 768px) {
	li {
		flex: 1 1 calc(50% - 20px);
	}
}

@media (max-width: 480px) {
	li {
		flex: 1 1 100%;
	}
}

.tableOuro {
	box-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #FA1C16, 0 0 20px #FA1C16, 0 0 30px #FA1C16, 0 0 40px #FA1C16, 0 0 55px #FA1C16;
}