@charset "UTF-8";
* {
  font-family: "Poppins", sans-serif;
}

body {
  -webkit-touch-callout: none;
}

.full-width {
  width: 100%;
}

.full-height {
  min-height: 100%;
  height: 100%;
}

.btn-sinusal {
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  letter-spacing: -0.025em;
  border-radius: 50px;
  border: 2px solid #D30D0D;
  padding-top: 10px;
  padding-bottom: 8px;
  width: 260px;
  color: #000000;
  transition: background-color 0.4s, color 0.4s;
}
.btn-sinusal:hover {
  background-color: #D30D0D;
  color: #FFFFFF;
}

.btn-leiamais {
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  letter-spacing: -0.025em;
  border-radius: 50px;
  border: 2px solid #D30D0D;
  padding-top: 4px;
  padding-bottom: 3px;
  width: 129px;
  color: #000000;
  transition: background-color 0.4s, color 0.4s;
}
.btn-leiamais:hover {
  background-color: #D30D0D;
  color: #FFFFFF;
}

.btn-cadastrar-news {
  background-color: #1E1E1E;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  letter-spacing: -0.025em;
  border-radius: 50px;
  border: 2px solid #FFFFFF;
  padding-top: 4px;
  padding-bottom: 3px;
  width: 129px;
  color: #FFFFFF;
  transition: background-color 0.4s, color 0.4s;
}
.btn-cadastrar-news:hover {
  background-color: #FFFFFF;
  color: #1E1E1E;
}

.btn-proposta {
  background: linear-gradient(to right, #FF0E0E, #890000);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  letter-spacing: -0.025em;
  border-radius: 50px;
  border: 0;
  padding-top: 8px;
  padding-bottom: 6px;
  width: 260px;
  color: #FFFFFF;
  transition: filter 0.4s, color 0.4s;
}
.btn-proposta:hover {
  filter: brightness(0.75);
}

.btn-voltar {
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  letter-spacing: -0.025em;
  border-radius: 50px;
  border: 2px solid #D30D0D;
  padding-top: 4px;
  padding-bottom: 3px;
  padding-left: 5px;
  padding-right: 5px;
  width: 129px;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.4s, color 0.4s;
}
.btn-voltar:hover {
  background-color: #D30D0D;
  color: #FFFFFF;
}

.btn-enviar-mensagem {
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  letter-spacing: -0.025em;
  border-radius: 50px;
  border: 1px solid #868D96 !important;
  padding-top: 8px;
  padding-bottom: 6px;
  width: 100%;
  color: #868D96;
  transition: background-color 0.4s, color 0.4s;
}
.btn-enviar-mensagem:hover {
  background-color: #dee2e6;
}

.btn-ajuste-largura {
  width: 100%;
}

h1 {
  font-weight: 600;
  color: #D30D0D;
  font-size: 25px;
  padding-bottom: 15px;
}

h3 {
  color: #D30D0D;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.025em;
}

/* ═══════════════════════════════════════
    BOTÃO FLUTUANTE WHATSAPP
═══════════════════════════════════════ */
/* Botão principal */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.18s ease, background 0.18s ease;
}

.wpp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

.wpp-float:active {
  transform: scale(0.95);
}

/* Anel de pulso */
.wpp-float::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2.5px solid #25D366;
  animation: wpp-pulse 2.4s ease-out infinite;
}

/* Ícone SVG */
.wpp-float svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Tooltip */
.wpp-tooltip {
  position: absolute;
  right: 72px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-family: "Segoe UI", Arial, sans-serif;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.13);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

/* Setinha do tooltip */
.wpp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  background: #fff;
  box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.06);
}

.wpp-float:hover .wpp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Animação de pulso */
@keyframes wpp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}
/* Responsivo: botão menor em telas pequenas */
@media (max-width: 480px) {
  .wpp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
  .wpp-float svg {
    width: 27px;
    height: 27px;
  }
  .wpp-tooltip {
    display: none;
  }
}
/* ═══════════════════════════════════════
    FIM DO BLOCO DO BOTÃO WHATSAPP
═══════════════════════════════════════ */
a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

.obs-form {
  color: #D30D0D;
  font-size: 13px;
}

.pagination {
  gap: 0;
  margin-bottom: 0;
}
.pagination .page-item .page-link {
  margin-left: 0;
  border-right-width: 0;
  border-radius: 0 !important;
  color: #000000;
  border-color: #888888;
}
.pagination .page-item .page-link:hover {
  background-color: #e0e0e0;
  color: #888888;
}
.pagination .page-item .page-link:focus {
  box-shadow: 0 0 0 0.25rem rgba(136, 136, 136, 0.25);
}
.pagination .page-item:last-child .page-link {
  border-right-width: 1px;
  border-radius: 0 50px 50px 0 !important;
}
.pagination .page-item:first-child .page-link {
  border-radius: 50px 0 0 50px !important;
}
.pagination .page-item.active .page-link {
  background-color: #888888;
  border-color: #888888;
  color: #ffffff;
  z-index: 1;
  border-right-width: 0 !important;
  padding-right: 15px;
  padding-left: 15px;
}

input, select, textarea {
  border-radius: 17px !important;
  border: 1px solid #868D96 !important;
  color: #868D96 !important;
}

.form-check-input {
  border: 1px solid #868D96 !important;
}

input::-moz-placeholder {
  color: #868D96 !important;
}

input::placeholder {
  color: #868D96 !important;
}

textarea::-moz-placeholder {
  color: #868D96 !important;
}

textarea::placeholder {
  color: #868D96 !important;
}

.imagem-blog {
  border-radius: 10px;
}

.texto-conteudo-blog {
  letter-spacing: -0.025em;
}

p {
  letter-spacing: -0.025em;
}

.btn-success {
  border-radius: 25px !important;
  padding-left: 20px;
  padding-right: 20px;
}

iframe.lightwidget-widget {
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.25));
}

#detalhe-topo {
  background-color: #D30D0D;
  height: 5px;
}

#cabecalho-topo {
  background-color: #FFFFFF;
}
#cabecalho-topo #botoes-acesso {
  text-align: right;
}
#cabecalho-topo #logo-botoes {
  padding-top: 25px;
  padding-bottom: 25px;
}

#menu {
  border-top: 1px solid #D0D0D0;
  background: #FFFFFF;
  background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#034ea0",endColorstr="#034ea0",GradientType=1);
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
#menu a {
  color: #888888 !important;
}
#menu a:hover {
  box-shadow: inset 0 -2px 0 #E8E8E8;
  transition: box-shadow 0.4s, color 0.4s;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

#dados {
  background-color: #F8F8F8;
  padding-bottom: 40px;
  padding-top: 40px;
}
#dados h2 {
  font-weight: 700;
}
#dados h2, #dados p {
  color: #1E1E1E;
}
#dados p {
  margin: 0;
}

#vantagens {
  padding-top: 50px;
  padding-bottom: 50px;
}
#vantagens ul {
  padding-left: 15px;
}
#vantagens #como-funciona p {
  margin: 0px;
  padding: 11px 0px 20px 15px;
}

#cadastro-clinicas {
  padding-top: 60px;
  background-image: url("/images/bg-cadastro.jpg");
  background-position: center;
  background-repeat: no-repeat;
  height: 250px;
}

.titulo-secao {
  margin: 0;
  padding-bottom: 10px;
}

#novidades {
  padding-top: 60px;
}
.thumb-novidades {
  border-radius: 10px !important;
}
#novidades .thumb-novidades {
  border-radius: 10px !important;
}
#novidades .tag-novidades {
  text-transform: uppercase;
  margin: 10px 0px 15px 0px;
  color: #890000;
  font-size: 14px;
  font-weight: 300;
}
#novidades h3 {
  font-weight: 600;
  color: #1E1E1E;
  letter-spacing: -0.025em;
  font-size: 18px;
  margin-bottom: 12px;
}
#novidades .texto-novidades {
  letter-spacing: -0.025em;
  color: #888888;
  line-height: 21px;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
}

#instagram {
  padding-top: 60px;
}

#rodape {
  background-color: #1E1E1E;
  margin-top: 50px;
  color: #FFFFFF;
}
#rodape hr {
  margin: 0;
}
#rodape h3 {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
}
#rodape button {
  margin-top: 10px;
}
#rodape input {
  font-size: 14px;
  max-width: 290px;
}
#rodape p {
  margin: 0;
}
#rodape .icone-midias {
  margin-top: 16px;
  margin-left: 10px;
}
#rodape .icone-midias:hover {
  opacity: 0.5;
  transition: opacity 0.4s, color 0.4s;
}
#rodape #responsavel-tecnico, #rodape #endereco {
  font-size: 13px;
}
#rodape #responsavel-tecnico span, #rodape #endereco span {
  font-weight: 600;
}
#rodape #endereco {
  padding-left: 50px;
}
#rodape #menu-rodape ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
#rodape #menu-rodape a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 300;
  font-size: 14px;
}
#rodape #menu-rodape a:hover {
  text-decoration: underline;
}

#copyright {
  background-color: #0D0D0D;
  padding-bottom: 20px;
  padding-top: 20px;
}
#copyright p {
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  font-size: 12px;
}
#copyright p a {
  color: #FFFFFF;
  text-decoration: none;
}
#copyright p a:hover {
  text-decoration: underline;
}

#sessao-conteudo {
  background-color: #F8F8F8;
}
#sessao-conteudo h3 {
  margin-top: 40px;
  text-transform: uppercase;
}
#sessao-conteudo p {
  margin-bottom: 40px;
}

#cadastro-clinica {
  padding-top: 40px;
}
#cadastro-clinica h4 {
  letter-spacing: -0.025em;
  font-size: 18px;
  font-weight: 600;
}
#cadastro-clinica p {
  font-size: 14px;
}

#voltar-pagina {
  padding-top: 20px;
}

.box-contato {
  background-color: #F8F8F8;
  border-radius: 25px;
  padding: 20px;
}
.box-contato h5 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.box-contato p {
  font-size: 14px;
  letter-spacing: -0.025em;
  margin: 0;
}
.box-contato .icone-contato {
  color: #D30D0D;
  font-size: 25px;
}

#servicos {
  padding-top: 40px;
}
#servicos h3 {
  text-transform: uppercase;
}
#servicos ul {
  padding-left: 15px;
}

#servicos-estatisticas {
  margin-top: 40px;
  background-image: url("/images/bg-servicos.jpg");
  background-position: center;
  background-repeat: no-repeat;
  height: 250px;
  padding-top: 80px;
  margin-bottom: 0px;
}
#servicos-estatisticas h2 {
  font-weight: 700;
}
#servicos-estatisticas h2, #servicos-estatisticas p {
  color: #1E1E1E;
}
#servicos-estatisticas p {
  margin: 0;
}

#conteudo-blog p {
    margin: 0;
}

@media only screen and (min-width: 350px) and (max-width: 767px) {
  .btn-sinusal {
    width: 180px;
  }
  #cabecalho-topo #logo-topo {
    text-align: center;
  }
  #cabecalho-topo #botoes-acesso {
    text-align: center;
  }
  #dados .dados-conteudo {
    padding-top: 30px;
  }
  #dados .btn-proposta {
    margin-top: 30px;
  }
  #vantagens #medico {
    text-align: center;
    margin-bottom: 30px;
  }
  #vantagens #medico img {
    width: 40%;
  }
  #rodape #endereco {
    padding-left: 12px;
  }
  #rodape #responsavel, #rodape #menu-rodape, #rodape #informativos, #rodape #endereco {
    margin-bottom: 25px;
  }
  #servicos-estatisticas {
    padding-top: 40px;
  }
  #servicos-estatisticas .servicos-estatisticas-dados {
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 992px) {
  #cabecalho-topo #logo-topo {
    text-align: center;
  }
  #cabecalho-topo #botoes-acesso {
    text-align: center;
  }
  #dados .dados-conteudo {
    padding-top: 30px;
  }
  #dados .btn-proposta {
    margin-top: 30px;
  }
  #vantagens #medico {
    text-align: center;
  }
  #rodape #endereco {
    padding-left: 12px;
  }
}/*# sourceMappingURL=style.css.map */
}

.quotes { display: none; }

.alert-top {
  background: #D30D0D;
  padding: 3px;
  color: white;
  text-align: center;
}

.promo-top { color: white; }
