/* Estilos base */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.container {
  width: 90%;
  max-width: 800px;
  padding: 20px;
}

h1 {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 20px;
}

h2 {
  font-size: 72px;
  margin: 10px 0 40px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}

.youtube:hover {
  background-color: #FF0000;
}

.whatsapp:hover {
  background-color: #25D366;
}

.footer {
  margin-top: 30px;
  font-size: 14px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer a:hover {
  opacity: 0.8;
}

/* Responsividade para telas médias (tablets) */
@media screen and (max-width: 768px) {
  .container {
      width: 95%;
      padding: 15px;
  }
  
  h1 {
      font-size: 24px;
  }
  
  h2 {
      font-size: 56px;
      margin: 10px 0 30px;
  }
  
  p {
      font-size: 16px;
      margin-bottom: 30px;
  }
}

/* Responsividade para telas pequenas (smartphones) */
@media screen and (max-width: 480px) {
  .container {
      width: 100%;
      padding: 15px 10px;
  }
  
  h1 {
      font-size: 20px;
      margin-bottom: 15px;
  }
  
  h2 {
      font-size: 42px;
      margin: 5px 0 25px;
  }
  
  p {
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 25px;
  }
  
  .social-icon {
      width: 35px;
      height: 35px;
  }
  
  .social-icons {
      gap: 15px;
      margin-bottom: 30px;
  }
  
  .footer {
      margin-top: 25px;
      font-size: 12px;
  }
}

/* Ajustes para telas muito pequenas */
@media screen and (max-width: 320px) {
  h2 {
      font-size: 36px;
  }
  
  p {
      font-size: 14px;
  }
}