/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* BASE */
body {
  line-height: 1.6;
  background: #0e0e0e;
  color: #fff;
  font-family: Consolas, sans-serif;
}

/* CABEÇALHO */
header {
  background: #1e1e1e;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

header nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

header nav a {
  color: #ddd;
  text-decoration: none;
  padding: 8px;
  border-radius: 5px;
  transition: background 0.3s;
}

header nav a:hover {
  background: #444;
}

/* SEÇÕES */
section {
  padding: 80px 20px 50px;
  max-width: 800px;
  margin: auto;
}

h1, h2 {
  margin-bottom: 15px;
  color: #00bfff;
  text-align: center;
}

p {
  text-align: center;
}

.Image {
  height: 25px;
}

.espace {
  height: 10px;
}

/* VÍDEOS */
.video-thumb {
  width: 100%;
  margin: 10px auto 0;
  border: 2px solid #444;
  border-radius: 8px;
  display: block;
}

/* BOTÕES DE CONTATO */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #1e1e1e;
  border: 2px solid #00bfff;
  border-radius: 8px;
  padding: 10px 15px;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s, transform 0.2s;
  font-family: Arial, sans-serif;
}

.btn-contact img {
  width: 20px;
  height: 20px;
}

.btn-contact:hover {
  background-color: #00bfff;
  color: #000;
  transform: scale(1.05);
}

/* RODAPÉ */
footer {
  text-align: center;
  padding: 20px;
  background: #1a1a1a;
  color: #aaa;
}
