@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

body {
  background: #121212;
  color: #f5f5f5;
  line-height: 1.6;
}

#Nick {
  font-style: italic;
  font-weight: 500;
  margin: 20px 10px;
  text-decoration: underline;
  display: flex;
  justify-content: space-between;
  width: 95%;
}

#sociais {
  display: flex;
  justify-content: center;
  align-items: center;
}

#sociais a img {
  width: 20px;
  margin: 5px;
  transition: transform 0.3s ease;
}

#sociais a:hover img {
  transform: scale(1.2);
}

#img {
  display: flex;
  justify-content: center;
  align-items: center;
}

#img img {
  width: 200px;
  margin: 20px auto;
}

#Quem {
  margin: 20px 50px;
}

#Quem h1 {
  font-size: 24px;
  font-weight: 700;
}

#text {
  background: #1e1e1e;
  color: #f5f5f5;
  font-size: 16px;
  width: 90%;
  max-width: 600px;
  margin: 20px auto;
  border: 1px solid #ffbf00;
  padding: 30px;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#text:hover {
  transform: scale(1.02);
}

#parceria {
  text-align: center;
  margin: 30px 0;
}

#parceria h1 {
  font-size: 24px;
  font-weight: 700;
}

#parceria p {
  padding: 5px;
  font-weight: 500;
}

#linha {
  width: 95%;
  height: 1px;
  background-color: #ffbf00;
  margin: 40px auto;
}

#Contrato {
  text-align: center;
  margin: 30px 0;
}

#Contrato h1 {
  font-size: 24px;
  font-weight: 700;
}

#Contrato p {
  font-weight: 500;
  padding: 5px;
}

.container {
  text-align: center;
  margin-top: 10px;
}

.container button {
  background: #ffbf00;
  padding: 10px 20px;
  border-radius: 5px;
  border: 2px solid white;
  transition: background 0.3s ease, transform 0.3s ease;
}

.container button:hover {
  background: #e0ac00;
  transform: scale(1.05);
}

.container a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

#p {
  width: 200px;
  font-size: 14px;
  text-align: center;
  margin: 20px auto;
  padding: 20px;
}

#Novidades {
  text-align: center;
  margin-top: 40px;
}

#Novidades h1 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

#novidade1 {
  width: 200px;
  height: 200px;
  background: lightgrey;
  color: black;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ffbf00;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.3s ease;
}

#novidade1:hover {
  background: #e0e0e0;
  transform: scale(1.05);
}

#frase {
  text-align: center;
  font-size: 18px;
  margin: 20px 0;
  font-style: italic;
}

/* Estilos para tablets */
@media (min-width: 600px) and (max-width: 768px) {
  #text {
    width: 400px;
  }

  #novidade1 {
    width: 300px;
    height: 300px;
  }

  #p {
    width: 200px;
    font-size: 14px;
  }
}

/* Estilos para desktops e PCs */
@media (min-width: 769px) {
  #Nick {
    font-size: 1.2rem;
    margin-left: 20px;
  }

  #Quem {
    width: 200px;
    margin: auto;
    margin-top: 30px;
  }
  
  #sociais a img{
    width: 20px;
  }
  #sociais #sociais1 img{
    width: 23px;
  }

  #Quem h1 {
    font-size: 1.5rem;
  }

  #text {
    width: 500px;
    font-size: 1rem;
    padding: 40px;
  }

  #parceria h1, #Contrato h1, #Novidades h1 {
    font-size: 1.5rem;
  }

  #novidade1 {
    width: 400px;
    height: 400px;
  }

  #p {
    width: 250px;
    font-size: 14px;
  }
}