* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #111;
  color: #fff;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  flex-wrap: wrap;
}


.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.logo a:hover {
  color: gray;
}

.nav-links a,
.actions a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
}

.nav-links a:hover,
.actions a:hover {
  color: gray;
}

.nav-links,
.actions {
  display: flex;
  align-items: center;
}

/* BANNER CONTATO */
.banner-contato {
  position: relative;
  width: 100%;
  height: 94vh;
  overflow: hidden;
}

.banner-contato video {
  width: 100%;
  height: 100%;
  object-fit: FILL;
  object-position: top;
}

/* Linha com texto*/
.linha {
  background-color: rgb(85, 85, 86);
  color: white;
  padding: 40px;
  text-align: center;
  margin-top: 3%;
}

/* Caixa azul com botão */
.caixa-botao {
  background-color: #636465;
  border-radius: 30px;
  padding: 30px;
  text-align: center;
  width: 300px;
  margin: 50px auto;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.caixa-botao p {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

.caixa-botao button {
  background-color: #eff1ed;
  color: rgb(16, 16, 16);
  border: none;
  border-radius: 30px;
  padding: 15px 40px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.caixa-botao button:hover {
  background-color: #66b134;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Conteúdo do modal */
.modal-conteudo {
  background-color: #fff;

  .modal-conteudo li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
    font-size: 16px;
    color: #555;
  }
  
  .modal-conteudo .setor {
    text-align: left;
    flex: 1;
    font-weight: bold;
  }
  
  .modal-conteudo .telefone {
    text-align: right;
    flex: 1;
  }
  
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow-y: auto;
  max-height: 80vh;
}

.modal-conteudo h2 {
  color: #222;
}

.modal-conteudo p {
  color: #444;
  margin-top: 5%;
}

/* Botão de fechar */
.fechar {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

.fechar:hover {
  color: black;
}

/* Lista de tcontatos */
.modal-conteudo ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  color: #333;
}

.modal-conteudo li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
  font-size: 16px;
  color: #555;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #000; }

  /* FORMULARIO */
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background-color: #111;
}

.formulario {
  background-color: #222;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 600px;
}

.formulario h3 {
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
  color: #fff;
}

.form {
  display: flex;
  flex-direction: column;
}

.form label {
  margin-bottom: 8px;
  font-weight: bold;
  color: #ddd;
}

.form select,
.form input,
.form textarea {
  margin-bottom: 20px;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  background-color: #333;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form select:focus,
.form input:focus,
.form textarea:focus {
  outline: none;
  background-color: #444;
  border: 1px solid #66b134;
}

.form textarea {
  resize: vertical;
  min-height: 120px;
}

.form input[type="submit"] {
  background-color: #66b134;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form input[type="submit"]:hover {
  background-color: #8dd75d;
}
  .formulario h3 {
    font-size: 22px;
  }