/* Global Styles */

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: 0.8em;
  background-color: #f9f9f9;
}

/* Header */

header {
  background-color: #eeeeee;
  box-shadow: 0px 3px 10px #464646;
  color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  padding: 0.0em 4rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  color: #000000;
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-list ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  text-decoration: none;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 400;
}



.mobile-menu-icon {
  display: none;
}

.mobile-menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .nav-bar {
      padding: 1.5rem 4rem;
  }
  .nav-item {
      display: none;
  }
  .login-button {
      display: none;
  }
  .mobile-menu-icon {
      display: block;
  }
  .mobile-menu-icon button {
      background-color: transparent;
      border: none;
      cursor: pointer;
  }
  .mobile-menu ul {
      display: flex;
      flex-direction: column;
      text-align: center;
      padding-bottom: 1rem;
  }
  .mobile-menu .nav-item {
      display: block;
      padding-top: 1.2rem;
  }
  .mobile-menu .login-button {
      display: block;
      padding: 1rem 2rem;
  }
  .mobile-menu .login-button button {
      width: 100%;
  }
  .open {
      display: block;
  }
}

header img {
  max-width: 150px;
  /* Ajuste o tamanho do logo conforme necessário */
}


nav {
  margin-left: auto;
}

nav ul {
  list-style-type: none;
  display: flex;
}

nav ul li {

  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #ffff;
  font-size: 16px;
  background-color: #0303b5;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px
}

header h1 {
  font-size: 24px;
  margin-bottom: 10px;
}





header nav a {
  color: #fff;
  text-decoration: none;
}

header nav a:hover {
  color: #ccc;
}

/* Separador */

.separador {
  height: 20px;
  background-color: #ddd;
  margin: 20px 0;
}

/* Container */

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #c2c2ca36;
  box-shadow: 0 0 10px rgb(0, 0, 0);
  border-radius: 10px;
}

/* Texto e Formulário */
strong{
  font-weight: bold;
  font-size: 1.4em;
  text-align: center;
  margin-left: 18px;
  
}
.texto-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.texto {
  width: 60%;
  padding: 20px;
}

.texto p {
  margin-bottom: 20px;
}

.formulario {
  width: 40%;
  padding: 20px;
  background-color: #020266;
  border-radius: 10px;
  color: #fff;
  border: 1px solid black;
  box-shadow: 0 0 10px rgb(0, 0, 0);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.formulario h4 {
  margin-top: 0;
}

.formulario input,.formulario textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
}

.formulario input[type="submit"] {
  background-color: #337ab7;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.formulario input[type="submit"]:hover {
  background-color: #23527c;
}

.finalform{
  font-size: 1.6em;
  font-style: oblique;
}
/* Footer */

footer {
  background-color: #e0e0e0;
  padding: 20px;
  text-align: center;
  border-top: 2px solid #171718;
  /* Linha superior */
}
.instagram-logo {
  width: auto;
  height: 30px; /* Ajuste a altura conforme necessário */
  
  
}
@media screen and (max-width: 768px) {
  nav {
    margin-left: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;    }
  
  .imagem {
    grid-column: 1 / -1; /  }
  
  .texto {
    grid-column: 1 / -1;     margin-top: 20px; 
}
footer {
  padding: 10px;
}
nav {
  margin-left: 0;
}

nav ul {
  flex-direction: column;
  align-items: center;
}

nav ul li {
  margin-right: 0;
  margin-bottom: 10px;
}
.nav-link{
  color: black;
}

}
