* {
  cursor: url("../image/cursor.png"), auto !important;
}

body {
  background-image: url("../image/background.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
}

#container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 1500ms, filter 1500ms, transform 1500ms;
  margin-bottom: 100px;
}

h1 {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 10px;
  transition: opacity 1500ms, filter 1500ms, transform 1500ms;
  position: relative;
}

h1::after {
  content: "(depois do thanos)";
  display: block;
  font-size: 16px;
  color: #8e44ad;
  font-style: italic;
  margin-top: 5px;
  font-weight: normal;
}

h1:hover {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.2) translateY(-20px);
}

h2 {
  color: #34495e;
  text-align: center;
  font-style: italic;
  margin-bottom: 30px;
  transition: opacity 1500ms, filter 1500ms, transform 1500ms;
}

h2:hover {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.1) translateY(-15px);
}

h3 {
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 5px;
  transition: opacity 1500ms, filter 1500ms, transform 1500ms;
}

h3:hover {
  opacity: 0;
  filter: blur(6px);
  transform: scale(1.05) translateY(-10px);
}

p {
  margin-bottom: 15px;
  text-align: justify;
  transition: opacity 1500ms, filter 1500ms, transform 1500ms;
}

p:hover {
  opacity: 0;
  filter: blur(5px);
  transform: scale(1.02) translateY(-8px);
}

a {
  color: #3498db;
  text-decoration: none;
  transition: opacity 1500ms, filter 1500ms, transform 1500ms;
}

a:hover {
  opacity: 0;
}

.intro {
  margin-bottom: 30px;
  transition: opacity 1500ms, filter 1500ms, transform 1500ms;
}

.main {
  margin-bottom: 30px;
  transition: opacity 1500ms, filter 1500ms, transform 1500ms;
}

.sidebar {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
  transition: opacity 1500ms, filter 1500ms, transform 1500ms;
}

ul {
  list-style-type: none;
  padding: 0;
  transition: opacity 1500ms, filter 1500ms, transform 1500ms;
}

li {
  margin-bottom: 10px;
  padding: 8px;
  background: white;
  border-radius: 3px;
  border-left: 3px solid #3498db;
  transition: opacity 1500ms, filter 1500ms, transform 1500ms;
}

li:hover {
  opacity: 0;
  filter: blur(4px);
  transform: scale(1.05) translateY(-6px);
}

.footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  transition: opacity 1500ms, filter 1500ms, transform 1500ms;
}

.footer a {
  margin: 0 10px;
  padding: 5px 10px;
  background: #3498db;
  color: white;
  border-radius: 3px;
  transition: opacity 1500ms, filter 1500ms, transform 1500ms;
}

.footer a:hover {
  opacity: 0;
}
