@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  line-height: 1.6;
  background: url('money_background.png') no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background-color: transparent; /* Azul escuro */
  color: #fff;
  padding: 1rem 0;
  backdrop-filter: blur(7px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 150px;
  max-width: 100%; /* Ensure logo is responsive */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li {
  display: inline;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
  margin-inline: 70px;
}

nav ul li a:hover {
  color: #F4C542; /* Dourado */
}

.whatsapp-btn img {
  width: 40px;
  transition: transform 0.3s;
}

.whatsapp-btn img:hover {
  transform: scale(1.1);
}

#capa_div {
  background-color: transparent;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

#capa_div h1 {
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  margin-bottom: 1rem;
  background-color: transparent;
  backdrop-filter: blur(5px);
}

#capa_div h2 {
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  background-color: transparent;
  backdrop-filter: blur(5px);
  margin-bottom: 100px;
  padding-inline: 100px;
  text-align: justify;
}

.btn_contato_transparent button {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 100px;
  color: #fff;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  width: 300px;
  height: 70px;
  backdrop-filter: blur(5px);
}

.btn_contato_transparent button:hover {
  cursor: pointer;
  transition: all 0.5s;
  transform: scale(1.1);
}

#whatsapp_logo {
  width: 20px;
  height: 20px;
}

.sobre, .servicos, .contato {
  padding: 3rem 0;
  text-align: center;
}

.sobre h2, .servicos h2, .contato h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #F4C542; /* Dourado */
}

#outros_servicos {
  background-color: #F4C542;
}

#outros_servicos h2 {
  color: #0D1B2A;
}

.profissionais, .cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 15px;
  cursor: pointer;
  transition: transform 0.3s;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.quem-somos {
  padding: 3rem 0;
  background-color: #fff;
  text-align: justify;
}

.quem-somos h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #F4C542; /* Dourado */
  text-align: center;
}

.descricao-escritorio {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.servicos {
  background-color: #0D1B2A; /* Azul escuro */
}

.servicos h2 {
  color: #F4C542; /* Dourado */
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
}

.fechar {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}

.botao-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #42f448; /* Dourado */
  border-radius: 50%; /* Garante que o botão seja redondo */
  width: 60px; /* Largura igual à altura */
  height: 60px; /* Altura igual à largura */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.botao-flutuante img {
  width: 40px; /* Ajuste do tamanho do ícone para caber no círculo */
}


.cards-contato {
  display: flex;
}

.cards-contato h3 {
  color: #fff;
}

.contato form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contato-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  flex-direction: row;
}

.formulario {
  flex: 1;
  max-width: 500px;
}

.formulario h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #F4C542; /* AZUL ESCURO */
}

.formulario form input, .formulario form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.formulario form button {
  padding: 10px;
  background-color: #0D1B2A; /* Azul escuro */
  color: #fff;
  border: none;
  cursor: pointer;
}

.imagem-contato {
  flex: 1;
  max-width: 300px;
  margin-left: 5%;
}

.imagem-contato img {
  width: 100%;
  border-radius: 10px;
  margin-top: 30px;
}

footer {
  background-color: #0D1B2A; /* Azul escuro */
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  margin-top: 2rem;
}

/*BOTAO DE GUIA ANONIMA*/

.floating-tab {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
}

#header_buttons
{
  display: flex;
  justify-content: flex-end;
}

#close-btn
{
  background-color: #333;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 100px;
  width: 25px;
  height: 25px;
}

#content_anonimo
{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

#copy-btn
{
  margin: 10px;
  background-color: #333;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 20px;
  width: 100px;
  height: 40px;
}

#copy-btn:hover, #close-btn:hover
{
  cursor: pointer;
}

/* Ajustes gerais de responsividade */
@media (max-width: 768px) {
    
    #capa_div
    {
        display: none;
    }
    
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
  }

  .logo {
    width: 120px;
  }

  #capa_div h4 {
    font-size: 2.5rem; /* Título menor para mobile */
  }

  .btn_contato_transparent button {
    width: 100%;
    font-size: 1rem;
    height: 60px;
  }

  .profissionais, .cards {
    flex-direction: column; /* Empilhar cards em vez de lado a lado */
    align-items: center;
  }

  .card {
    width: 90%; /* Tornar os cards mais largos em telas pequenas */
  }

  .whatsapp-btn img {
    width: 30px; /* Ajuste para botão do WhatsApp */
  }

  .botao-flutuante img {
    width: 40px; /* Menor em dispositivos móveis */
  }

  .contato-container {
    flex-direction: column; /* Para empilhar o formulário e a imagem */
    gap: 1rem;
  }

  .imagem-contato img {
    width: 90%; /* Redimensionar imagem no contato */
  }

  footer p {
    font-size: 0.9rem; /* Texto menor no rodapé */
  }
}

@media (max-width: 480px) {
  .navbar {
    align-items: center;
    padding: 1rem 0;
  }

  .navbar a
  {
    display: none;
  }

  .navbar img
  {
    width: 100%;
    height: 250px;

  }

  .container h2
  {
    font-size: 20px;
  }

  #capa_div
  {
    height: 400px;
  }

  #capa_div h1 {
    font-size: 30px; /* Fonte ainda menor para telas de 480px */
  }

  #capa_div h2 {
    font-size: 20px; /* Fonte ainda menor para telas de 480px */
  }

  nav ul li a {
    font-size: 1rem; /* Ajuste de fonte para o menu */
  }

  .btn_contato_transparent button {
    padding: 0.5rem;
    font-size: 0.9rem; /* Botão menor */
  }

  .whatsapp-btn img, .botao-flutuante img {
    width: 25px; /* Reduzir ícone do WhatsApp em telas menores */
  }

  .formulario h2 {
    font-size: 2rem; /* Texto menor no contato */
  }

  .card {
    width: 100%;
    margin: 10px 0; /* Tornar os cards ocuparem toda a largura */
  }

  footer p {
    font-size: 0.8rem; /* Ajustar fonte do rodapé */
  }

  .cards-contato
  {
    display: table-column;
  }
}
