/* === Reset e ajustes gerais === */
body {
  font-family: "Segoe UI", Roboto, sans-serif;
  background-color: #ffc107;
  color: #333;
}

/* === Navbar === */
.navbar {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-brand img {
  max-height: 100px;
  max-width: 200px;

}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: brown !important;
  text-decoration: underline;

}

.nav-link.btn-proposta {
  background: rgba(255, 123, 0, 1);
  color: #fff !important;
  border-radius: 30px;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease;
}

.nav-link.btn-proposta:hover {
  background: #e06700;
}

/* === Seção Início === */
#inicio {
  background-color: #dc3545;
  padding: 4rem 0;
}

#inicio h1 {
  font-weight: 700;
  color: white;
}

#inicio p {
  font-size: 1.2rem;
  color: white;
}

.btn-abrir-empresa {
  background: rgba(255, 123, 0, 1);
  color: white;
  border-radius: 30px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-abrir-empresa:hover {
  background: #e06700;
  color: black;
}

/* === Seção Porque a MMV === */
#porque-a-mmv {
  padding: 4rem 0;
  background: #f8f9fa;
}

#porque-a-mmv h4 {
  color: green;
}

/* === Responsividade adicional === */
@media (max-width: 768px) {
  .navbar-brand img {
    max-height: 80px;
  }

  #inicio h1,
  #nossos-servicos h1 {
    font-size: 2rem;
  }

  .btn-abrir-empresa {
    width: 100%;
    text-align: center;
  }
}


/*Seção Nossos Serviços*/
#nossos-servicos{
  padding: 4rem 0;
  background: #dc3545;
}

#nossos-servicos h1{
  color: white;
}


/*Figuras a incrementar no site*/
.img-contabil{
  border-radius:500px;
  border: 3px solid #dc3545;
}

/*Seção Sobre*/
#sobre{
  padding: 4rem 0;
  background: #f8f9fa;
}

.img-michele-ft-sem-fundo{
  border-radius:500px;
  border: 3px solid #dc3545;
}

#sobre p {
  text-align: justify;
  color: black;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 15px;

}

#fale-conosco{
  padding: 4rem 0;
  background: white;
  color: black;
  font-size: 1.2em;
  
}


/*Configurações contato por whatsApp*/
.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
  text-decoration: none;
}

/*Inserindo ícone do WHATSAPP para contato instantâneo*/
.whatsapp-fixo i {
  font-size: 20px;
}


.whatsapp-fixo:hover {
  background-color: #1ebe5b;
  transform: scale(1.05);
}

.whatsapp-texto {
  font-weight: bold;
  display: inline;
}

@media (max-width: 576px) {
  .whatsapp-texto {
    display: none;
  }
}


/*Estilizando o formulário*/
form {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 40px auto;
  border: 1px solid #e0e0e0;
}

form .form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 12px 15px;
  font-size: 16px;
  transition: border 0.3s, box-shadow 0.3s;
  background-color: #fdfdfd;
}

form .form-control:focus {
  border-color: #25D366;
  box-shadow: 0 0 5px rgba(37, 211, 102, 0.3);
  outline: none;
}

form label {
  font-weight: bold;
  color: #555;
  margin-bottom: 5px;
  display: block;
}

form textarea.form-control {
  resize: none;
}

form .btn-primary {
  background-color: #25D366;
  border: none;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

form .btn-primary:hover {
  background-color: #1ebe5b;
}



/*Seção Perguntas Frequentes*/
#perguntas-frequentes{
  padding: 4rem 0;
  background:#dc3545;
  color: white;
  font-size: 1.2em;
  text-align: justify;
}

#perguntas-frequentes p:hover{
  background-color:rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-size: 1.2em;
}



/*Seção Rodapé*/
#rodape{
  padding: 4rem 0;
  background: #dc3545;
}


/*Seção Media Queries*/
@media (max-width: 768px) {
      h4.porque,
      p.porque {
        font-size: 1.75rem;
      }
      img {
        max-height: 220px;
      }
    }
