/* CSS para a seção de dúvidas */
.duvidas {
    padding: 20px;
    background-color: #f4f4f4;
  }
  
  .duvidas .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .duvida-img {
    flex: 1;
    max-width: 100%;
  }
  
  .duvida-imagem {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .duvida-conteudo {
    flex: 2;
  }
  
  .duvida-conteudo h2 {
    font-size: 24px;
    color: #333;
  }
  
  .duvida-conteudo p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
  }
  
  .btn-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
  }
  
  .btn-whatsapp:hover {
    background-color: #128c7e;
  }
  
  /* Estilo para telas menores (dispositivos móveis) */
  @media (max-width: 768px) {
    .duvidas .container {
      flex-direction: column;
      align-items: center;
    }
  
    .duvida-img {
      order: -1; /* Coloca a imagem acima do conteúdo no layout */
      margin-bottom: 20px;
    }
  
    .duvida-conteudo {
      text-align: center;
    }
  
    .duvida-conteudo h2 {
      font-size: 20px;
    }
  
    .duvida-conteudo p {
      font-size: 14px;
    }
  
    .btn-whatsapp {
      font-size: 14px;
      padding: 8px 15px;
    }
  }
  
  /* Estilo para telas menores que 480px (celulares muito pequenos) */
  @media (max-width: 480px) {
    .duvida-conteudo h2 {
      font-size: 18px;
    }
  
    .duvida-conteudo p {
      font-size: 12px;
    }
  
    .btn-whatsapp {
      font-size: 12px;
      padding: 6px 12px;
    }
  }
  /* Estilo da seção */
.desentupimento {
  padding: 50px 0;
  background-color: #f4f4f4;
}

/* Container para alinhar o conteúdo */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Estilo do conteúdo de texto */
.desentupimento-conteudo {
  flex: 1;
  padding-right: 20px;
}

.desentupimento-conteudo h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.desentupimento-conteudo p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.desentupimento-conteudo .btn-whatsapp {
  display: inline-block;
  padding: 10px 20px;
  background-color: #25d366;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

.desentupimento-conteudo .btn-whatsapp:hover {
  background-color: #128c7e;
}

/* Estilo da imagem */
.desentupimento-imagem {
  flex: 1;
  text-align: center;
}

.desentupimento-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .desentupimento-conteudo {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .desentupimento-imagem {
    margin-top: 20px;
    width: 100%;
  }
}
/* Estilo geral */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.content {
  padding: 20px;
  text-align: center;
}

h1 {
  margin-top: 50px;
  font-size: 32px;
}

/* Estilo dos botões fixos */
.fixed-buttons {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}

/* Estilo do botão WhatsApp */
.whatsapp-btn {
  background-color: #3e880d; /* Cor verde escuro do WhatsApp */
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 18px;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid red; /* Borda inferior vermelha */
}

.whatsapp-btn i {
  margin-right: 10px;
}

/* Estilo do botão Ligação */
.call-btn {
  background-color: #0b1891; /* Cor de fundo vermelho */
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 18px;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid #008000; /* Borda inferior verde */
}

.call-btn i {
  margin-right: 10px;
}

/* Hover effect para os botões */
.whatsapp-btn:hover, .call-btn:hover {
  opacity: 0.9;
}
