/* Importando Fontes */
@font-face {
  font-family: 'MinhaFonte';
  src: url('fonts/Gagalin-Regular.woff2') format('woff');
}

/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Corpo da Página */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  padding: 20px;
  background-color: #f4f4f4;
}

/* Fundo com Imagem */
body {
  background-image: url('https://img.freepik.com/fotos-gratis/close-up-do-ambiente-desportivo-com-uma-bola-de-futebol_23-2151891106.jpg?ga=GA1.1.1561358304.1744722585&semt=ais_hybrid&w=740');

  /*background-image: url('https://png.pngtree.com/thumb_back/fw800/background/20240603/pngtree-soccer-or-football-background-image-image_15855158.jpg');*/
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: black;
}

/* Container Principal */
.container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.75);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Títulos */
h1 {
  font-family: 'MinhaFonte', sans-serif;
  font-size: clamp(18px, 5vw, 36px);
  font-weight: 700;
  color: #007bff;
  text-align: center;
}

h4 {
  font-family: 'MinhaFonte', sans-serif;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 15px;
  text-align: center; /* Centraliza o texto */
  width: 100%; /* Garante que ocupe toda a largura */
  display: block; /* Garante que seja tratado como um bloco */
}


@media (max-width: 480px) {
  h1 {
    font-size: 36px;
  }
}

/* Parágrafos e Listas */
p {
  margin-bottom: 15px;
  line-height: 1.8;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

/* Formulários */
form label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: #555;
}

textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  resize: vertical;
}

.input-grande {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

.input-numerico-container {
  display: flex;
  flex-direction: column; /* Alinha os itens verticalmente */
  gap: 10px; /* Espaçamento entre cada par de label/input */
}

.input-item {
  display: flex;
  align-items: center; /* Alinha o texto e o input na mesma linha */
  gap: 5px; /* Espaçamento entre o label e o input */
}

label {
  min-width: 150px; /* Define uma largura mínima para os rótulos (opcional) */
  text-align: left; /* Alinha o texto do rótulo (opcional) */
}


.input-pequeno {
  width: 30%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  text-align: center;
}

.input-pequeno::placeholder {
  font-size: 0.9rem;
  color: #aaa;
}

/* Botões */
button, .button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.buttons {
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  gap: 10px; /* Espaço entre os botões */
}

button:hover, .button:hover {
  background-color: #0056b3;
}

#botao-calcular {
  font-size: 16px;
  display: block;
  margin: 20px auto;
}

#botao-calcular:hover {
  background-color: #0056b3;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

/* Estilo do Botão WhatsApp */
.whatsapp {
  margin-top: 20px;
  text-align: center;
}

.whatsapp a {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  background-color: #25d366;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.whatsapp a:hover {
  background-color: #1ebe5b;
}

.whatsapp img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Resultado Final */
#resultado-final {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #28a745;
}

/* Estilos Específicos */
#resultados {
  height: 200px;
  padding: 20px;
  border: 2px solid #007BFF;
}

#resultados::placeholder {
  font-size: 1rem;
}

#sua-cartela {
  height: 400px;
  padding: 20px;
  border: 2px solid #28a745;
  box-sizing: border-box;
}

#sua-cartela::placeholder {
  font-size: 1rem;
}

/* Menus Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background-color: #007bff;
  color: white;
  font-size: 18px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.dropdown-toggle:hover {
  background-color: #0056b3;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  min-width: 150px;
  border-radius: 5px;
  overflow: hidden;
  right: 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #333;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #007bff;
}

/* Estilo de Rodapé */
.site-footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  position: relative;
  bottom: 0;
  width: 100%;
}

.site-footer .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.site-footer .footer-nav {
  margin-top: 10px;
}

.site-footer .footer-nav a {
  color: #007bff;
  text-decoration: none;
  margin: 0 10px;
}

.site-footer .footer-nav a:hover {
  text-decoration: underline;
}

.footer-text {
  text-align: right;
  color: white;
  font-size: 14px;
  padding: 10px;
}

.top-footer {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  height: 60px;
  border-radius: 15px;
}

.site-name a {
  font-family: 'MinhaFonte', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #007bff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .site-name a {
    font-size: 24px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-name a {
    font-size: 18px;
  }
}

/* Banners */
.banner {
  margin: 10px 0;
  text-align: center;
}

.banner img {
  max-width: 100%;
  height: auto;
  display: block;
}

.campo {
  display: flex;
  align-items: center;
  gap: 10px; /* Espaço entre label e input */
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* proporção 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.anuncio {
    margin: 20px 0; /* Espaço em cima e embaixo */
}

/* .carousel {
  position: relative;
  width: 100%;
  height: 1000px;
  overflow: hidden;
}

.carousel .banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel .banner.active {
  opacity: 1;
} */
