body {
  cursor: url('data:image/svg+xml;utf8,\
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64">\
<text x="50%" y="50%" dominant-baseline="central" text-anchor="middle" font-size="30">🔧</text>\
</svg>') 32 32, auto;
}

/*Botao volta ao inicio*/
.btn-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #e63946;       /* cor de fundo */
  color: white;              /* cor da seta */
  font-size: 20px;
  font-weight: bold;
  width: 48px;
  height: 48px;
  border-radius: 50%;        /* formato circular */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background 0.3s, transform 0.2s;
  z-index: 1000;             /* sempre por cima */
}

.btn-top:hover {
  background: #b31d2d;       /* cor mais escura no hover */
  transform: scale(1.1);     /* aumenta um pouco */
}


/* Header e nav*/
/* Reset básico para evitar diferenças entre navegadores */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

nav {
  display: flex;
  justify-content: space-between;  /* Logo à esquerda, links à direita */
  align-items: center;
  padding: 12px 32px;
  background-color: #111;          /* cor de fundo do nav */
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Logo */
nav img {
  border-radius: 8px;              /* opcional: cantos arredondados */
  transition: transform .3s;
  background-color: white;
}

nav img:hover {
  transform: scale(1.05);          /* leve zoom ao passar o mouse */
}

/* Container dos links */
nav ul {
  display: flex;
  gap: 24px;      /* espaçamento entre os links */
  list-style-type: none;
}

/* Links */
.navegador {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 6px 0;
  transition: color .3s;
}

/* Efeito hover: underline animado */
.navegador::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #e63946;   /* cor destaque */
  transition: width .3s;
}

.navegador:hover {
  color: #e63946;
}

.navegador:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  background: url('../imagens/fundo1.png') no-repeat center center/cover;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 3rem 2rem;
  position: relative;
  animation: fadeInHero 1.5s ease-in-out;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.65);
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: slideUp 1s ease-in-out;
}

.hero h1 {
  font-size: 3rem;
  color: #ff4d4d;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero p {
  margin: 1rem 0;
  font-size: 1.2rem;
  line-height: 1.8;
}

.hero blockquote {
  font-style: italic;
  border-left: 4px solid #ffcc00;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #fff;
  opacity: 0.9;
}

/* Animações */
@keyframes fadeInHero {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Fornecedores */
.fornecedores{
  background: url('../imagens/fundo2.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  position: relative;
}

.fornecedores::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.fornecedores-text {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.fornecedores h1 {
  font-size: 2.5rem;
  color: #e60000;
}

.fornecedores p {
  margin: 1rem 0;
}





/* Seção patrocinadores */
.patrocinadores {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.patrocinadores h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #e50914;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Grid responsivo */
.ads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Card de propaganda */
.ad {
  background: #222;
  border: 2px solid #e50914;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ad:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.6);
}

/* Vídeos ou imagens */
.ad video,
.ad img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Área do link */
.ad-link {
  background: #333;
  padding: 12px;
  text-align: center;
}

.ad-link a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  background: #e50914;
  border-radius: 6px;
  transition: background 0.3s;
}

.ad-link a:hover {
  background: #b00610;
}
/* Fim da seção patrocinadores */




/* tabela */
.tabela {
  margin: 40px auto;
  width: 90%;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.tabela h1 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.tabela table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.tabela th {
  background: #111;
  color: #fff;
  padding: 12px;
}

.tabela td {
  border: 1px solid #ccc;
  padding: 12px;
}

.tabela tr:nth-child(even) {
  background: #f9f9f9;
}

.tabela tr:hover td {
  background: #ffe6e6;
  transition: 0.3s;
}
/* Fim das tabelas */




/* Layout das colunas */
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-left, .footer-right {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #e60000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background: #b00000;
}


/* Ícones sociais */
.social-links {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.social-links a svg {
  transition: color 0.3s ease;
  color: #fff; /* cor padrão (branco) */
}

/* Instagram hover */
.social-links a[aria-label="Instagram"]:hover svg {
  color: #e1306c; /* cor rosa do Instagram */
}

/* Facebook hover */
.social-links a[aria-label="Facebook"]:hover svg {
  color: #1877f2; /* azul do Facebook */
}

.footer-right .maps {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}










/* Estilo básico da tabela */
    table {
      width: 90%;
      margin: 20px auto;
      border-collapse: collapse;
      text-align: center;
      font-family: Arial, sans-serif;
    }
    table, th, td {
      border: 1px solid #333;
    }
    th, td {
      padding: 10px;
    }

    /* Linhas coloridas */
    tr:nth-child(4) td { background-color: #ffe0e0; }
    tr:nth-child(7) td { background-color: #e0ffe0; }
    tr:nth-child(10) td { background-color: #e0e0ff; }
    tr:nth-child(13) td { background-color: #fff0b3; }

    /* Cabeçalho */
    th {
      background-color: #333;
      color: #fff;
    }

    section {
      margin: 40px 0;
      padding: 20px;
    }
    .fornecedores, .patrocinadores {
      text-align: center;
    }
