* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: -1px;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  height: 70px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #002366;
  font-weight: bold;
  transition: color 0.3s;
  text-transform: uppercase;
}

nav a:hover {
  color: #0048a8;
}

.hero {
  color: white;
  text-align: center;
  padding: 80px 20px;
  background: #00132c;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
}

section {
  padding: 60px 20px;
  background-color: #fff;
}

section:nth-of-type(even) {
  background-color: #f0f2f5;
}

h2 {
  font-size: 2rem;
  color: #002366;
  margin-bottom: 30px;
  text-align: center;
}

.areas-lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding-top: 10px;
}

.areas-lista li {
  background-color: #e7ecf7;
  padding: 15px 25px;
  border-radius: 8px;
  color: #002366;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: background 0.3s;
}

.areas-lista li:hover {
  background-color: #d0ddf5;
}

.form-contato {
  max-width: 600px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #f9f9f9;
}

.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #003c8b;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s;
}

.form-contato input:focus,
.form-contato textarea:focus {
  border-color: #0048a8;
  outline: none;
}

.form-contato button {
  background-color: #002366;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.form-contato button:hover {
  background-color: #0048a8;
}


footer {
  background-color: #002366;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
}


@media (max-width: 768px) {
  header .container {
    /* flex-direction: column;
    align-items: center; */
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-top: 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .areas-lista {
    flex-direction: column;
    align-items: center;
  }

  .container-contato {
    flex-wrap: wrap;
    padding: 20px !important;
  }

  .contato-info {
    width: 100% !important;
  }

  .contato-informacoes p {
    margin-left: 0 !important;
  }

  .contato-informacoes {
    margin-top: 70px !important;
  }

  .link-contato {
    word-wrap: break-word;
  }

  .areas-lista {
    padding-left: 0;
  }

  .areas-lista li {
    width: 207px;
    text-align: center;
  }

  .container-rodape {
    align-items: flex-end !important;
  }

  .menu-mobile-btn {
    display: flex !important;
  }

  .menu-mobile {
    display: none;
    position: absolute;
    top: 70px;
    right: 0px;
    background: #fff;
    flex-direction: column;
    gap: 0;
    width: 180px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-radius: 8px;
    z-index: 1001;
    padding: 10px 0;
    width: 100%;
  }

  .menu-mobile.menu-aberto {
    display: flex;
  }

  nav ul.menu-mobile li {
    margin: 0;
    border-bottom: 1px solid #eee;
  }

  nav ul.menu-mobile li:last-child {
    border-bottom: none;
  }

  nav ul.menu-mobile li a {
    padding: 12px 20px;
    display: block;
    color: #002366;
  }

  .menu-desktop {
    display: none;
  }

  .menu-responsivo {
    display: block !important;
  }

  .link-contato {
    word-break: break-all;
    display: inline;
  }

  .copyright {
    text-align: left;
  }

}

section#areas {
  background: #00132c;
}

#areas h2 {
  color: #fff;
}

.container-contato {
  display: flex;
  border: 1px solid #00132c;
  padding: 30px;
  margin-top: 50px;
  border-radius: 10px;
  background-color: #f9f9f9;
}

.contato-info {
  width: 50%;
}

.contato-informacoes p {
  margin-left: 140px;
}

.form-contato label {
  margin-bottom: 10px;
}

.icone-contato {
  margin-right: 5px;
}

.link-contato {
  color: rgb(33, 37, 41);
  text-decoration: none;
}

.contato-informacoes {
  margin-top: 10px;
}

.link-contato:hover {
  color: #515356;
}

.btn-enviar {
  width: 130px;
}

.box-enviar {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

section h2 {
  margin-bottom: 40px;
}

body {
  font-family: "Red Hat Text", sans-serif;
}

#sobre p {
  text-align: justify;
}

.ajaxForm-alert {
  margin-top: 15px;
}

.container-rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container-rodape p {
  margin-bottom: 0 !important;
}

.menu-mobile-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-icone {
  width: 28px;
  height: 4px;
  background: #002366;
  margin: 4px 0;
  border-radius: 2px;
  display: block;
  transition: 0.3s;
}

.menu-mobile {
  /* display: flex; */
  gap: 25px;
  list-style: none;
  flex-wrap: wrap;
}

.menu-responsivo {
  display: none;
}