:root {
  --bg-primary: #f2f2f2;
  --bg-header: #fff;
  --bg-footer: #3b3b3b;
  --green-primary: #3b8476;
  --green-highlight: #adebc2;
  --color-text-primary: #3b3b3b;
  --color-text-white: #fff;
  --color-text-green: #3b8476;
  --font: "Poppins", sans-serif;
  --transition: 200ms all ease;
}
* {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  border: 0;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none !important;
}
*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::-moz-selection {
  color: var(--color-text-white);
  background-color: var(--color-text-primary);
}

*::selection {
  color: var(--color-text-white);
  background-color: var(--color-text-primary);
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  /*overflow-x: hidden;*/
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
  line-height: 1.47059;
  font-weight: 400;
  background-color: var(--bg-primary);
  color: var(--color-text-primary);
  font-style: normal;
  font-family: var(--font);
}

body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
}
body::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 20px;
}
a{
  color: inherit;
}
a:hover{
  color: inherit;
}
.m-se-60 {
  margin-left: 60px;
  margin-right: 60px;
}
.ms-60 {
  margin-left: 60px;
}
.me-60 {
  margin-right: 60px;
}
.font-12px {
  font-size: 12px;
}
.font-bold {
  font-weight: 900;
}
.font-bold-800 {
  font-weight: 800;
}
.active {
  color: var(--color-text-green) !important;
}
.color-green {
  color: var(--color-text-green) !important;
}
.color-green-highlight {
  color: var(--green-highlight) !important;
}
.color-white{
  color: var(--color-text-white)!important;
}
.btn-custom {
  background-color: var(--green-primary);
  border: solid 1px var(--green-primary);
  color: var(--color-text-white);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 12px;
}
.btn-custom:hover{
  color: var(--color-text-white);
  -webkit-filter: brightness(.9);
          filter: brightness(.9);
}

.btn-custom-outline {
  background-color: transparent;
  color: var(--color-text-white);
  border: solid 1px var(--color-text-white);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 12px;
}
.btn-custom-outline {
  color: var(--color-text-white);
  -webkit-filter: brightness(.9);
          filter: brightness(.9);
}
.subtitle {
  color: var(--color-text-green);
  font-weight: 900;
  font-size: 12px;
}
.h1,
h1 {
  font-size: calc(1.475rem + 1.5vw);
}

.h2,
h2 {
  font-size: calc(1.525rem + 0.9vw);
}

hr.vertical {
  width: 150px;
  border: 2px solid white;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 1;
  margin-bottom: 100px;
}

#cookies_container {
  padding-top: 10rem !important;
}

#cookies {
  position: fixed;
  bottom: 1rem;
  right: 15px;
  left: 15px;
  z-index: 100000000;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 90%;
}

#cookies .row {
  background-color: var(--bg-header);
  border-radius: 8px;
  border: solid 1px rgba(124, 124, 124, 0.393);
}

#cookies .row .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#cookies .row .col p {
  font-size: 14px;
  margin-bottom: 0;
  color: inherit !important;
}

#cookies .row a {
  color: var(--color-text-green);
  margin-right: 1rem;
}
#cookies .fecharCookiesId {
  font-size: 12px;
  padding: 0.3rem 1rem !important;
}
