
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Corpo da página */
body {
  background-color: beige;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  padding: 20px;
}

/* Container geral */
#container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* INTRO e MAIN lado a lado */
.intro {
  flex: 2 1 600px;
}

.main.supporting {
  flex: 3 1 700px;
}

/* SIDEBAR */
.sidebar {
  flex: 1 1 250px;
  background: #f7f7f7;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  height: fit-content;
}

/* Cabeçalhos */
h1, h2, h3 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #2a5d34; /* verde escuro */
}

h1 span, h2 span, h3 span {
  display: inline-block;
}

/* Parágrafos */
p {
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  color: #333;
  animation: aparecer 1s ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

p:hover {
  transform: scale(1.02);
  box-shadow: 4px 4px 15px rgba(0,0,0,0.2);
}

/* Animação dos parágrafos */
@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Links */
a {
  color: #6f0303;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
  color: #000000;
}

/* Listas na sidebar */
.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  margin-bottom: 12px;
}

.sidebar ul li a {
  display: inline-block;
  color: #000000;
}

.sidebar ul li a:hover {
  color: #000000;
}

/* Rodapé dos links de validação e licença */
.footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #555;
}

.footer a {
  margin-right: 12px;
  font-weight: normal;
}

/* Imagem de fundo */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://i.ibb.co/W4cs53PW/anime-removebg-preview.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 47%;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
  
  /* removemos qualquer filtro e blend que "lavava" a imagem */
  filter: none;
  mix-blend-mode: normal;
}

/* Responsividade básica */
@media (max-width: 900px) {
  #container {
    flex-direction: column;
  }
  .sidebar {
    order: -1;
    width: 100%;
    margin-bottom: 20px;
  }
}
/* Fonte bonita importada do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

/* Aplicando a nova fonte ao corpo da página */
body {
  font-family: 'Poppins', Arial, sans-serif;
}

/* Títulos mais apresentáveis */
h1, h2, h3 {
  font-family: 'Poppins', Arial, sans-serif;
  color: #000000;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

/* Destaque visual com linha decorativa inferior */
h1::after, h2::after, h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #000000;
  margin-top: 8px;
  border-radius: 2px;
}

/* Tamanhos ajustados */
h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
  font-style: italic;
}

   