/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  /* Change favorite color to match images */
  /*Green dark 190 - Green 171 - Grren Blue 200*/
  --hue-color: 190;

  /* HSL color mode */
  --first-color: hsl(0deg 0% 59.22%);
  --first-color-second: hsl(0deg 0% 88.34%);
  --first-color-alt: hsl(var(--hue-color), 64%, 15%);
  --title-color: hsl(var(--hue-color), 64%, 18%);
  --text-color: hsl(var(--hue-color), 24%, 35%);
  --text-color-light: hsl(var(--hue-color), 8%, 60%);
  --input-color: hsl(var(--hue-color), 24%, 97%);
  --body-color: #FFF;
  --white-color: #FFF;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --title-font: 'Raleway', sans-serif;
  --biggest-font-size: 2.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Hover overlay ==========*/
  --img-transition: 4.7s;
  --img-hidden: hidden;
  --img-scale: scale(1.1);
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 54%, 12%);
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 29%, 12%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme,
.change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: #574f45;
}

h1 {
  margin-bottom: 0px;
  text-align: center;
  font-family: "Poppins", Sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 7.8px;
  color: hsl(0deg 0% 63.14%);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}


h3 {
  MAX-WIDTH: 500PX;
  margin-bottom: 45px;
  text-align: left;
  color: #3B4345;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}

h4 {
  color: #7e7b7b;
  font-family: "Playfair Display", Sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1em;
}

h5 {
  margin-bottom: 10px;
  text-align: justify;
  color: #7e7b7b;
  font-family: "Poppins", Sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4em;
}

/*
h6 {
  margin-bottom: 12px;
  text-align: center;
  color: #3B4345;
  font-family: "Poppins", Sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 7.8px;

} */

.h2 {
  margin-bottom: 12px;
  text-align: center;
  color: #3B4345;
  font-family: "Poppins", Sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 7.8px;
}


ul {
  list-style: none;
}

a {
  text-decoration: none;
}


/*video {
  box-shadow: rgba(0, 0, 1, 0.55) 1px 4px 30px;
  border-radius: 17px;
  max-width: 100%;
  height: auto;
}*/

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

.main {
  overflow-x: hidden;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2.5rem;
}

.section__title {
  margin-top: -20px;
  font-size: 35PX;
  color: hsl(0deg 0% 44.24%);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
 /* background-color: white;*/
  /*box-shadow: 0 0 14px rgba(14, 55, 63, 0.55);*/
  display: flex;
  justify-content: center;
  align-items: center;
}

/*=============== NAV ===============*/
.nav {
  width: 100%;
  height: var(--header-height);
max-width: 1067px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
    background: #ffffff4a;
  border-radius: 10px;
}

.nav__logo,
.nav__toggle {
  color: #6b6b6b;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  font-size: 1.1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  font-family: "Playfair Display", Sans-serif;
  font-weight: 700 !important;

}

.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: #7b7c7c;
  font-weight: var(--font-semi-bold);
  letter-spacing: 2px;
  font-size: 0.95rem;
  text-transform: uppercase !important;
  transition: all 300ms ease;
}

.nav__link:hover {
  color: var(--text-color);
  opacity: 0.8;
}

.nav__contact {
  background-color: #dfdfdf;
  padding: 12px 20px;
}

.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
 /*  background-color: hsl(0deg 0% 100%);*/
  /* box-shadow: 0 0 14px rgba(14, 55, 63, 0.55);*/
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: #7e7c7a;
}

/* Active link */
/* .active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -.75rem;
  left: 0;
} */



/*=============== HOME ===============*/

/*.home {
margin-top: var(--header-height);
  background: linear-gradient(to right, #ffffff7d, #7f6433b2);
  width: 100%;
  height: 600px;
  justify-content: center;
  align-items: center;
  overflow: hidden;}*/


.home {
  width: 100%;
  overflow: hidden;
  /*background-image: url('https://i.imgur.com/Rnd4i7T.jpeg');*/
  background-size: cover;
  position: relative;
  height: 100%;
  background-position: center 3px;
  background-repeat: no-repeat;
  margin-top: -4vh;
  min-height: 600px;
  background: #f2f2f2;
}



.home img{
    background-size: cover; /* Garante que a imagem cubra toda a div */
            background-position: center; /* Centraliza a imagem */
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 24px;
            
    width: 100%;
    margin-top: 1px;
    z-index: 1; /* Garantir que o conteúdo fique por cima da imagem */
}

.home__container {
  position: relative;
  overflow: hidden;
  align-content: center;

}

.home__data {
  width: 100%;
  display: flex;
  padding-top: 0vh;
  gap: 100px;
  margin-top: -100px;
}

.home__data__text {
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  padding-top: 30vh;
  opacity: 0;
  transform: translateY(50px); /* Começa com a div abaixo */
  animation: fadeInMove 1s ease-out forwards;
}
 @keyframes fadeInMove {
            0% {
                opacity: 0; /* Começa invisível */
                transform: translateY(50px); /* Começa abaixo da posição inicial */
            }
            100% {
                opacity: 1; /* Finaliza visível */
                transform: translateY(0); /* Finaliza na posição original */
            }
        }

/*.home__data__text h2 {
  background: linear-gradient(to right, #825e307d, #7d6232);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "Playfair Display", Sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 15px;
}*/


.home__data__text h2 {
background: linear-gradient(to right, #1e1e1e, #272727);
background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "Playfair Display", Sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 15px;
}


/*.home__data__text h3 {
  color: #574f45;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: 5px;
  margin-bottom: 15px;
}*/

.home__data__text h3 {
  color: #303030;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: 5px;
  margin-bottom: 15px;
}

/*.home__data__text p {
  margin-bottom: 15px;
}*/


.home__data__text p {
  margin-bottom: 15px;
  color: #242424;
}

.home__data__button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

/*.home__data__button a {
  width: 100%;
  color: #FAFAFA;
  background-color: #7e7b7b;
  font-weight: 700;
  padding: 12px 20px;
  display: flex;
  letter-spacing: 5px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  transition: all 300ms ease;
}*/

.home__data__button a {
  width: 100%;
color: #f0eeec;
  background-color: #303030;
  font-weight: 700;
  padding: 12px 20px;
  display: flex;
  letter-spacing: 5px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  transition: all 300ms ease;
}


.home__data__button a:hover {
  opacity: 0.85;
}

.home__data__button i {
  font-weight: 400;
  font-size: 1.5rem;
}

.home__image {
  position: relative;
  width: 100%;
  max-width: 480px;

}

.home__data-subtitle,
.home__data-title,
.home__social-link,
.home__info {
  color: var(--white-color);
}

.home__data-subtitle {
  display: block;
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__data-title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2-5);
}

.home__social {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.home__social-link {
  font-size: 1.2rem;
  width: max-content;
}

.home__info {
  background-color: var(--first-color);
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
  column-gap: .5rem;
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 228px;
}

.home__info-title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__info-button {
  font-size: var(--smaller-font-size);
}

.home__info-overlay {
  overflow: var(--img-hidden);
}

.home__info-img {
  width: 145px;
  transition: var(--img-transition);
}

.home__info-img:hover {
  transform: var(--img-scale);
}

@media screen and (max-width: 768px) {
  .home__data {
    flex-direction: column;
    padding-top: 0vh;
  }

.home__image {
    position: absolute;
    width: 92%;
    max-width: 480px;
    margin-left: 63px;
    opacity: 0.2;
    margin-top: 3px;
  }

  .home__data__text {
    padding-top: 0vh;
  }

}

/*=============== BPC/LOAS ===============*/
.bpc__title {
  margin-top: -20px;
  font-size: 35PX;
  color: hsl(0deg 0% 44.24%);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 15px;
  letter-spacing: 8px;
}

.bpc__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.bpc__container__text {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .bpc__container {
    flex-direction: column;
  }
}

/*=============== REQUISITOS ===============*/
.requisitos {
  background-color: #f5f5f5;

}

.requisitos__title {
  margin-top: -20px;
  font-size: 35px;
  color: #7e7b7b;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 15px;
  letter-spacing: 8px;
}

.requisitos__container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}

.requisitos__card {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  flex: 1;
}

.requisitos__card__image {
  width: 80px;
  margin-bottom: 10px;
}

.requisitos__card__text {
  background-color: #fff;
  padding: 20px;
  border-radius: 4px;
  height: 100%;
box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.requisitos__card__subtitle {
  color: #7e7b7b;
  text-align: center;
  transform: scaleY(0.88);
  letter-spacing: 4px;
  font-size: 1.5rem;
  font-weight: 600;
}

.requisitos__card__descricao {
  color: #7e7b7b;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: justify;
}


.requisitos__button {
  width: 50%;
  color: #fff;
  background-color: #7e7b7b;
  font-weight: 700;
  padding: 12px 10px;
  display: flex;
  letter-spacing: 5px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-top: 40px;
  transition: all 300ms ease;
  border-radius: 4px;

}

.requisitos__button:hover {
  opacity: 0.85;
}

.requisitos__button i {
  font-weight: 400;
  font-size: 1.5rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .requisitos__title {
    letter-spacing: 0px;
  }

  .requisitos__container {
    flex-direction: column;
  }

  .requisitos__button {
    width: 100%;
  }
}

/*=============== COMO FUNCIONA ===============*/
.comofunciona {
  padding: 2.5rem 0;
  border-bottom: 5px solid #7e7b7b;
}

.comofunciona__title {
  margin-top: -20px;
  font-size: 35PX;
  color: #7e7b7b;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 15px;
  letter-spacing: 8px;
}




.comofunciona__container {
  display: flex;
  justify-content: center;
  align-items: start;
}

.comofunciona__card h5 {
  text-align: center;
  display: flex;
  flex-direction: column;
  font-size: 4.5rem;
  font-family: "Playfair Display", Sans-serif;
  letter-spacing: 5px;
  color: #c2a787;

}

.linha-com-ponto {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 20px 0;
}

.linha {
  flex: 1;
  height: 2px;
  background-color: #c2a787;
}

.ponto {
  width: 12px;
  height: 12px;
  background-color: #c2a787;
  border-radius: 50%;
}

.comofunciona__card h6 {
  font-size: 1.5rem;
  color: #7e7b7b;
  margin-bottom: 15px;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  transform: scaleY(0.9);
}

.comofunciona__card p {
  padding-right: 10px;

}

@media screen and (max-width: 768px) {
  .comofunciona__container {
    flex-direction: column;
  }

  .comofunciona__title {
    letter-spacing: 0px;

  }

  .comofunciona__card h5 {
    font-size: 8rem;

  }
}


/*=============== BUTTONS ===============*/
.button {
  border-radius: 12px;
  display: inline-block;
  background-color: #979797;
  ;
  color: var(--white-color);
  padding: 1rem 2rem;
  /*font-weight: var(--font-semi-bold);*/
  transition: .3s;
}

.button:hover {
  background-color: #636161;
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}

/*=============== ABOUT ===============*/
.about__data {
  text-align: center;
}

.about__container {
  row-gap: 2.5rem;
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__img {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
}

.about__img-overlay {
  overflow: var(--img-hidden);
}

.about__img-one {
  width: 130px;
}

.about__img-two {
  border-radius: 40px;
  width: 340px;
}

.about__img-one,
.about__img-two {
  transition: var(--img-transition);
}

.about__img-one:hover,
.about__img-two:hover {
  transform: var(--img-scale);
}

.swiper-button-next,
.swiper-button-prev {
  color: #c1a787!important;
  padding: 0 80px !important;
}

.swiper-button-next {
  right: 10px !important;
}

.swiper-button-prev {
  left: 10px !important;
}

@media screen and (max-width: 768px) {
  .swiper-button-next {
    display: none !important;
  }

  .swiper-button-prev {
    display: none !important;
  }
}

@media screen and (max-width: 1180px) {
    
    .home {
  width: 100%;
  overflow: hidden;
  /*background-image: url('https://i.imgur.com/Rnd4i7T.jpeg*/
  position: relative;
  height: 100%;
  margin-top: -9vh;
  min-height: 566px;
  background: #f2f2f2;
}
}
@media screen and (min-width: 1364px) {
    .home {
  width: 100%;
  overflow: hidden;
  /*background-image: url('https://i.imgur.com/Rnd4i7T.jpeg*/
  position: relative;
  height: 100%;
  margin-top: -14vh;
  min-height: 613px;
  background: #f2f2f2;
}
}

@media screen and (max-width: 1048px) {

.home {
  width: 100%;
  overflow: hidden;
  /*background-image: url('https://i.imgur.com/Rnd4i7T.jpeg*/
  position: relative;
  height: 100%;
  margin-top: -9vh;
  min-height: 613px;
  background: #f2f2f2;
}

.home__data {
  width: 100%;
  display: flex;
  padding-top: 11vh;
  gap: 100px;
  margin-top: -100px;
}}


@media screen and (max-width: 961px) {
    
.home__data__text {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    padding-top: 32vh;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInMove 1s ease-out forwards;
  }}


@media screen and (max-width: 873px) {
    .home {
  width: 100%;
  overflow: hidden;
  background-image: url('https://i.imgur.com/Rnd4i7T.jpeg');
  position: relative;
  height: 100%;
  margin-top: -9vh;
  min-height: 589px;
  background: #f2f2f2;
}
    
}
/*=============== AVALIAÇÕES ===============*/
.avaliacao {
  border-bottom: 5px solid #7e7b7b;
}

.avaliacao__title {
  margin-top: -20px;
  font-size: 35PX;
  color: hsl(0deg 0% 44.24%);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 15px;
  letter-spacing: 8px;
}

.avaliacao__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.avaliacao__container img {
  width: 60px;
}

.avaliacao__container h5 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 600;
}

.stars {
  font-size: 2.2rem;
}

.star {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
}

.star::after {
  content: '★';
  color: #ccc;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.star.full::before,
.star.partial::before {
  content: '★';
  color: #facc15;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
}

.star.partial::before {
  width: 55%;
}

.avaliacao__container a {
  color: var(--first-color);
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .avaliacao__container {
    flex-direction: column;
  }

  .avaliacao__title {
    letter-spacing: 0px;

  }
}

/*=============== CONTATO ===============*/
.contato {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 100px;
}

.contato__title {
  margin-top: -20px;
  font-size: 35PX;
  color: hsl(0deg 0% 44.24%);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 15px;
  letter-spacing: 8px;
}

.contato__links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contato__links a {
  color: var(--first-color);

}

@media screen and (max-width: 768px) {
  .contato {
    flex-direction: column;
    align-items: center;
  }

.contato__title {
    letter-spacing: 3px;
    margin-left: -5px;
  }
}

/*=============== DISCOVER ===============*/
.discover__card {
  position: relative;
  width: 200px;
  overflow: var(--img-hidden);
}

.discover__data {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
}

.discover__title,
.discover__description {
  color: var(--white-color);
}

.discover__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.discover__description {
  display: block;
  font-size: var(--smaller-font-size);
}

.discover__img {
  transition: var(--img-transition);
}

.discover__img:hover {
  transform: var(--img-scale);
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: none;
}

/*=============== EXPERIENCE ===============*/

.experience__container {
  row-gap: 2.5rem;
  justify-content: center;
  justify-items: center;
}

.tdb {
    
    margin-top: -22px;
}
.tdb a{
    text-decoration: none;
  color: var(--first-color);
  margin-top: -30px;
}

.tdb h1{
    
    margin-bottom: 0px;
  text-align: center;
  font-family: "Poppins", Sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 7.8px;
  color: hsl(0deg 0% 63.14%);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);}


.experience__content {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  justify-items: center;
  padding: 0 2rem;
}

.experience__number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-5);
}

.experience__description {
  font-size: var(--small-font-size);
}

.experience__img {
  position: relative;
  padding-bottom: 2rem;
}

.experience__img-one,
.experience__img-two {
  transition: var(--img-transition);
}

.experience__img-one:hover,
.experience__img-two:hover {
  transform: var(--img-scale);
}

.experience__overlay {
  overflow: var(--img-hidden);
}

.experience__overlay:nth-child(1) {
  width: 263px;
  margin-right: 2rem;
}

.experience__overlay:nth-child(2) {
  width: 120px;
  position: absolute;
  top: 2rem;
  right: 0;
}

/*=============== VIDEO ===============*/
.video__container {
  padding-bottom: 1rem;
}

.video__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.video__content {
  position: relative;
}

.video__button {
  border-radius: 8px;
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: 1rem 1.5rem;
}

.video__button-icon {
  font-size: 1.2rem;
}

/*=============== PLACES ===============*/
.place__card,
.place__img {
  height: 230px;
}

.place__container {
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
}

.place__card {
  position: relative;
  overflow: var(--img-hidden);
}

.place__card:hover .place__img {
  transform: var(--img-scale);
}

.place__img {
  transition: var(--img-transition);
}

.place__content,
.place__title {
  color: var(--white-color);
}

.place__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .75rem .75rem 1rem;
}

.place__rating {
  align-self: flex-end;
  display: flex;
  align-items: center;
}

.place__rating-icon {
  font-size: .75rem;
  margin-right: var(--mb-0-25);
}

.place__rating-number {
  font-size: var(--small-font-size);
}

.place__subtitle,
.place__price {
  display: block;
}

.place__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.place__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-1-25);
}

.place__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .75rem 1rem;
}


/*=============== SPONSORS ===============*/
.sponsor__container {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  justify-items: center;
  row-gap: 3.5rem;
}

.sponsor__content:hover .sponsor__img {
  filter: invert(0.5);
}

.sponsor__img {
  width: 90px;
  filter: invert(0.7);
  transition: var(--img-transition);
}

/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 5rem;
}

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__title,
.footer__subtitle {
  font-size: var(--h3-font-size);
}

.footer__title {
  margin-bottom: var(--mb-0-5);
}

.footer__description {
  margin-bottom: var(--mb-2);
}

.footer__social {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1-25);
}

.footer__subtitle {
  margin-bottom: var(--mb-1);
}

.footer__item {
  margin-bottom: var(--mb-0-75);
}

.footer__link {
  color: var(--text-color);
}

.footer__link:hover {
  color: var(--title-color);
}

.footer__rights {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  text-align: center;
}

.footer__copy,
.footer__terms-link {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.footer__terms {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
}

.footer__terms-link:hover {
  color: var(--text-color);
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--first-color);
  padding: .5rem;
  display: flex;
  opacity: .9;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .place__container {
    grid-template-columns: max-content;
    justify-content: center;
  }

  .experience__content {
    padding: 0;
  }

  .experience__overlay:nth-child(1) {
    width: 190px;
  }

  .experience__overlay:nth-child(2) {
    width: 80px;
  }

  .home__info {
    width: 190px;
    padding: 1rem;
  }

  .experience__img,
  .video__container {
    padding: 0;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }

  .place__container {
    grid-template-columns: repeat(3, max-content);
  }

  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .nav {
      margin-top: 10px;
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__link {
    color: #272727;;
    text-transform: initial;
  }

  .nav__link:hover {
    color: #7b7c7c;
  }

  .nav__dark {
    position: initial;
  }

  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 2rem;
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .change-theme-name {
    display: none;
  }

  .change-theme {
    color: var(--white-color);
  }

  .active-link::before {
    background-color: var(--white-color);
  }

  .scroll-header .nav__link {
    color: #272727;
  }

  .scroll-header .active-link {
    color: #7e7c7a;
  }

  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }

  .scroll-header .change-theme {
    color: var(--text-color);
  }

  .section {
    padding: 7rem 0 2rem;
  }

.home__container {
    height: 100vh;
    grid-template-rows: 1.8fr .5fr;
    margin-top: 4vh;
  }

  .home__data {
    align-self: flex-end;
  }

  .home__social {
    flex-direction: row;
    align-self: flex-end;
    margin-bottom: 3rem;
    column-gap: 2.5rem;
  }

  .home__info {
    bottom: 3rem;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .about__data,
  .about__title {
    text-align: initial;
  }

  .about__title {
    margin-bottom: var(--mb-1-5);
  }

  .about__description {
    margin-bottom: var(--mb-2);
  }

  .discover__container {
    width: 610px;
    margin-left: auto;
    margin-right: auto;
  }

  .discover__container,
  .place__container {
    padding-top: 2rem;
  }

  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }

  .experience__overlay:nth-child(2) {
    width: 160px;
  }

  .subscribe__bg {
    padding: 0;
  }

  .subscribe__container {
    background-color: hsl(0deg 0% 90.59%);
    padding: 3.5rem 0;
  }

  .subscribe__input {
    padding: 0 .5rem;
  }

  .footer__rights {
    /* flex-direction: row;*/
    justify-content: space-between;
  }



}




 @media screen and (min-width: 1291px) {
.home__container {
    grid-template-rows: 2fr .5fr;
    height: 100%;
    margin-top: 13vh;
  }
 }
  
  

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

 .home__container {
    grid-template-rows: 2fr .5fr;
    height: 100%;
    margin-top: 13vh;
  }

  .home__info {
    width: 328px;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
  }

  .home__info-title {
    font-size: var(--normal-font-size);
  }

  .home__info-img {
    width: 240px;
  }

  .about__img-one {
    width: 230px;
  }

  .about__img-two {
    width: 340px;
  }

  .discover__card {
    width: 237px;
  }

  .discover__container {
    width: 700px;
  }

  .discover__data {
    left: 1.5rem;
    bottom: 2rem;
  }

  .discover__title {
    font-size: var(--h2-font-size);
  }

  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }

  .experience__overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem;
  }

  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 3rem;
  }

  .video__container {
    grid-template-columns: .7fr;
  }

  .video__description {
    padding: 0 8rem;
  }

  .place__container {
    gap: 3rem 2rem;
  }

  .place__card,
  .place__img {
    height: 263px;
  }

  .footer__content {
    justify-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1024px;
  }
  .home__data__text {
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  padding-top: 26vh;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInMove 1s ease-out forwards;
}


}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }

  .home__container,
  .home__img {
    height: 640px;
  }
}


/*========== CLASS CSS ==========*/
.section {
  padding: 4rem 0 2rem;
}

.section-title,
.section-subtitle {
  text-align: center;
}

.section-title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-3);
}

.section-subtitle {
  display: block;
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

*==========MENU==========*/ .menu__container {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}

.menu__content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: .5rem;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  padding: .75rem;
}

.menu__content2 {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: .5rem;
  padding: .75rem;
}

.menu__img2 {
  align-self: center;
  margin-bottom: 19px;
}

.menu__img {
  align-self: center;
  margin-bottom: 30px;
}

.menu__name,
.menu__preci {
  font-weight: var(--font-semi-bold);
  color: hsl(0deg 0% 39.52%);
}

.menu__name {
  text-align: left;
  font-size: 13PX;
}

.menu__name,
.menu__preci {
  font-weight: var(--font-semi-bold);
  color: hsl(0deg 0% 39.52%);
}

.menu__name2 {
  font-size: 14px;
  font-weight: var(--font-semi-bold);
  color: hsl(0deg 0% 39.52%);
}

.menu__detail {
  color: #fff;
  margin-bottom: -7px;
}

.menu__button {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  padding: .625rem .813rem;
  border-radius: .5rem 0 .5rem 0;
}

.bd-grid {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: 1.5rem;
}


.bd-grid2 {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: 1.5rem;
}



@media screen and (min-width: 768px) {
  .menu__container {
    grid-template-columns: repeat(3, 210px);
    column-gap: 4rem;
  }

  .menu__container2 {
    grid-template-columns: repeat(4, 200px);
    column-gap: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .menu__img {
    width: 49px;
    margin-top: -80px;
  }
}

@media screen and (min-width: 768px) {
  .menu__img2 {
    width: 234px;
    margin-top: -112px;
  }
}



@media screen and (max-width: 520px) {
  .bd-grid {
    grid-template-columns: repeat(1, 1fr);
    display: grid;
    gap: 1.5rem;
  }

  .bd-grid2 {
    grid-template-columns: repeat(1, 1fr);
    display: grid;
    gap: 1.5rem;
  }

}


@media screen and (max-width: 767px) {
  .about__img-two {
    margin: 5%;
    /* align-items: center; */
    width: 90%;
    border-radius: 40px;
    /* width: 180px; */
  }

  .menu__img {
    margin-top: -77px;
    width: 56px;
    align-self: center;
    margin-bottom: 22px;
  }

  .menu__img2 {
    margin-top: -77px;
    width: 295px;
    align-self: center;
    margin-bottom: 22px;
  }

  .menu__content {
    margin-bottom: 75px;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: .5rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    padding: .75rem;
  }

  .button {
    margin-top: -56px;
    border-radius: 12px;
    display: inline-block;
    background-color: #979797;
    color: var(--white-color);
    padding: 1rem 2rem;
    /* font-weight: var(--font-semi-bold); */
    transition: .3s;
  }


}






.send {
  background-color: var(--first-color-send);
}


.experience {
  background: #fff;
}






@media screen and (min-width: 768px) {
  .send3 {
    max-height: 357px;
    /* background: none; */
  }
}


@media screen and (min-width: 968px) {

  .home__container3,
  .share__container3,
  .send__container3 {
    column-gap: 0rem;
  }
}

@media screen and (min-width: 968px) {
  .bd-container3 {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .send__container3 {
    margin-top: -109px;
    max-height: 354px;
    background-color: var(--first-color-send);
    padding: 2rem;
    border-radius: 1.5rem;
  }
}

@media screen and (min-width: 576px) {

  .home__container3,
  .share__container3,
  .send__container3 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}





.menu__container2 {
  grid-template-columns: repeat(4, 200px);
  column-gap: 2rem;
}


@media screen and (max-width: 576px) {
  .menu__container2 {
    grid-template-columns: repeat(2, 252px);
    column-gap: 2rem;
  }
  


}

@media screen and (max-width: 520px) {
  .menu__container2 {
    grid-template-columns: repeat(1, 350px);
    column-gap: 2rem;
  }
}






@media screen and (min-width: 768px) {
  .send3 {
    max-height: 357px;
    /* background: none; */
  }
  
}


@media screen and (min-width: 968px) {

  .home__container3,
  .share__container3,
  .send__container3 {
    column-gap: 0rem;
  }
}

@media screen and (min-width: 968px) {
  .bd-container3 {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .send__container3 {
    margin-top: -109px;
    max-height: 354px;
    background-color: var(--first-color-send);
    padding: 2rem;
    border-radius: 1.5rem;
  }
}

@media screen and (min-width: 576px) {

  .home__container3,
  .share__container3,
  .send__container3 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  
  
}

.bd-grid3 {
  display: grid;
  gap: 1.5rem;
}

.bd-container3 {
  max-width: 968px;
  width: calc(100% - 3rem);
  margin-left: var(--mb-3);
  margin-right: var(--mb-3);
}





.titulomenoradv {
  /* margin-left: -78px; */
  text-align: center;
  font-size: 12px;
}

.titulomaioradv {
  text-align: center;
  /* mmargin-top: -20px;*/
  font-size: 35px;
  margin-left: -6px;
}
.descricaoadv {
  text-align: justify;
  font-weight: 400;
  line-height: 1.4em;
  max-width: 470px;
  font-size: 15px;
  /* text-align: left; */
}


.imagemgoogle img {
  margin-left: 142px;
  position: absolute;
  /* background: #ab3131; */
  margin-top: -51px;
}

.imagemgoogle {
  position: absolute;
}


.section__title2 {
  margin-top: -60px;
  font-size: 35PX;
  color: hsl(0deg 0% 44.24%);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 15px;
}



.section__title3 {
  margin-top: -80px;
  font-size: 12PX;
  color: hsl(0deg 0% 44.24%);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: -67px;
  font-weight: 500;
  line-height: 1.9em;
}



.footer__rights img {
  margin-top: -52px;
  width: 261px;
}


.imagemrodape img {
  margin-top: -52px;
  width: 261px;
}



#footer #col1,
#footer #col2,
#footer #col3 {
  float: left;
  width: 320px;
  padding: 0px 40px 0px 40px;
}


#footer #icon {
  display: block;
  margin-bottom: 1em;
  font-size: 3em;
}

.copyright {
  overflow: hidden;
  padding: 0.5em 2em;
  border-top: 6px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  background: #717171;
}

.copyright p {
  font-family: "Poppins", Sans-serif;
  letter-spacing: 0.8px;
  font-size: 0.80em;
  color: rgba(255, 255, 255, 0.6);
}


.copyright a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}




.nav__logo img{
    max-width: 146px;
}


.iconscontato a {
  background: #fafeff;
  color: #717171;
  width: 36px;
  font-size: 23px;
    margin: 0 10px; /* Ajuste esse valor conforme necessário para o espaçamento */
}

.iconscontato {
margin-top: -31px;
margin-left: -12px;
}

.mapabrasil {
    margin-top: 1px;}
    
.mapabrasil img {
  margin-top: -14px;
  width: 236px;
  position: absolute;
  color: #717171;
  background-color: ;
  margin-left: -125px;
  opacity: 0.1;
}


.icon1 {
    font-size: 10px;
}

   .whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      text-decoration: none;
      z-index: 1000;
      transition: transform 0.3s ease;
    }

    .whatsapp-button:hover {
      transform: scale(1.1);
    }

    .whatsapp-button img {
      width: 30px;
      height: 30px;
    }
    
    
    
    
    
    

.home__container img {
  margin-top: 1px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 119%;
  object-fit: cover;
  z-index: 1;
  opacity: o.2;
  opacity: 0.2;
  filter: blur(1px);
  mask-image: ;
  mask-image: linear-gradient(to right, rgba(95, 8, 8, 0.06) 20%, rgb(216, 0, 0) 58%, rgba(255, 255, 255, 0.1) 107%);

}



 video {
            width: 100%;
            height: 100%;
            /*object-fit: cover;*/
            position: absolute;
            top: 0;
            left: 0;
            margin-top: 31px;
            margin-left: 1px;;
        }
        
        
.drann {
  text-align: center;
  font-size: 18px;
  margin-left: -6px;
}
.drannd {
  text-align: center;
  font-size: 15px;
}