/* ------------------------------
   FONTE GLOBAL
------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f8ff;
  color: #333;
}

/* ------------------------------
   MENU SUPERIOR
------------------------------ */
nav {
  background-color: #023e8a;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 8px 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-list li {
  margin: 0 18px;
}

.nav-list li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.nav-list li a:hover {
  opacity: 0.7;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  padding: 10px 20px;
}

/* ------------------------------
   HEADER (texto acima da imagem)
------------------------------ */
header {
  background-color: #0077b6;
  color: white;
  text-align: center;
  padding: 100px 20px 50px;
}

/* ------------------------------
   IMAGEM PRINCIPAL
------------------------------ */
.full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
}

/* ------------------------------
   MAIN
------------------------------ */
main {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

/* ------------------------------
   FOOTER PREMIUM
------------------------------ */
footer {
  margin-top: 50px;
  padding: 30px 10px;
  background: linear-gradient(135deg, #0066cc, #0099ff);
  text-align: center;
  color: white;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

footer a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 6px;
}

footer a:hover {
  background: rgba(255,255,255,0.25);
}

/* ------------------------------
   FORMULÁRIOS (contato.php)
------------------------------ */
form {
  display: flex;
  flex-direction: column;
}

input, textarea {
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

button {
  background-color: #0077b6;
  color: white;
  border: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #005f87;
}

/* ------------------------------
   RESPONSIVO
------------------------------ */
@media(max-width: 700px){

  .menu-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    background-color: #023e8a;
    padding: 20px;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    margin: 12px 0;
  }

  header {
    padding: 80px 20px 40px;
  }

  main {
    padding: 10px;
  }
}
