body{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #161618;
    color: rgb(105, 105, 105);
}
/* Termos de uso */
.terms-main{
    width: 500px;
    text-align: justify;
    font-size: 18px;
}
.terms-main ol li{
    margin: 16px;
}
.terms-header h2{
   color:#007bff;
    text-align: center;
}
/* Sobre */
.sobre-main{
    width: 700px;
    margin: 0 auto;
    text-align: justify;    
    font-size: 22px;
    line-height: 1.5;
}
.sobre-main h1{
    text-align: center;
    color:#007bff;
}
.sobre-main a{
    color:#007bff;
}

/* politica de privacidade */
.main-privacy{
    width: 700px;
    margin: 0 auto;
    text-align: justify;    
    font-size: 21px;
    line-height: 1.2;
}
.main-privacy h2{
    font-size: 24px;
    text-align: center;
   color:#007bff;
}
.main-privacy a{
    color:#007bff;
}

/* Contato */
.main-contact a{
    color:#007bff;
}
.section-contact form {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  border-radius: 10px;
  background-color: #1b1b1f;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-contact h3 {
  text-align: center;
  color: #007bff;
  margin-bottom: 15px;
}

.section-contact label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #999;
}

.section-contact input[type="text"],
.section-contact input[type="email"],
.section-contact textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.section-contact input[type="text"]:focus,
.section-contact input[type="email"]:focus,
.section-contact textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.section-contact textarea {
  resize: none;
  min-height: 120px;
}

.section-contact input[type="submit"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.section-contact input[type="submit"]:hover {
  background-color: #0056b3;
}
.footer{
    width: 60%;
    display: flex;
    justify-content: space-evenly;
    color: #555;
    font-weight: 600;
}
.footer-links{
    display: flex;
    list-style: none;
    gap: 8px;
}
.footer-links a:hover{
    color: rgb(18, 38, 150);
}

a {
    text-decoration: none !important; 
    color: inherit;
}
/* Responsividade */
@media(max-width:900px) {
  .sobre-main,
  .main-contact,
  .main-privacy,
  .terms-main{
    width: 90%;
    text-align: left;
  }
  .section-contact{
    width: 90%;
  }
  .sobre-main h1{
    font-size: 22px;
  }


  .footer {
    width: 100%;
    flex-direction: column;
    align-items: center; /* centraliza todos os itens */
    text-align: center;  /* centraliza texto */
    gap: 20px;           /* espaçamento vertical entre links */
  }
  .footer-links {
    width: 60%;
    flex-direction: column;
    
  }
}
@media(max-width:320px){
  .sobre-main,
  .main-contact,
  .main-privacy,
  .terms-main{
    width: 90%;
    text-align: left;
  }
  .section-contact{
    width: 90%;
  }
  .sobre-main h1{
    font-size: 22px;
  }


  .footer {
    width: 100%;
    flex-direction: column;
    align-items: center; /* centraliza todos os itens */
    text-align: center;  /* centraliza texto */
    gap: 20px;           /* espaçamento vertical entre links */
  }
  .footer-links {
    width: 60%;
    flex-direction: column;
    
  }
 
}