@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/SegoeUI-Italic.eot");
  src: url("../fonts/SegoeUI-Italic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/SegoeUI-Italic.woff2") format("woff2"),
    url("../fonts/SegoeUI-Italic.woff") format("woff"),
    url("../fonts/SegoeUI-Italic.ttf") format("truetype"),
    url("../fonts/SegoeUI-Italic.svg#SegoeUI-Italic") format("svg");
  font-weight: normal;
  font-display: swap;
}

:root {
  --bg-color-dark: #060216;
  --bg-color-pink: #c31d70;
  --font-family-title: "Open Sans", sans-serif;
  --font-family-p: "Open Sans", sans-serif;
  --main-clr: #5d5d5d;
  --nav-shadow: 0px 3px var(--main-clr);
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img {
  display: block;
}

.img-fluid {
  max-width: 100%;
}

.img-health {
  margin-top: 10px;
}

.img-center {
  margin: 0 auto;
  display: table;
}

h2 {
  font-family: var(--font-family-title);
  font-size: 30px;
  margin: 0;
  color: #9f6f40;
  font-weight: 600;
  margin-bottom: 1rem;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  padding-top: 20px;
  opacity: 0;
}
h2.active {
  padding-top: 0px;
  opacity: 1;
}
h2 small {
  font-size: 3.5625rem;
}
h3 {
  font-family: var(--font-family-p);
  font-size: 3.875rem;
  margin: 0;
}
p {
  font-family: var(--font-family-p);
  font-size: 18px;
  line-height: 1.8;
  color: #6f6f6f;
  margin: 0;
  text-align: justify;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  padding-top: 20px;
  opacity: 0;
  letter-spacing: 1px;
}
p.active {
  padding-top: 0px;
  opacity: 1;
}
p small {
  font-size: 1rem;
}
li {
  list-style: none;
}
a {
  font-family: var(--font-family-p);
  font-size: 1.25rem;
  font-weight: 400;
  text-decoration: none;
  color: #5c5b5b;
}

.text-color-white {
  color: white;
}

.text-color-blue {
  color: #bcafa0;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.bg-gray {
  background-color: #5c5b5b;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
/* iframe,
video,
embed {
  max-width: 100%;
  min-height: 100px;
  vertical-align: top;
} */

.video-container {
  position: relative;
  padding-bottom: 42%;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*GRID*/
.container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
  position: relative;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1270px;
  }
}

.container.sm {
  max-width: 1090px;
}

.container.md {
  max-width: 1250px;
}

.container.lg {
  max-width: 1380px;
}

.row {
  --bs-gutter-x: 1.9rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(0 * var(--bs-gutter-x));
  margin-left: calc(0 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 1);
  padding-left: calc(var(--bs-gutter-x) * 1);
  margin-top: var(--bs-gutter-y);
  box-sizing: border-box;
}

.row-center {
  align-items: center;
  justify-content: center;
}

.col-lg-25 {
  flex: 0 0 auto;
  width: 25%;
}

.col-lg-33 {
  flex: 0 0 auto;
  width: 33%;
}

.col-lg-40 {
  flex: 0 0 auto;
  width: 40%;
}

.col-lg-50 {
  flex: 0 0 auto;
  width: 50%;
}

.col-lg-60 {
  flex: 0 0 auto;
  width: 60%;
}

.col-lg-75 {
  flex: 0 0 auto;
  width: 75%;
}

.col-lg-100 {
  flex: 0 0 auto;
  width: 100%;
}

@media (max-width: 767px) {
  .col-md-50 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-100 {
    flex: 0 0 auto;
    width: 100%;
  }
  h2 {
    font-size: 2.5rem;
  }
  p {
    font-size: 20px;
    line-height: 1.4;
  }
  .img-health {
    margin-top: 20px;
  }
  #banner p,
  #conceito h2,
  #conceito p {
    opacity: 1;
  }
}

@media (max-width: 565px) {
  .col-sm-50 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-100 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.padding-top {
  padding-top: 10vw;
}

.padding-top-lg {
  padding-top: 12rem;
}

.padding-bottom {
  padding-bottom: 7rem;
}

.margin-top {
  margin-top: 7rem;
}

#header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 1rem 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  margin-top: 0rem;
  top: 0;
}

#header .img-bt-compre {
  height: 35px;
  padding: 20px;
}

#header img:hover {
  opacity: 0.8;
}

/*----NAV----*/
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  background: transparent;
  max-width: 1620px;
  padding: 0.3rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}

nav .logo {
  max-width: 300px;
  position: relative;
  z-index: 99;
}

nav .logo img {
  width: 100%;
  cursor: pointer;
}

nav ul {
  --padding: 20px;
  --font-size: 17px;
  padding-left: 0;
  padding-bottom: 0;
  list-style: none;
  display: flex;
  align-items: center;
  font-size: var(--font-size);
  overflow: hidden;
  /* transition: 1s cubic-bezier(.68,-0.55,.27,10.55); */
}

nav ul li {
  padding: 0 20px;
}

nav ul li:last-child {
  border-left: 1px solid #ccc;
}

nav ul li a {
  box-sizing: border-box;
}

.link-home {
  display: none;
}

nav ul li a {
  color: #5c5b5b;
  text-decoration: none;
  position: relative;
  font-family: var(--font-family-p);
  font-size: 1.0625rem;
  font-weight: 400;
  text-transform: uppercase;
}

nav ul li a:hover {
  text-decoration: underline;
}

nav ul li.active a {
  font-weight: bold;
}

nav ul li a::after {
  content: "";
  width: 0%;
  height: 1.7px;
  border-radius: 99px;
  background: var(--main-clr);
  position: absolute;
  bottom: -10px;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

nav .menu {
  width: 23px;
  height: 16px;
  cursor: pointer;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: inherit;
  position: relative;
  margin-right: 0;
  /* background: red; */
  /* border: 1px solid red; */
  box-sizing: border-box;
  padding: 0;
  margin: 20px;
  margin-right: 0;
}

nav .menu span {
  width: 100%;
  height: 1px;
  border-radius: 0;
  background: #5d5d5d;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform-origin: left;
  transform-origin: left;
}

nav .menu.active span {
  background: var(--main-clr);
}

nav .menu.active span:nth-child(1) {
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

nav .menu span:nth-child(3) {
  -webkit-transform-origin: left;
  transform-origin: left;
}

nav .menu.active span:nth-child(3) {
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
}

nav .menu.active span:nth-child(2) {
  -webkit-transform: scale(0);
  transform: scale(0);
}

@media (max-width: 991px) {
  nav .menu {
    display: flex;
  }

  nav ul {
    --height: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    width: 100%;
    left: 0;
    top: 32px;
    height: var(--height);
    -webkit-transition: 1s cubic-bezier(0.68, -0.55, 0.27, 0.55);
    transition: 1s cubic-bezier(0.68, -0.55, 0.27, 0.55);
    background: #fff;
  }

  nav ul.active {
    --height: calc(
      (((var(--padding) * 0.8) + (var(--font-size) * 0.8))) *
        var(--childenNumber)
    );
    /*   (Block Level Padding + The Font Size) * The Number of Children   */
    -webkit-transition: 1s ease;
    transition: 1s ease;
  }

  nav ul li {
    margin: 0.5rem 0;
  }

  nav ul li.home a:first-child {
    display: none;
  }
}

nav ul {
  width: 100%;
  justify-content: flex-end;
  --childenNumber: 6 !important;
}

.box-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
}

nav .menu-rede {
  display: flex;
  margin: 0 2rem;
}

nav .menu-rede a.link-menu {
  margin-left: 1rem;
}

nav a.lang {
  margin-left: 1rem;
  color: #bcafa0;
  text-decoration: none;
}

nav a.lang:hover {
  text-decoration: underline;
}

#main {
  padding-top: 98px;
}
/*----conceito----*/
#conceito {
  background: #fff;
}

h2 {
  font-size: calc(5vw + 3px);
  font-size: 30px;
  line-height: 0.9;
  text-transform: uppercase;
  color: #9f6f40;
}

#conceito h2 span {
  font-weight: 400;
}

/*----paraisos----*/
#paraisos .content {
  display: flex;
}

#paraisos .content .box {
  position: relative;
  padding: 2px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 25px;
  opacity: 0;
  filter: grayscale(1);
  background: #f4f4f4;
}

#paraisos .content .box01 {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

#paraisos .content .box02 {
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

#paraisos .content .box03 {
  -webkit-transition-duration: 1.5s;
  transition-duration: 1.5s;
}

#paraisos .content .box04 {
  -webkit-transition-duration: 2s;
  transition-duration: 2s;
}

#paraisos .content .box01.active {
  padding-top: 0;
  opacity: 1;
  filter: grayscale(0);
}

#paraisos .content .box02.active {
  padding-top: 0;
  opacity: 1;
  filter: grayscale(0);
}

#paraisos .content .box03.active {
  padding-top: 0;
  opacity: 1;
  filter: grayscale(0);
}

#paraisos .content .box04.active {
  padding-top: 0;
  opacity: 1;
  filter: grayscale(0);
}

#paraisos .content .box .text-absolut {
  position: absolute;
  z-index: 9;
  padding: 1rem 2rem;
  box-sizing: border-box;
  background-color: #ffffff2e;
  background-color: #9f6f40a1;
  color: #848484;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 300;
  bottom: 0;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-flow: column;
}

#paraisos .content .box.transition .text-absolut:hover {
  background-color: #000000a1;
}

#paraisos .content .box.transition .text-absolut:hover img {
  transform: translate(0px, -210px);
  transition: 1s ease;
}

#paraisos .content .box .text-absolut span {
  text-transform: uppercase;
  letter-spacing: 10px;
  font-size: 15px;
  color: #fff;
}

#paraisos .content .box.transition .text-absolut:hover span {
  transform: translate(0px, 210px);
  transition: 1s ease;
}

#paraisos .content .box .text-absolut p {
  font-size: 15px;
  color: #fff;
  height: 0;
  overflow: hidden;
}

#paraisos .content .box.transition .text-absolut:hover p {
  height: 20px;
  transition: 1s ease;
}

/* #paraisos .content .box .text-absolut:hover span {
  margin-top: 200px;
} */

#paraisos .content .box .img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 100%;
}

#paraisos .content .box:hover .img {
  /* filter: grayscale(1); */
}

#paraisos .content {
  display: flex;
  justify-content: center;
  padding: 0rem 0;
  overflow: hidden;
}
#paraisos .content .box .img {
  max-width: inherit;
}

/*----MEDIA----*/
@media (max-width: 1199px) {
  nav ul li a {
    font-size: inherit;
  }

  #banner .box-texto {
    bottom: 80px;
  }
}

@media (max-width: 991px) {
  nav .logo {
    max-width: 200px;
  }

  nav ul li a:hover {
    text-decoration: none;
  }

  nav a.lang {
    margin-left: 0;
  }

  nav .menu-rede a.link-menu {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  nav .menu-rede {
    margin: 1rem 0;
  }

  #banner .box-texto {
    bottom: 40px;
  }

  .box-links {
    width: 98%;
  }

  #paraisos .content {
    display: block;
  }
  #paraisos .content .box {
    width: 49%;
    float: left;
  }
}

@media (max-width: 565px) {
  nav ul {
    top: 16px;
  }

  #header {
    padding: 0;
  }

  #paraisos .content {
    display: block;
  }
  #paraisos .content .box {
    width: 100%;
  }
}

@media (max-width: 288px) {
  nav .logo {
    max-width: 140px;
  }
}
