
/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Menu principal */
header nav, .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 10px 0;
}

.menu a {
  color: #0d47a1;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s;
}

.menu a:hover {
  background-color: #e0e0e0;
  border-radius: 4px;
}

/* Formulários */
form {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

form button {
  background-color: #3f51b5;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background-color: #2c3e90;
}

/* Responsividade */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  header h1 {
    font-size: 24px;
  }

  section {
    padding: 20px;
  }

  form {
    padding: 20px;
  }

  .flex-wrap {
    flex-direction: column;
  }

  iframe {
    width: 100% !important;
    height: 300px !important;
  }

  img[alt="Logo PHILIPE FELIZARDO MILANEZ"] {
    height: 100px !important;
  }
}

/* Seções com flex */
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}

/* Rodapé */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* Botões padrão */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #3f51b5;
  color: white;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #2c3e90;
}

.menu-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding-bottom: 15px;
}

.menu-toggle {
  display: none;
  font-size: 32px;
  cursor: pointer;
}

/* MOBILE MENU RESPONSIVO */
@media (max-width: 768px) {
  .menu-links {
    display: none;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
  }

  .menu-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
