:root {
  --color-primary: #093f87;
  --color-secundary: #55a810;
  --color-third: #ee9901;
  --color-fourt: #f7d707;

  --color-title: #1e1410;
  --color-text: #4a4f55;

  --color-input: #827ca1;
  --color-input-background: #fff;

  --color-bg-sidebar: #e8edf2;
  --color-input-background-sidebar: #e8edf2;
  --color-placeholder: rgba(55, 71, 95, 0.8);

  --color-bg: #ffffff;
  --color-bg-secundary: #f8f8fc;
}

@media only screen and (min-width: 993px) {
  .container {
    width: 90%;
  }
}

/** DIVERSAS PERSONALIZAÇÕES BASE ================================ **/
*,
a,
a:link,
a:hover,
a:visited,
a:active {
  font-family: "Lato", sans-serif;
  font-family: "Roboto";
  text-decoration: none;
  outline: none;
}

a:hover {
  color: var(--color-primary);
}

/* Barra de Rolagem */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-input);
  border-radius: 4px;
}

.animate,
.animate-inverse {
  transition-duration: 0.3s;
  transform: scale(1);
  -webkit-transition-duration: 0.3s;
  -webkit-transform: scale(1);
}

.animate:hover {
  transition-duration: 0.3s;
  transform: scale(1.1);
  -webkit-transition-duration: 0.3s;
  -webkit-transform: scale(1.1);
}

.animate-inverse:hover {
  transition-duration: 0.3s;
  transform: scale(0.9);
  -webkit-transition-duration: 0.3s;
  -webkit-transform: scale(0.9);
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

/** SELEÇÃO DE TEXTO */
*::-moz-selection {
  background: var(--color-primary);
  color: #fff;
}

*::selection {
  background: var(--color-primary);
  color: #fff;
}

strong {
  font-weight: 600;
}

.row.row-margin-bottom-0 {
  margin-bottom: 0;
}

/**
** FORM
***************************************/
/* Style Placeholders */
::placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::-webkit-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

/* Text inputs */
input:not([type]),
input[type="text"]:not(.browser-default),
input[type="password"]:not(.browser-default),
input[type="email"]:not(.browser-default),
input[type="url"]:not(.browser-default),
input[type="time"]:not(.browser-default),
input[type="date"]:not(.browser-default),
input[type="datetime"]:not(.browser-default),
input[type="datetime-local"]:not(.browser-default),
input[type="tel"]:not(.browser-default),
input[type="number"]:not(.browser-default),
input[type="search"]:not(.browser-default),
textarea.materialize-textarea {
  background-color: var(--color-input-background);
  border: 1px solid var(--color-input);
  border-radius: 4px;
  height: 36px;
  width: calc(100% - 20px);
  padding: 4px 8px;
  font-weight: 400;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Focus Inputs */
input:not([type]):focus:not([readonly]),
input[type="text"]:not(.browser-default):focus:not([readonly]),
input[type="password"]:not(.browser-default):focus:not([readonly]),
input[type="email"]:not(.browser-default):focus:not([readonly]),
input[type="url"]:not(.browser-default):focus:not([readonly]),
input[type="time"]:not(.browser-default):focus:not([readonly]),
input[type="date"]:not(.browser-default):focus:not([readonly]),
input[type="datetime"]:not(.browser-default):focus:not([readonly]),
input[type="datetime-local"]:not(.browser-default):focus:not([readonly]),
input[type="tel"]:not(.browser-default):focus:not([readonly]),
input[type="number"]:not(.browser-default):focus:not([readonly]),
input[type="search"]:not(.browser-default):focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]),
.select-wrapper input.select-dropdown:focus {
  border: 1px solid var(--color-secundary);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Valid Inputs */
input.valid:not([type]),
input.valid:not([type]):focus,
input.valid[type="text"]:not(.browser-default),
input.valid[type="text"]:not(.browser-default):focus,
input.valid[type="password"]:not(.browser-default),
input.valid[type="password"]:not(.browser-default):focus,
input.valid[type="email"]:not(.browser-default),
input.valid[type="email"]:not(.browser-default):focus,
input.valid[type="url"]:not(.browser-default),
input.valid[type="url"]:not(.browser-default):focus,
input.valid[type="time"]:not(.browser-default),
input.valid[type="time"]:not(.browser-default):focus,
input.valid[type="date"]:not(.browser-default),
input.valid[type="date"]:not(.browser-default):focus,
input.valid[type="datetime"]:not(.browser-default),
input.valid[type="datetime"]:not(.browser-default):focus,
input.valid[type="datetime-local"]:not(.browser-default),
input.valid[type="datetime-local"]:not(.browser-default):focus,
input.valid[type="tel"]:not(.browser-default),
input.valid[type="tel"]:not(.browser-default):focus,
input.valid[type="number"]:not(.browser-default),
input.valid[type="number"]:not(.browser-default):focus,
input.valid[type="search"]:not(.browser-default),
input.valid[type="search"]:not(.browser-default):focus,
textarea.materialize-textarea.valid,
textarea.materialize-textarea.valid:focus,
.select-wrapper.valid > input.select-dropdown {
  border: 1px solid var(--color-primary);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Invalid Inputs */
input.invalid:not([type]),
input.invalid:not([type]):focus,
input.invalid[type="text"]:not(.browser-default),
input.invalid[type="text"]:not(.browser-default):focus,
input.invalid[type="password"]:not(.browser-default),
input.invalid[type="password"]:not(.browser-default):focus,
input.invalid[type="email"]:not(.browser-default),
input.invalid[type="email"]:not(.browser-default):focus,
input.invalid[type="url"]:not(.browser-default),
input.invalid[type="url"]:not(.browser-default):focus,
input.invalid[type="time"]:not(.browser-default),
input.invalid[type="time"]:not(.browser-default):focus,
input.invalid[type="date"]:not(.browser-default),
input.invalid[type="date"]:not(.browser-default):focus,
input.invalid[type="datetime"]:not(.browser-default),
input.invalid[type="datetime"]:not(.browser-default):focus,
input.invalid[type="datetime-local"]:not(.browser-default),
input.invalid[type="datetime-local"]:not(.browser-default):focus,
input.invalid[type="tel"]:not(.browser-default),
input.invalid[type="tel"]:not(.browser-default):focus,
input.invalid[type="number"]:not(.browser-default),
input.invalid[type="number"]:not(.browser-default):focus,
input.invalid[type="search"]:not(.browser-default),
input.invalid[type="search"]:not(.browser-default):focus,
textarea.materialize-textarea.invalid,
textarea.materialize-textarea.invalid:focus,
.select-wrapper.invalid > input.select-dropdown,
.select-wrapper.invalid > input.select-dropdown:focus {
  border: 1px solid #f44336;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

input:not([type]):focus:not([readonly]) + label,
input[type="text"]:not(.browser-default):focus:not([readonly]) + label,
input[type="password"]:not(.browser-default):focus:not([readonly]) + label,
input[type="email"]:not(.browser-default):focus:not([readonly]) + label,
input[type="url"]:not(.browser-default):focus:not([readonly]) + label,
input[type="time"]:not(.browser-default):focus:not([readonly]) + label,
input[type="date"]:not(.browser-default):focus:not([readonly]) + label,
input[type="datetime"]:not(.browser-default):focus:not([readonly]) + label,
input[type="datetime-local"]:not(.browser-default):focus:not([readonly])
  + label,
input[type="tel"]:not(.browser-default):focus:not([readonly]) + label,
input[type="number"]:not(.browser-default):focus:not([readonly]) + label,
input[type="search"]:not(.browser-default):focus:not([readonly]) + label,
textarea.materialize-textarea:focus:not([readonly]) + label {
  color: #747e8c;
}

textarea {
  height: 130px;
  background: #ffffff;
  border: 1px solid var(--color-input);
  padding: 10px;
}

textarea:focus {
  border: 1px solid var(--color-text);
}

/* DROPDOWN SELECT*/
.dropdown-content.select-dropdown {
  position: absolute;
  top: -38px;
  background: none;
  padding-top: 7px;
  border-radius: 0.375rem;
  border: 0 solid rgba(31, 45, 61, 0);
  box-shadow: 0 10px 30px 0 rgba(31, 45, 61, 0.1);
}

.dropdown-content.select-dropdown:before {
  position: absolute;
  content: " ";
  display: inline-block;
  vertical-align: middle;
  margin-right: 0px;
  width: 0;
  height: 0;
  top: 0px;
  right: 5px;
  z-index: 999;

  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid white;
}

.select-dropdown li {
  background-color: #ffffff;
}

.select-dropdown li:first-child {
  display: none;
}

.select-dropdown.dropdown-content li.selected,
.select-dropdown.dropdown-content li:hover {
  background-color: #eeeeee;
}

.dropdown-content li > a,
.dropdown-content li > span {
  color: #142441;
}

/** BUTTOM */
.btn-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 32px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  border: 0;
  width: fit-content;
  background: var(--color-third);
  transition-duration: 0.3s;
}

.btn-custom:hover {
  filter: opacity(0.85);
}

.btn-custom svg {
  height: 20px;
  width: 20px;
  fill: var(--color-primary);
}

@media (max-width: 600px) {
  .btn-custom {
    width: 100%;
  }
}

label {
  width: 100%;
}

.help-block {
  color: red;
}

.rb0 {
  margin-bottom: 0;
}

/** HTML, BODY ======================================== **/
html,
body {
  background: var(--color-bg);
  font-family: "Lato", sans-serif;
  font-family: "Roboto";
  color: var(--color-text);
  letter-spacing: 0.3px;
  position: relative;
  height: 100%;
  width: 100%;
}

@media (max-width: 1080px) {
  html,
  body {
    font-size: 93.75%;
  }
}

@media (max-width: 720px) {
  html,
  body {
    font-size: 87.5%;
  }
}

.loadie {
  transition: width 0.5s ease-out;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
  background-color: var(--color-third);
  position: absolute;
  z-index: 99999;
  height: 3px;
  width: 0;
  left: 0;
  top: 0;
}

p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

/** TÍTULOS ======================================== **/
h1.titulo {
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--color-primary);
}

h2.titulo {
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--color-primary);
}

h5.titulo {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-primary);
}

h1.titulo span,
h2.titulo span {
  color: var(--color-secundary);
}

/** SAIBA MAIS
====================================================== **/
a.saiba-mais {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  font-weight: 600;
  border-radius: 50px;
  color: var(--color-third);
  background: var(--color-fourth);
  transition: all 0.3s;
}

a.saiba-mais img {
  margin-left: 20px;
  width: 13px;
  height: 9px;
  vertical-align: middle;
  transition: all 0.3s;
}

a.saiba-mais:hover img {
  margin-left: 25px;
}

/** HEADER
====================================================== **/
header {
  display: block;
  max-width: 1216px;
  margin: auto;
}

header div {
  width: 100%;
  height: 100px;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin-top: 30px;
  border-radius: 8px;
  padding: 8px 48px;
  background: #fff;
  z-index: 200;

  box-shadow:
    0 51px 80px rgba(87, 158, 86, 0.08),
    0 15.375px 24.1177px rgba(87, 158, 86, 0.05),
    0 6.38599px 10.0172px rgba(87, 158, 86, 0.04),
    0 2.30969px 3.62304px rgba(87, 158, 86, 0.03);
}

header ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

header ul a {
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s;
}

header ul a:hover {
  color: var(--color-secundary);
}

@media (max-width: 992px) {
  header ul {
    display: none;
  }
}

/** BANNER
====================================================== **/
.banner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding: 0px 20px;
  background:
    url(../images/banner.png) 100% center / contain no-repeat,
    var(--color-primary);
}

.banner > div {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-top: 100px;
}

.banner h1 {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
  color: #fff;
  margin: 20px 0;
}

.banner h2 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 300;
  color: #fff;
}

.banner a.btn-custom {
  margin: 40px 0;
  background: var(--color-third);
  color: #fff;
}

/* Scroll Down */
.banner .scrolldown-wrapper {
  left: 50%;
  position: absolute;
  text-align: center;
  bottom: 0;
  transform: translate(-50%, -50%);
}

.banner .scrolldown {
  border: 2px solid #ffffff;
  border-radius: 30px;
  height: 46px;
  margin: 0 auto 8px;
  text-align: center;
  width: 30px;
}

.banner .scrolldown-p1,
.banner .scrolldown-p2 {
  animation-duration: 1.5s;
  animation-name: scrolldown;
  animation-iteration-count: infinite;
  fill: #ffffff;
}

.banner .scrolldown-p2 {
  animation-delay: 0.75s;
}

@keyframes float {
  0%,
  100% {
    transform: translatey(-6px);
  }

  50% {
    transform: translatey(8px);
  }
}

@keyframes scrolldown {
  0% {
    opacity: 0;
    transform: translate(0, -8px);
  }

  50% {
    opacity: 1;
    transform: translate(0, 0);
  }

  100% {
    opacity: 0;
    transform: translate(0, 8px);
  }
}

@media (min-width: 1400px) {
  .banner .logo {
    margin: 60px 0 40px;
  }

  .banner h1 {
    font-size: 2.6rem;
    line-height: 3.6rem;
    margin: 40px 0;
  }
}

@media (max-width: 992px) {
}

/** OBS
====================================================== **/
.obs {
  padding: 80px 24px 0;
  background: #032d64;
}

.obs strong {
  color: var(--color-third);
}

.obs a.btn-custom {
  margin: 40px 0;
}

.obs p {
  color: #fff;
}

.mb {
  margin-bottom: -100px;
}

.obs .box-wrapp {
  position: relative;
  top: -150px;
  z-index: 99;
}

.obs .box {
  padding: 24px;
  background: #fff;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 0;
  box-shadow: 0 4px 60px rgb(3 45 100);
}

.obs .box h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-secundary);
  margin-top: 1rem;
}

.obs .box p {
  font-size: 1.1rem;
  line-height: 1.8rem;
  color: var(--color-text);
}

/** TOTEM
====================================================== **/
.totem {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 36px;

  width: 100%;
  min-height: 100vh;

  background-color: #fff;
}

.totem .totem-container {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 24px;
}

.totem .totem-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: 8px;
  height: auto;

  background: #b8c9de;
  background: var(--color-bg-sidebar);
  padding-top: 24px;
  padding-bottom: 24px;
}

.totem .totem-header .data {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: normal;
}

.totem .totem-header .horario {
  font-size: 3rem;
  font-weight: 800;
  line-height: normal;
  color: #000;
}

.totem .totem-view {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 36px;
  height: calc(100vh - 320px);
  max-height: calc(100vh - 320px);
  border-radius: 8px;
  background: var(--color-secundary);
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 36px;
  color: #fff;
}

.totem .totem-view .view-prioridade {
  font-size: 2rem;
  font-weight: 500;
}

.totem .totem-view .view-nome {
  font-size: 5rem;
  font-weight: 500;
}

.totem .totem-view .view-guiche {
  font-weight: 600;
  font-size: 3rem;
  background: var(--color-primary);
  padding: 16px 0px 16px 24px;
  border-radius: 50px;
}

.totem .totem-view .view-guiche span {
  padding: 24px;
  color: #000;
  border-radius: 100px;
  background: #b8c9de;
}

.totem .totem-chamados {
  border-radius: 8px;
  background: var(--color-primary);
  max-height: calc(100vh - 180px);
  overflow: hidden;
}

.totem .ultimos-chamados-titulo {
  display: grid;
  grid-template-columns: 1fr 130px;
  justify-content: space-between;

  color: #fff;
  background: var(--color-secundary);
}

.totem .ultimos-chamados-titulo span {
  padding: 24px;
}

.totem .ultimos-chamados {
  display: grid;
  grid-template-columns: 1fr 130px;
  justify-content: space-between;
  color: #fff;
  background: #093f87;
}

.totem .ultimos-chamados span {
  padding: 24px;
  font-size: 1.4rem;
  font-weight: 600;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.totem .ultimos-chamados.chamado-odd {
  color: #000;
  background: var(--color-primary);
  background: #b8c9de;
}

.totem .ultimos-chamados-titulo span.guiche,
.totem .ultimos-chamados span.guiche {
  text-align: center;
}

.totem .ultimos-chamados span.guiche span {
  color: #000;
  background: #b8c9de;
  border-radius: 100%;
}

.totem .ultimos-chamados.chamado-odd span.guiche span {
  color: #fff;
  background: var(--color-primary);
}

.totem .totem-display {
  border-radius: 8px;
  background: var(--color-primary);
}

/** DISPLAY
====================================================== **/
.wrapp-display {
  overflow: hidden;
}

.display {
  display: flex;
  gap: 46px;
  width: max-content;
  animation: deslizamento 20s linear infinite;
}

.display p {
  font-weight: 600;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
}

.display:hover {
  animation-play-state: paused;
}

@keyframes deslizamento {
  to {
    translate: calc(-50% - 5px);
  }
}

/** PG AGENDAMENTO
====================================================== **/
.page-agendamento {
  min-height: calc(100vh - 130px);

  background: #dadce8;
  background: #fff;
}

.page-agendamento .container {
  margin-top: 80px;
  max-width: 1000px;
}

.pg-agendamento-header {
  width: 100%;
  height: 80px;
  background: var(--color-primary);
}

.pg-agendamento-header div {
  width: 100%;
  height: 100px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin-top: 30px;
  border-radius: 8px;
  padding: 8px 48px;
  background: #fff;
  z-index: 200;
  left: 50%;
  transform: translate(-50%, 0);
  box-shadow:
    0 51px 80px rgba(87, 158, 86, 0.08),
    0 15.375px 24.1177px rgba(87, 158, 86, 0.05),
    0 6.38599px 10.0172px rgba(87, 158, 86, 0.04),
    0 2.30969px 3.62304px rgba(87, 158, 86, 0.03);
}

.pg-agendamento-header ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.pg-agendamento-header ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s;
}

.pg-agendamento-header ul a:hover {
  color: var(--color-primary);
}

.pg-agendamento-header ul a span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #dadce8;
  height: 40px;
  width: 40px;
  border-radius: 40px;
}

.pg-agendamento-header ul li.in-page a {
  color: var(--color-primary);
}

.pg-agendamento-header ul li.in-page a span {
  color: #fff;
  background: var(--color-secundary);
}

.page-agendamento .titulo {
  text-align: center;
}

@media (max-width: 992px) {
  .pg-agendamento-header ul {
    display: none;
  }
}

.calendario {
  width: 400px;
  padding: 36px;
  border-radius: 8px;
  background: var(--color-primary);
}

.calendario span {
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
}

.form {
  flex: 1;
  padding: 24px;
  background: #fff;
}

.header-form h1 {
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 16px 0 8px;
}

/** CALENDAR
====================================================== **/
.current-date {
  color: var(--color-title);
  font-weight: 500;
  padding-inline: 20px;
}

.calendar {
  padding: 20px;
  border: 1px solid #827ca1;
  border-radius: 16px;
  margin-bottom: 40px;
}

.calendar ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
}

.calendar .days {
  margin-bottom: 20px;
}

.calendar li {
  color: var(--color-title);
  width: calc(100% / 7);
  font-size: 1.07rem;
}

.calendar .weeks li {
  font-weight: 500;
  cursor: default;
}

.calendar .days li {
  z-index: 1;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
}

.days li.inactive {
  color: #aaa;
  color: #000;
}

.days li.active {
  color: #fff;
}

.days li::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 40px;
  width: 40px;
  z-index: -1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.days li.active::before {
  background: var(--color-secundary);
}

.days li:not(.active):hover::before {
  background: #dadce8;
}

/** CAMPEONATOS TIMES ======================================== **/
.horarios {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.horarios input {
  display: none;
}

.horarios label {
  color: #827ca1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #827ca1;
  transition: all 0.3s;
}

ul.horarios li label:hover {
  background: #dadce8;
  color: #000;
}

ul.horarios li input:checked + label {
  color: #fff;
  border: 1px solid var(--color-secundary);
  background: var(--color-secundary);
}

ul.horarios li input:disabled + label {
  color: #fff;

  border: 1px solid #827ca1;
  background: #827ca1;
}

.documento {
  height: 100px;
  border: 1px dashed #827ca1;
  border-radius: 8px;
  background: var(--color-bg-secundary);
}

/** DEPOIMENTOS
====================================================== **/
.depoimentos {
  padding: 40px 24px 60px;
  background: var(--color-primary);
}

.depoimentos h2.titulo {
  color: var(--color-secundary);
  font-weight: 600;
}

.depoimentos .proximo {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 16px;
  color: var(--color-secundary);
  font-weight: 500;
  font-size: 1.4rem;
  margin-top: 40px;
}

.depoimentos .proximo i {
  color: var(--color-secundary);
}

.depoimentos ul.owl-carousel {
  padding-inline: 24px;
}

.depoimentos .item {
  color: #fff;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
  min-height: 180px;
  background: var(--color-secundary);
}

.depoimentos .item h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 0;
  color: var(--color-primary);
}

.depoimentos .owl-dots {
  display: none;
}

.depoimentos .owl-nav {
  margin-top: 40px;
  text-align: center;
}

.depoimentos .owl-nav button.owl-prev,
.depoimentos .owl-nav button.owl-next {
  height: 45px;
  width: 45px;
  margin-inline: 4px;
  border-radius: 10px;
  border: 2px solid var(--color-secundary);
  color: var(--color-secundary);

  transition: all 0.3s;
}

.depoimentos .owl-nav button span {
  font-size: 2rem;
  line-height: 2rem;
}

.depoimentos .owl-nav button.owl-prev:hover,
.depoimentos .owl-nav button.owl-next:hover {
  color: #000;
  border: 2px solid #000;
  background: transparent !important;
}

.depoimento-box {
  width: 380px;
  padding: 24px;
  font-weight: 1.2rem;
  font-weight: 500;
  border-radius: 24px;
  color: #fff;
  background: var(--color-secundary);
}

.depoimento-box h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 0;
  color: var(--color-primary);
}

@keyframes scrollInfinito {
  to {
    translate: calc(-50% - 5px);
  }
}

@media (max-width: 992px) {
  .depoimentos {
    padding: 20px 0;
  }
}

@media (max-width: 992px) {
  .depoimentos .proximo {
    display: none;
  }
}

/** FAQ
****************************************************************/
.faq {
  padding: 60px 0 40px;
  background: #fff;
}

.faq h2.titulo {
  margin-top: 20px;
  color: var(--color-primary);
  font-size: 2.4rem;
}

.faq .collapsible {
  margin: 20px 0;
}

.faq .collapsible,
.faq .collapsible li {
  box-shadow: none;
  border: 0;
}

.faq .collapsible li {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 16px;
  color: var(--color-title);
  font-weight: 600;
  border: 1.5px solid var(--color-bg-sidebar);
}

.faq .collapsible li:hover {
  border: 1.5px solid var(--color-primary);
}

.faq .collapsible-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  color: var(--color-title);
  font-weight: 600;
  line-height: 2rem;
  padding: 16px 1rem;
  background: transparent;
  border: 0;
}

.faq .collapsible-header i {
  color: var(--color-secundary);
  height: 36px;
  width: 36px;
  line-height: 36px;
  border-radius: 36px;
  border: 1.5px solid #dadce8;
  transition: all 0.3s;
}

.faq .collapsible-header:hover i {
  border-color: var(--color-secundary);
}

.faq .collapsible-body {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: none;
  border: 0;
}

.faq .collapsible-body p {
  font-size: initial;
  color: #000;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/** ESPECIALISTA
====================================================== **/
.cta {
  overflow: hidden;
  padding: 80px 24px;
  background: var(--color-secundary);
}

.cta div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  gap: 36px;
  max-width: 900px;
  margin: auto;
}

.cta h2 {
  font-size: 1.8rem;
  margin: 0;
  color: #fff;
  font-weight: 600;
  text-align: right;
}

.cta a {
  background: var(--color-primary);
  color: #fff;
}

.cta h2 span {
  font-weight: 800;
}

@media (max-width: 992px) {
  .cta a {
    width: fit-content;
  }
}

@media (max-width: 600px) {
  .cta div {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    text-align: left;
  }

  .cta a {
    width: 100%;
  }
}

/** whatsapp
******************************/
.whats-chat {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 999;
}

.whats-chat .whats-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.whats-btn .whats-btn-txt {
  background: #f5f7f9;
  position: relative;
  font-size: 12px;
  line-height: 1.5;
  color: #43474e;
  border-radius: 4px;
  padding: 8px 12px;
  height: fit-content;
  opacity: 1;
  transition: all 0.4s ease;
}

.whats-btn .whats-btn-txt.whats-btn-txt-efeito {
  opacity: 0;
  margin-top: 20px;
}

.whats-chat .whats-btn img {
  width: 56px;
  height: 56px;
  cursor: pointer;
  z-index: 999;
}

.whats-popup {
  position: absolute;
  right: 0;
  bottom: 25px;
  background: #f5f7f9;
  width: 300px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  box-shadow: 0 10px 10px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.whats-popup-efeito {
  bottom: 64px;
  visibility: visible;
  opacity: 1;
}

.whats-popup .whats-header {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #e8edf2;
  background: linear-gradient(rgb(11, 179, 47), rgb(3, 177, 61));
}

.whats-popup .whats-header strong {
  font-size: 1.2rem;
  color: #fff;
}

.whats-popup .whats-header span {
  font-size: 0.8rem;
}

.whats-popup .whats-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 20px;
}

.whats-content .whats-atendente {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  color: #827ca1;
  background: #e8edf2;
  border-radius: 32px;
  transition: all 0.3s;
}

.whats-content .whats-atendente:hover {
  background: #f2f4f7;
}

/** ERROR 404
====================================================== **/
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  height: calc(100vh - 120px);
}

.error-page h3 {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  color: var(--color-primary);
}

.error-page i {
  font-size: 4rem;
  color: var(--color-secundary);
}

.error-page a {
  background: var(--color-bg-sidebar);
  color: var(--color-text);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s;
}

.error-page a:hover {
  background: var(--color-bg-secundary);
}

/** Termos de Privacidade ======================================== **/
.termos-privacidade {
  padding: 16px 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8edf2;
  box-shadow: 7px 0 20px 2px rgb(0 0 0 / 20%);
  bottom: 20px;
  width: 100%;
  max-width: 900px;
  position: fixed;
  z-index: 999;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 0.3s;
  display: none;
}

.termos-privacidade h6 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-title);
}

.termos-privacidade .termos-privacidade-text {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.termos-privacidade .termos-privacidade-text p {
  font-size: 14px;
  line-height: 26px;
  margin-right: 20px;
}

.termos-privacidade .termos-privacidade-text button {
  background: var(--color-input);
  border: 2px solid var(--color-input);
  padding: 10px;
  width: 200px;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.termos-privacidade .termos-privacidade-text button:hover {
  background: transparent;
  color: var(--color-input);
}

@media (max-width: 992px) {
  .termos-privacidade {
    width: calc(100% - 40px);
  }

  .termos-privacidade .termos-privacidade-text {
    flex-direction: column;
  }

  .termos-privacidade .termos-privacidade-text button {
    width: 100%;
  }
}

/** FOOTER
====================================================== **/
footer {
  padding: 40px;
  background: var(--color-primary);
}

footer ul.rs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: 24px;
}

footer ul.rs li img {
  height: 30px;
  width: 30px;
}

footer .copy {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}

footer .copy .logo-footer {
  height: 40px;
}

footer .by a {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 8px;
  height: 40px;
  color: #fff;
}

@media (max-width: 992px) {
  footer {
    text-align: center;
  }

  footer .copy,
  footer .by a {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 10px 0;
  }
}
