/* GERAL */

@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

@font-face {
  font-family: "PoppinsThin";
  src:
    url("poppins-thin-webfont.woff2") format("woff2"),
    url("poppins-thin-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsExtraLight";
  src:
    url("poppins-extralight-webfont.woff2") format("woff2"),
    url("poppins-extralight-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsLight";
  src:
    url("poppins-light-webfont.woff2") format("woff2"),
    url("poppins-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsRegular";
  src:
    url("poppins-regular-webfont.woff2") format("woff2"),
    url("poppins-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsMedium";
  src:
    url("poppins-medium-webfont.woff2") format("woff2"),
    url("poppins-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsBold";
  src:
    url("poppins-bold-webfont.woff2") format("woff2"),
    url("poppins-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --branco: #f3f3f3; /* #f2f0ed */
  --marromEscuro: #3f0d0c;
  --marromMedio: #b47858;
  --marromEscuroAlpha: #3f0d0c00;
  --marromMuitoEscuro: #2e0100;
  --marrom: #591f1e;

  --FonteFininha: "PoppinsThin";
  --FonteMuitoFina: "PoppinsExtraLight";
  --FonteFina: "Rubik";
  --FonteNormal: "Rubik";
  --FonteMedia: "Rubik";
  --FonteBold: "PoppinsBold";
}

/* html { */
/* scroll-behavior: smooth; */
/* } */

body {
  font-family: var(--FonteFina), Arial, sans-serif;
  font-weight: 300;
  color: var(--branco);
  background: var(--marromEscuro);
  overflow-x: hidden !important;
}

p {
  font-family: var(--FonteFina), Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--branco);
  line-height: 26px;
  /*	letter-spacing: .05em;*/
}

h2.titulo_secao {
  position: relative;
  margin: 10px 0px;
  font-family: var(--FonteMedia), Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 40px;
  font-size: 37px;
  color: var(--marromMedio);
  z-index: 2;
}

a.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-family: var(--FonteNormal), Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--branco);
  /* background: var(--roxoMedio); */
  background: linear-gradient(
    315deg,
    var(--marromMedio) 0%,
    var(--marromEscuro) 70%
  );

  padding: 15px 30px;
  border-radius: 15px;
  height: 50px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;

  box-shadow:
    var(--marromMedio) 0px 4px 12px 0px inset,
    var(--marromMedio) 0px 4px 32px 0px;

  /* text-transform: uppercase; */
}

a.btn:hover {
  /* background-color: var(--roxoEscuro); */
  transform: scale(1.05);
  -webkit-box-shadow: 0 15px 25px 0 rgb(63, 13, 12, 0.5);
  -moz-box-shadow: 0 15px 25px 0 rgb(63, 13, 12, 0.5);
  box-shadow: 0 15px 25px 0 rgb(63, 13, 12, 0.5);
}

/* 🔹 Borda animada com tons do tema */
a.btn::before {
  content: "";
  position: absolute;
  inset: -2px; /* controla espessura da borda */
  border-radius: inherit;
  /* background-color: var(--roxoClaro); */
  /* background: linear-gradient(
    to right,
    var(--verdeNeon) 0%,
    var(--roxoMedio) 100%
  ); */

  background: radial-gradient(
    circle at top,
    rgb(243, 195, 170) 0%,
    var(--marromMedio) 50%,
    var(--marromEscuro) 100%
  );
  animation: rotateLight 7s ease-in-out infinite;
  z-index: 0;
  filter: blur(5px) brightness(1.4) contrast(1.2);
}

/* 🔹 Fundo interno */
a.btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  /* background: var(--roxoMedio); */
  /* background: linear-gradient(
    135deg,
    var(--roxoClaro) 0%,
    var(--roxoMedio) 100%
  ); */
  background: linear-gradient(
    127.947deg,
    var(--marromMedio) 0%,
    var(--marromEscuro) 70%
  );

  z-index: 1;
  transition: background 0.3s ease-in-out;
}

/* 🔹 Texto */
a.btn span {
  position: relative;
  z-index: 2;
}

/* 🔹 Animação mais suave e elegante */
@keyframes rotateLight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

a.btnSecundario {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-family: var(--FonteNormal), Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--branco);
  /* background: var(--roxoMedio); */
  background: none;

  margin-left: 20px;
  padding: 15px 30px;
  border-radius: 15px;
  border: 3px solid var(--branco);
  height: 50px;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s ease;
  cursor: pointer;

  /* text-transform: uppercase; */
}

a.btnSecundario:hover {
  /* background-color: var(--roxoEscuro); */
  transform: scale(1.05);
  -webkit-box-shadow: 0 15px 25px 0 rgb(63, 13, 12, 0.5);
  -moz-box-shadow: 0 15px 25px 0 rgb(63, 13, 12, 0.5);
  box-shadow: 0 15px 25px 0 rgb(63, 13, 12, 0.5);
}

.bordaBranca {
  border-color: var(--branco);
}

.bordaBranca:hover {
  border-color: var(--branco);
}

.bordaInvertida:hover {
  border-color: var(--branco);
}

.semBorda {
  border: none;
}

.letraBranca {
  color: var(--branco);
}

.letraVerde {
  color: var(--verdeNeon);
}

.fonteNegrita {
  font-family: var(--FonteMedia);
}

/* ANIMA MOCKUPS DO HERO */

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.elemento-flutuante {
  animation: float 5s ease-in-out infinite;
}

/* LINHA SEPARADORA DE SEÇÃO */

.linhaSeparadora {
  display: flex;
  height: 1px;
  background: linear-gradient(
    to left,
    var(--marromEscuroAlpha) 0%,
    var(--marromMedio) 50%,
    var(--marromEscuroAlpha) 100%
  );
  /* margin-top: 40px;
  margin-bottom: 40px; */
}

/* CABECALHO */

.cabecalho {
  position: relative;
  margin-top: 0px;
  width: 100%;
  min-height: 105px;
  background: linear-gradient(to bottom, var(--creme) 0%, var(--marrom) 100%);

  z-index: 999998;
}

.topo_cabecalho {
  position: relative;
  margin: 0px auto;
  min-height: 105px;
  width: 100%;
  z-index: 2;
}

.topo_cabecalho .container {
  min-height: 105px;
}

.topo_cabecalho .container .grid-10 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-height: 85px;
  margin-top: 10px;
}

.topo_cabecalho .container .grid-10 span:nth-child(1) {
  font-family: var(--FonteBold);
  font-size: 22px;
}

.topo_cabecalho .container .grid-10 span:nth-child(2) {
  margin-top: 10px;
  letter-spacing: 1px;
}

/* CONTADOR */

div.topo_cabecalho .container ul.contador {
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-flex;
  justify-content: center;
}

div.topo_cabecalho .container ul li.displayData {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  margin-left: 10px;
  margin-right: 10px;
}

div.topo_cabecalho .container ul li .valorData {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-family: var(--FonteBold);
  letter-spacing: 2px;
  text-align: center;
  border: 2px solid var(--branco);
  border-radius: 10px;
  height: 50px;
  width: 40px;
  padding: 30px;
}

div.topo_cabecalho .container ul li .legendaData {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-family: var(--FonteBold);
  letter-spacing: 1px;
  text-align: center;
  margin-top: 10px;
}

/* HERO */

.hero {
  display: flex;
  position: relative;

  width: 100%;
  min-height: 100vh;
  margin-top: 0px; /*-156px;*/
  margin-bottom: 0px;

  z-index: 1;
}

.hero div.container {
  z-index: 2;
}

.hero div.container div.grid-8 {
  margin-bottom: 20px;
}

.hero div.container div img.logo_hero {
  position: relative;
  display: block;
  float: none;
  width: 278px;
  margin: 45px 0px 0px -31px;
}

.hero div.container div h1.titulo_hero {
  font-family: var(--FonteMedia), Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 40px;
  font-size: 37px;
  color: var(--branco);
  /*background: rgba(255,255,255,0.4);*/
  /*backdrop-filter: blur(3px);*/
  /*border: 1px solid rgba(255,255,255,0.1);*/
  padding: 0px;
  /*text-align: center;*/
  position: relative;
  display: inline-flex;
  margin-top: 50px;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  max-width: 460px;
  z-index: 3;
}

.hero div.container div span.descricao_hero {
  position: relative;
  display: inline-flex;
  margin-bottom: 60px;
  font-family: var(--FonteNormal), Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 20px;
  font-size: 16px;
  color: var(--branco);
  padding-right: 60px;
  text-align: left;
}

/* BLOCO QUEM SOMOS */

section.quem_somos {
  position: relative;
  display: flex;
  width: 100%;

  /* min-height: 665px; */
  min-height: 376px; /* ocupa a altura da tela */
  margin-top: -5px; /* 20px; */
  margin-bottom: 0px;
  background: linear-gradient(
    127.947deg,
    var(--marrom) 0%,
    var(--marromMuitoEscuro) 100%
  );

  z-index: 3;
}

section.quem_somos div.grid-10 h2 {
  margin-top: 50px;
  color: var(--marromMedio);
}

section.quem_somos div.grid-10 span.texto {
  position: relative;
  display: inline-flex;
  font-family: var(--FonteNormal);
  color: var(--branco);
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-right: 40px;
}

section.quem_somos div.grid-10 span.texto_destaque {
  position: relative;
  display: inline-flex;

  color: var(--marromMedio);
  font-size: 23.5px;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
section.quem_somos div.grid-10 ul.diferenciais {
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
  width: 460px;
  height: auto;
  padding-left: 18px;
}

section.quem_somos div.grid-10 ul.diferenciais li.diferenca {
  position: relative;
  list-style-type: disclosure-closed;
  display: list-item;

  font-family: var(--FonteMedia);
  letter-spacing: 2px;
  line-height: 20px;
  font-size: 15px;
  color: var(--branco);

  margin-bottom: 10px;
}

section.quem_somos div.van {
  margin-top: -70px;
}

section.quem_somos div.van img.van {
  margin-left: -110px;
}

section.quem_somos a.btn {
  margin: 0px auto 20px auto;
  display: table;
  clear: both;
}

/* MARCA DAGUA LOGO */

div.grafismos {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 3;
  margin-top: -180px;
}

div.grafismos img.marca-dagua {
  position: relative;
  display: block;
  margin-top: 0px;
  margin-right: -400px;
  float: right;
  z-index: 1;
}

/* BLOCO PROTOCOLOS */

section.protocolos {
  position: relative;
  display: inline-block;
  width: 100%;
  z-index: 3;
  min-height: 665px;

  margin-top: -735px; /* 20px; */
  margin-bottom: 0px;
}

section.protocolos div.grafismo-01 {
  position: relative;
  display: inline-block;
  /* width: 100%; */
  height: auto;
  z-index: 1;
  margin-top: -80px;

  /* background-color: yellow; */
}

div.grafismo_esq {
  position: relative;
  display: block;
  margin-top: 0px;
  margin-left: 20px;
  z-index: 2;
}

div.grafismo_esq .quadrado_g {
  position: relative;
  display: block;
  border: 2px solid var(--marromMedio);
  border-radius: 15px;
  height: 159px;
  width: 159px;
}

div.grafismo_esq .quadrado_p {
  position: relative;
  display: block;
  border: 3px solid var(--marromMedio);
  border-radius: 15px;
  height: 64px;
  width: 64px;
  margin-top: -25px;
  margin-left: 70px;
}

section.protocolos div.grafismo-02 {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 870px;
  z-index: 1;
  margin-top: 200px;

  /* background-color: yellow; */
}

div.grafismo_dir {
  position: relative;
  display: block;
  margin-top: 0px;
  margin-right: -20px;
  float: right;
  z-index: 2;
}

div.grafismo_dir .quadrado_g {
  position: relative;
  display: block;
  border: 2px solid var(--marromMedio);
  border-radius: 15px;
  height: 159px;
  width: 159px;
}

div.grafismo_dir .quadrado_p {
  position: relative;
  display: block;
  border: 3px solid var(--marromMedio);
  border-radius: 15px;
  height: 64px;
  width: 64px;
  margin-top: -180px;
  margin-left: -40px;
}

img.caixa-caneta {
  position: relative;
  display: block;
  margin-top: 140px;
  margin-right: -180px;
  float: right;
  z-index: 1;
}

img.caixa-ampola {
  position: relative;
  display: block;
  margin-top: 420px;
  margin-left: -50px;
  float: left;
  z-index: 1;
}

div.grafismo_esq_2 {
  position: relative;
  display: block;
  margin-top: 680px;
  margin-left: -40px;
  z-index: 2;
}

div.grafismo_esq_2 .quadrado_g {
  position: relative;
  display: block;
  border: 2px solid var(--marromMedio);
  border-radius: 15px;
  height: 159px;
  width: 159px;
}

div.grafismo_esq_2 .quadrado_p {
  position: relative;
  display: block;
  border: 3px solid var(--marromMedio);
  border-radius: 15px;
  height: 64px;
  width: 64px;
  margin-top: -195px;
  margin-left: 130px;
}

section.protocolos div.grafismo-03 {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
  z-index: 1;
  margin-top: -28px;

  /* background-color: pink; */
}

div.grafismo_dir_2 {
  position: relative;
  display: block;
  margin-top: 0px;
  margin-right: 50px;
  float: right;
  z-index: 2;
}

div.grafismo_dir_2 .quadrado_g {
  position: relative;
  display: block;
  border: 2px solid var(--marromMedio);
  border-radius: 15px;
  height: 159px;
  width: 159px;
}

div.grafismo_dir_2 .quadrado_p {
  position: relative;
  display: block;
  border: 3px solid var(--marromMedio);
  border-radius: 15px;
  height: 64px;
  width: 64px;
  margin-top: -180px;
  margin-left: 130px;
}

section.protocolos > div.container {
  margin-top: -1180px;
  margin-bottom: 0px;
  z-index: 10;

  /* background-color: green; */
}

section.protocolos > div.container div.bloco_01_imagem,
section.protocolos > div.container div.bloco_02_imagem {
  min-height: 460px;
}

section.protocolos > div.container div.bloco_01_protocolo,
section.protocolos > div.container div.bloco_02_protocolo {
  min-height: 460px;
}

section.protocolos span.titulo_protocolo {
  position: relative;
  display: block;
  color: var(--marromMedio);
  /* font-size: 33px; */
  font-family: var(--FonteMedia);
  /* font-weight: bold; */

  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 40px;
  font-size: 37px;

  margin-bottom: 60px;
}

span.detalhe_protocolo {
  position: relative;
  display: block;
  color: var(--branco);
  font-size: 18px;
  font-family: var(--FonteMedia);
  font-weight: 500;
  line-height: 22px;

  margin-bottom: 10px;
}

span.texto_protocolo {
  position: relative;
  display: block;
  color: var(--branco);
  font-size: 18px;
  font-family: var(--FonteMedia);
  line-height: 22px;

  margin-bottom: 30px;
}

section.protocolos ul.diferenciais_protocolo {
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
  width: 460px;
  height: auto;
  padding-left: 18px;
}

section.protocolos ul.diferenciais_protocolo li.diferenca {
  position: relative;
  list-style-type: disclosure-closed;
  display: list-item;

  font-family: var(--FonteMedia);
  letter-spacing: 2px;
  line-height: 20px;
  font-size: 15px;
  color: var(--branco);

  margin-bottom: 10px;
}

section.protocolos div.cta_protocolos {
  margin-top: 70px;
  margin-bottom: 70px;
  text-align: center;
}

section.protocolos div.cta_protocolos_2 {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

/* BLOCO EQUIPE MÉDICA */

section.equipe_medica {
  position: relative;
  display: inline-block;
  min-height: 550px;
  width: 100%;
  margin-top: 0px;
  margin-bottom: -5px;

  background-repeat: no-repeat !important;
  background-position: top left !important;
  background-size: contain !important;
}

section.equipe_medica div.container {
  margin-top: 30px;
}

section.equipe_medica div.container div.grid-16 {
  text-align: center;
}

section.equipe_medica div.container ul.medicos {
  margin-top: 30px;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

section.equipe_medica div.container ul.medicos li.medico {
  border: 2px solid var(--marromMedio);
  border-radius: 10px;
  height: 460px;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;

  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;

  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}

section.equipe_medica div.container ul.medicos li.medico:hover {
  -webkit-transform: scale(1.05); /* prefixo para browsers webkit */
  -moz-transform: scale(1.05); /* prefixo para browsers gecko */
  -o-transform: scale(1.05); /* prefixo para opera */
  transform: scale(1.05);

  -webkit-box-shadow:
    var(--marromMedio) 0px 4px 12px 0px inset,
    var(--marromMedio) 0px 4px 32px 0px;
  -moz-box-shadow:
    var(--marromMedio) 0px 4px 12px 0px inset,
    var(--marromMedio) 0px 4px 32px 0px;
  box-shadow:
    var(--marromMedio) 0px 4px 12px 0px inset,
    var(--marromMedio) 0px 4px 32px 0px;

  z-index: 5;
}

section.equipe_medica div.container ul.medicos:hover li.medico:not(:hover) {
  opacity: 0.8;
  filter: blur(3px);
  /* filter: blur(1.5px) grayscale(1); */
}

section.equipe_medica div.container ul.medicos li.medico span.nome_medico {
  font-size: 25px;
  color: var(--marromMedio);
  font-weight: 500;
}

/* BLOCO DEPOIMENTOS */

section.depoimentos {
  position: relative;
  display: inline-flex;
  min-height: 280px;
  width: 100%;

  background: linear-gradient(
    270deg,
    var(--marrom) 0%,
    var(--marromMuitoEscuro) 100%
  );
}

section.depoimentos div.container {
  margin-top: 40px;
}

section.depoimentos div.container div.grid-5 {
  display: inline-flex;
  height: 200px;
  align-items: center;
}

section.depoimentos div.container div.grid-5 h2.titulo_secao {
  text-align: right;
}

section.depoimentos div.container ul.depoimentos {
  overflow: hidden;
  display: flex;
}

section.depoimentos div.container ul.depoimentos::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  pointer-events: none;
  /* background: linear-gradient(to right, transparent 0%, #511a19 75%); */
}

section.depoimentos div.container ul.depoimentos li.depoimento {
  position: relative;
  display: inline-flex;
  margin-right: 20px;
  border: 2px solid var(--marromMedio);
  border-radius: 10px;
  height: 200px;
  flex-direction: column;
  justify-content: space-around;
  min-width: 260px;
  padding: 10px 20px;
  overflow: hidden;
  z-index: 1;

  cursor: grab;
  user-select: none;

  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

section.depoimentos div.container ul.depoimentos li.depoimento:hover {
  z-index: 2;
}

section.depoimentos
  div.container
  ul.depoimentos:hover
  li.depoimento:not(:hover) {
  opacity: 0.5;

  filter: blur(1.5px);
}

section.depoimentos div.container ul.depoimentos.dragging li {
  cursor: grabbing;
}

section.depoimentos div.container ul.depoimentos li.depoimento span.estrela {
  float: left;
}

section.depoimentos
  div.container
  ul.depoimentos
  li.depoimento
  span.nome_depoente {
  font-size: 20px;
}

section.depoimentos
  div.container
  ul.depoimentos
  li.depoimento
  span.texto_depoimento {
  height: 58px;
  width: 216.8px;
  overflow: hidden;
  text-overflow: ellipsis;
  /* white-space: nowrap; */
  direction: ltr;
}

/* BLOCO ULTIMO CTA */

section.ultimo_cta {
  position: relative;
  display: inline-flex;
  width: 100%;
  z-index: 3;
  margin-top: 40px;
  margin-bottom: 40px;
  min-height: 110px;
}

section.ultimo_cta div.container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

section.ultimo_cta div.container div:nth-child(1) {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

section.ultimo_cta div.container div:nth-child(1) span {
  color: var(--marromMedio);
  font-style: italic;
}
section.ultimo_cta div.container div {
  text-align: center;
}

/* RODAPE */

.rodape {
  margin-bottom: 0px;
  width: 100%;
  background: var(--marromMuitoEscuro);
  position: relative;
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

.barra_rodape_inferior {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 50px;
  z-index: 2;
}

p.copyright {
  position: relative;
  display: block;
  font-size: 10px;
  font-weight: bold;
  font-family: var(--FonteNormal), Arial, sans-serif;
  letter-spacing: 0.1em;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--branco);
  margin-top: 20px;
  clear: both;
}

a.lnk_rodape {
  position: relative;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  font-family: var(--FonteNormal), Arial, sans-serif;
  letter-spacing: 0.1em;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--branco);
  margin-top: 20px;
  clear: both;
  margin-left: 10px;
  margin-right: 10px;
}

img.rxo {
  display: block;
  position: relative;
  margin: 20px 0px 10px 0px;
  float: right;
}

div.botao_flutuante {
  position: fixed;
  display: block;
  z-index: 999998;
}

a.botao_whats {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-sizing: border-box;

  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 999998;
}
