/*  
do NOT use absolute units for widths
this is not photoshop buddy

https://www.w3schools.com/cssref/css_units.asp

ps: I highly recommend re-factoring the whole code.
    Honestly, I think it's better to start from the scratch,
    with base on the actual design.


    But hey, that's just my two cents ¯\_(ツ)_/¯

*/

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  outline: none !important;
  box-sizing: border-box;
}

@-webkit-keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.pulsate-bck {
  display: inline-block;
  -webkit-animation: pulsate-bck 2s ease-in-out infinite both;
  animation: pulsate-bck 2s ease-in-out infinite both;
}

.banner {
  padding: 150px;
  width: 100%;
  min-height: 100vh;
  background: url("../img/banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.banner .img-marcelo {
  /* only shown between 1370px and 1450px */
  display: none;
  position: absolute;
  bottom: 0;
  right: -5%;
}

.banner .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

}

.fundobranco {
  background-color: #fff;
  max-width: 80%;
  max-height: 100%;
  border-radius: 10px 10px 10px 10px;
  margin: auto;
}

.banner .infor .logo img {
  width: 550px;
}

.banner .infor .titulo {
  font-family: "Montserrat", sans-serif;
  padding: 50px 0px 0px;
}

.banner .infor .titulo h1 {
  text-transform: uppercase;
  color: #ffa800 !important;
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 0.7rem;
}

.banner .infor .titulo h2 {
  text-transform: uppercase;
  color: #091648;
  font-size: 36px;
  font-weight: 500;
}

.banner .infor .titulo h2 span {
  font-size: 38px;
}

.banner .infor .titulo h3 {
  color: #091648;
  font-size: 26px;
  font-weight: 400;
  
}

.banner .infor .titulo h3 span.ano {
  text-align: right;
  width: 560px;
  display: block;
}

.banner .infor .titulo h4 a {
  text-transform: uppercase;
  text-decoration: none;
  color: #091648 !important;
  font-size: 24px;
  font-weight: 600;

}

.banner .infor .titulo h4 a img {
  padding: 0px 30px;
  width: 200px;
  height: 2px;
}

.banner .infor .titulo .spacer {
  height: 60px;
}

select {
  width: 100%;
  border: none;
  border-radius: 5px;
  color: rgb(0, 0, 0);
  background-color: #fff;  
  font-size: 20px;
  height: 60px;
  border: 2px solid rgb(26, 80, 158);
}

.banner .formulario {
  position: absolute;
  top: 820px;
  z-index: 10010;
  font-family: "Montserrat", sans-serif;
  color: #fff !important;
  background-color: #14408b;
  border-radius: 10px 10px;
  padding: 2.5rem 1.5625rem;
  border: 2px solid #fff;
}

.banner .formulario .titulo {
  text-align: center;
}

.banner .formulario .titulo h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #fff !important;
}

.banner .formulario .titulo h2 {
  font-size: 24px;
  font-weight: 800;
}

.banner .formulario .titulo span img {
  width: 60px;
  height: 50px;
}

.banner .formulario .titulo .spacer {
  height: 20px;
}

.banner .formulario form .campos {
  padding-bottom: 50px;
}

.banner .formulario form .campos label,
.banner .formulario form .bt-section button {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
}

.banner .formulario form .campos input {
  width: 100%;
  height: 60px;
  border: 2px solid #fff;
}

.banner .formulario form .bt-section button {
  background-color: #ffa800;
  color: #fff;
  width: 100%;
  height: 70px;
  border: none;
}

.btn-river{
  background-color: #ffa800;
  color: #fff;
  font-weight: 600;
  width: 100%;
  height: 50px;
  border: none;
}

.banner .fixed {
  position: fixed;
  top: 50% !important;
  transform: translateY(-50%);
  right: 10px;
}

.banner-2 {
  padding: 5rem 6.25rem 6.25rem 6.25rem;
  width: 100%;
  min-height: 100vh;
 background: url("../img/bg-diferenciais.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

/*
  Let the items (2 .row divs) occupy all the horizontal space
  All posterior changes to the two selectors below are made to make the items display
  better on the screen. 
*/
.banner-2 > .row > div > .item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.banner-2 > .row > div > .item > .row {
  flex-direction: column;
  gap: 1rem;
}

.banner-2 .titulo h2 {
  color: #ffa800;
  font-family: 'Roboto', sans-serif;
  font-size: 52px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

.banner-2 .titulo p {
  font-family: "Montserrat", sans-serif;
  color: #232323;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 3rem;
}

.banner-2 .item .spacer {
  height: 100px;
}

.banner-2 .item .itens {
  display: flex;
}

.banner-2 .itens:nth-child(1) {
  margin-bottom: 2rem;
}

.banner-2 .item .itens .imagem {
  width: 120px;
  height: 120px;
  border-radius: 25px;
  -webkit-box-shadow: 0px 0px 60px -33px black;
  box-shadow: 0px 0px 60px -33px black;
  background-color: #ffffff;
  padding: 30px;
  display: inline-block;
  vertical-align: middle;
}

.banner-2 .item .itens .imagem img {
  width: 60px;
}

.banner-2 .item .itens .descricao {
  display: inline-block;
  vertical-align: middle;
  padding-left: 30px;
}

.banner-2 .item .itens .descricao h1 {
  font-family: 'Roboto', sans-serif;
  color: #091648;
  font-size: 30px;
  font-weight: 600;
}

.banner-2 .item .itens .descricao p {
  font-size: 20px;
  color: #232323;
  font-weight: 400;
}

.banner-2 .item .itens .descricao p span {
  font-weight: 700;
  color: #000;
}

.galeria-imagens .item img {
  width: 100%;;
}

.banner-imagens .item img {
  width: 100%;;
}  

@media (min-width: 520px) {
  #banner_river {
    background-image: url(../img/unidades/banner-river.png);
    width: 100%;
    height: 200px;
    background-position: initial;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 30vh;
    padding: 5rem 6.25rem 6.25rem;
  
  
  }
  }


  @media (max-width: 2000px) {
    .banner .infor .titulo h1 {
      text-transform: uppercase;
      color: #ffa800 !important;
      font-size: 45px;
      font-weight: 900;
      margin-bottom: 0.7rem;
    }

    .banner .infor .titulo h2 {
      text-transform: uppercase;
      color: #091648;
      font-size: 28px;
      font-weight: 500;
    }

    
  }





@media (min-width: 380px) AND (max-width: 500px) {
  #banner_river {
    background-image: url(../img/unidades/banner-river-mobile.png);
    width: 100%;
    height: 200px;
    background-position: initial;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 30vh;
    padding: 5rem 6.25rem 6.25rem;
  
  
  }
  
}


.galeria-imagens ul.slick-dots {
  display: block;
  margin-top: 30px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.galeria-imagens ul.slick-dots li {
  display: inline-block;
  padding: 0 5px;
}

.galeria-imagens ul.slick-dots li button {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 0;
  background: #ffffff;
  border: none;
  border-radius: 50%;
}

.galeria-imagens ul.slick-dots li.slick-active button {
  background: #3f5947;
}

.banner-3 {
  padding: 5rem 6.25rem 6.25rem 6.25rem;
  width: 100%;
  background: url("../img/banner-3.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.banner-3 .texto h3 {
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: -0.5rem;
}

.banner-3 .texto h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 52px;
  font-weight: 600;
  color: #ffa800;
  text-transform: uppercase;
}

.banner-3 .texto p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 2rem;
  color: #ffffff;
}

.banner-3 .imagem {
  display: flex;
  justify-content: center;
  padding: 50px 30px 0px;
}

.banner-3 .imagem .img1 img {
  
  height: 100%;
  width: 150px;
  border-radius: 50%;
}

.banner-3 .imagem .img2 img {
  
  margin: 80px 0px 0px;
  height: 250px;
  width: 250px;
}

.banner-3 .imagem .img3 img {
  
  margin: 300px -500px 0px;
  height: 240px;
  width: 240px;
  border-radius: 50%;
}

.banner-3 .divisor {
  display: block;
  width: 100%;
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: 9;
}

.banner-3 .divisor img {
  width: 100%;
}

.section-perfil-investidor {
  padding: 5rem 6.25rem 6.25rem 6.25rem;
}

.section-perfil-investidor h2 {
  color: #3f5947;
  font-family: "Caveat", cursive;
  font-size: 76px;
  font-weight: 600;
}

.section-perfil-investidor p {
  color: #232323;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 2rem;
}

.sucesso {
  padding: 5rem 6.25rem 6.25rem 6.25rem;
  background: url("../img/banner-3.png");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.sucesso .titulo h1 {
  font-family: "Caveat", cursive;
  font-size: 76px;
  font-weight: 600;
  line-height: 1;
}

.sucesso .titulo p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 2rem;
}

.banner-4 {
  padding: 5rem 6.25rem 6.25rem 6.25rem;
  width: 100%;
  min-height: 100vh;
  background: url("../img/banner-4.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
}

.banner-4 .spacer {
  height: 100px;
}

.banner-4 .divisor {
  display: block;
  width: 100%;
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: 9;
}

.banner-4 .divisor img {
  width: 100%;
}

.modelo {
  padding: 5rem 6.25rem 6.25rem 6.25rem;
  width: 100%;
  min-height: 100vh;
  background: url("../img/modelo.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.modelo2 {
  padding: 5rem 6.25rem 6.25rem 6.25rem;
  width: 100%;
  min-height: 100vh;
  background: url("../img/modelo.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.modelo .spacer {
  height: 50px;
}

.modelo2 .spacer {
  height: 50px;
}

.modelo .titulo h3 {
  color: #232323;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: -0.5rem;
}

.modelo2 .titulo h3 {
  color: #232323;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: -0.5rem;
}

.modelo .titulo h2 {
  color: #ffa800;
  font-family: 'Roboto', sans-serif;
  font-size: 52px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.modelo2 .titulo h2 {
  color: #ffa800;
  font-family: 'Roboto', sans-serif;
  font-size: 52px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modelo .galeria-modelo .item .imagem img {
  width: 100%;
  border-radius: 30px;
  -webkit-box-shadow: 7px 10px 9px 0px rgba(235, 235, 235, 0.75);
  box-shadow: 7px 10px 9px 0px rgba(235, 235, 235, 0.75);
  margin: auto;
}

.modelo2 .galeria-modelo2 .item .imagem img {
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 7px 10px 9px 0px rgba(235, 235, 235, 0.75);
  box-shadow: 7px 10px 9px 0px rgba(235, 235, 235, 0.75);
}

.galeria-modelo .item {
  cursor: grab;
}
.galeria-modelo2 .item {
  cursor: grab;
}

.galeria-modelo .item:active {
  cursor: grabbing;
}
.galeria-modelo2 .item:active {
  cursor: grabbing;
}

.modelo .galeria-modelo .item .texto {
  padding: 30px 0px;
}
.modelo2 .galeria-modelo2 .item .texto {
  padding: 30px 0px;
}

.modelo .galeria-modelo .item .texto h4 {
  color: #091648;
  font-family: 'Roboto', sans-serif;
  font-size: 52px;
  font-weight: 600;
}
.modelo2 .galeria-modelo2 .item .texto h4 {
  color: #091648;
  font-family: 'Roboto', sans-serif;
  font-size: 52px;
  font-weight: 600;
}

.modelo .galeria-modelo .item .texto p {
  color: #232323;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
}
.modelo2 .galeria-modelo2 .item .texto p {
  color: #232323;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-align: justify;
}

.modelo .galeria-modelo .item .texto p span {
  font-weight: 600;
  color: #1c1f1d;
}
.modelo2 .galeria-modelo2 .item .texto p span {
  font-weight: 600;
  color: #1c1f1d;
}

.modelo .galeria-modelo .item .texto h2 {
  margin: 0 auto;
  text-align: center;
  padding: 10px 55px;
  background-color: rgb(255, 223, 48) !important;
  color: #000;
  font-family: "Caveat", cursive;
  font-weight: 400;
  font-size: 24px;
  width: 500px;
  height: 50px;
  border-radius: 50px;
}
.modelo2 .galeria-modelo2 .item .texto h2 {
  margin: 0 auto;
  text-align: center;
  padding: 10px 55px;
  background-color: rgb(255, 223, 48) !important;
  color: #000;
  font-family: "Caveat", cursive;
  font-weight: 400;
  font-size: 24px;
  width: 500px;
  height: 50px;
  border-radius: 50px;
}

.modelo .galeria-modelo .item .texto h2 a {
  text-decoration: none;
  color: #3f5947;
  font-family: "Caveat", cursive;
  font-weight: 400;
  font-size: 22px;
}

.modelo2 .galeria-modelo2 .item .texto h2 a {
  text-decoration: none;
  color: #3f5947;
  font-family: "Caveat", cursive;
  font-weight: 400;
  font-size: 22px;
}

.slick-arrow {
  border-radius: 50px;
}

.modelo .galeria-modelo ul.slick-dots {
  display: block;
  margin-top: 30px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.modelo2 .galeria-modelo2 ul.slick-dots {
  display: block;
  margin-top: 30px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.modelo .galeria-modelo ul.slick-dots li {
  display: inline-block;
  padding: 0 5px;
}
.modelo2 .galeria-modelo2 ul.slick-dots li {
  display: inline-block;
  padding: 0 5px;
}

.modelo .galeria-modelo ul.slick-dots li button {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 0;
  background: #ffa800;
  border: none;
  border-radius: 50%;
}
.modelo2 .galeria-modelo2 ul.slick-dots li button {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 0;
  background: #ffa800;
  border: none;
  border-radius: 50%;
}

.modelo .galeria-modelo ul.slick-dots li.slick-active button {
  background: #091648 !important;
}
.modelo2 .galeria-modelo2 ul.slick-dots li.slick-active button {
  background: #091648 !important;
}

.modelo .galeria-modelo .slick-prev {
  padding: 20px;
  position: absolute;
  left: -100px;
  background: #eeeeee;
  border: none;
  color: #ffffff;
  font-size: 0;
  z-index: 999;
}
.modelo2 .galeria-modelo2 .slick-prev {
  padding: 20px;
  position: absolute;
  left: -100px;
  background: #eeeeee;
  border: none;
  color: #ffffff;
  font-size: 0;
  z-index: 999;
}

.modelo .galeria-modelo .slick-prev:before {
  display: block;
  width: 25px;
  height: auto;
  content: url("../icons/left-arrow.svg");
}
.modelo2 .galeria-modelo2 .slick-prev:before {
  display: block;
  width: 25px;
  height: auto;
  content: url("../icons/left-arrow.svg");
}

.modelo .galeria-modelo .slick-next {
  padding: 20px;
  position: absolute;
  right: -100px;
  background: #eeeeee;
  border: none;
  color: #ffffff;
  font-size: 0;
  z-index: 999;
}
.modelo2 .galeria-modelo2 .slick-next {
  padding: 20px;
  position: absolute;
  right: -100px;
  background: #eeeeee;
  border: none;
  color: #ffffff;
  font-size: 0;
  z-index: 999;
}

.modelo .galeria-modelo .slick-next:before {
  display: block;
  width: 25px;
  height: auto;
  content: url("../icons/right-arrow.svg");
}
.modelo2 .galeria-modelo2 .slick-next:before {
  display: block;
  width: 25px;
  height: auto;
  content: url("../icons/right-arrow.svg");
}

.video {
  position: relative;
  z-index: 9999;
}

.video h2 {
  color: #3f5947;
  font-family: "Caveat", cursive;
  font-size: 4.75rem;
  font-weight: 600;
  padding: 0 9.375rem 2rem 9.375rem;
  text-align: center;
  line-height: 0.8;
  margin-bottom: 2rem;
}

.video .youtube {
  width: 100%;
  min-height: 680px;
  margin: 0 auto;
  background-color: #000;
  margin-bottom: 0;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  cursor: pointer;
}

.video .youtube iframe {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.video .youtube img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0px;
  left: 0;
  opacity: 1;
  cursor: pointer;
  position: absolute;
}

.video .youtube .play-button {
  position: absolute;
  cursor: pointer;
  width: 150px;
  height: 150px;
  background-color: #ffffff;
  padding: 35px 50px;
  font-size: 24px;
  -webkit-box-shadow: 0px 5px 20px #000000;
  box-shadow: 0px 5px 20px #000000;
  z-index: 1;
  border-radius: 50%;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.video .youtube .play-button svg {
  width: 60px;
  height: 80px;
}

.video .youtube .play-button svg path {
  fill: #252120;
}

.banner-5 {
  width: 100%;
  background: url("../img/banner-5.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  position: relative;
  z-index: 9999;
}

.banner-5 .cafe img {
  position: absolute;
  width: 450px;
  top: -200px;
  left: 0;
}

.banner-5 .titulo {
  text-align: left;
  margin-top: 8rem;
}

.banner-5 .titulo h2 {
  color: #ffffff;
  font-weight: 300;
  font-size: 28px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: -0.5rem;
}

.banner-5 .titulo h1 {
  color: #eddd9e;
  font-weight: 600;
  font-size: 86px;
  font-family: "Caveat", cursive;
}

.banner-5 .galeria-video .item + .item {
  margin-top: 1rem;
}

.banner-5 .galeria-video .item .youtube-dep {
  width: 100%;
  min-height: 400px;
  margin: 0 auto;
  background-color: #000;
  margin-bottom: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.banner-5 .galeria-video .item .youtube-dep iframe {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.banner-5
  .galeria-video
  .item
  .youtube-dep
  img.banner-5
  .galeria-video
  .item
  .youtube-dep
  img {
  top: -50%;
  transform: translateY(-50%);
  left: 0;
  opacity: 1;
  cursor: pointer;
  position: absolute;
}

.banner-5 .youtube-dep img {
  width: 100%;
}

.banner-5 .galeria-video .item .youtube-dep .play-button {
  position: absolute;
  cursor: pointer;
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  padding: 25px 35px;
  font-size: 24px;
  -webkit-box-shadow: 0px 5px 20px #000000;
  box-shadow: 0px 5px 20px #000000;
  z-index: 1;
  border-radius: 50%;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.banner-5 .galeria-video .item .youtube-dep .play-button svg {
  width: 40px;
  height: 50px;
}

.banner-5 .galeria-video .item .youtube-dep .play-button svg path {
  fill: #252120;
}

.banner-5 .galeria-video ul.slick-dots {
  display: block;
  margin-top: 30px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.banner-5 .galeria-video ul.slick-dots li {
  display: inline-block;
  padding: 0 5px;
}

.banner-5 .galeria-video ul.slick-dots li button {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 0;
  background: #eddd9e;
  border: none;
  border-radius: 50%;
}

.banner-5 .galeria-video ul.slick-dots li.slick-active button {
  background: #3f5947;
}

.banner-5 .galeria-video .slick-prev {
  padding: 20px;
  position: absolute;
  left: -10%;
  background: #eeeeee;
  border: none;
  color: #ffffff;
  font-size: 0;
  z-index: 999;
}

.banner-5 .galeria-video .slick-prev:before {
  display: block;
  width: 25px;
  height: auto;
  content: url("../icons/left-arrow.svg");
}

.banner-5 .galeria-video .slick-next {
  padding: 20px;
  position: absolute;
  right: -10%;
  background: #eeeeee;
  border: none;
  color: #ffffff;
  font-size: 0;
  z-index: 999;
}

.banner-5 .galeria-video .slick-next:before {
  display: block;
  width: 25px;
  height: auto;
  content: url("../icons/right-arrow.svg");
}

.variedade {
  position: relative;
  z-index: 9999;
  padding: 5rem 6.25rem 6.25rem 6.25rem;
  background-color: #ffffff;
}

.variedade .titulo {
  text-align: center;
}

.variedade .titulo h3 {
  color: #232323;
  font-size: 26px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: -0.25rem;
}

.variedade .titulo h2 {
  color: rgb(255, 223, 48);
  font-family: 'Roboto', sans-serif;
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.galeria-produto .item {
  cursor: grab;
}

.galeria-produto .item:active {
  cursor: grabbing;
}

.galeria-produto .splide__slide {
  display: flex;
  justify-content: center;
}

.galeria-produto .splide__arrow {
  background-color: #962626;
}

.galeria-produto .splide__arrow svg {
  fill: #fff;
}

.galeria-produto .splide__track {
  cursor: grab;
}

.galeria-produto .splide__track:active {
  cursor: grabbing;
}

.galeria-produto .splide__pagination {
  bottom: -8%;
}

.galeria-produto .splide__pagination__page {
  background: #473c3c;
}

.galeria-produto .splide__pagination__page.is-active {
  background: #7a2426;
  opacity: 1;
}

.variedade .galeria-produto .item img {
  width: 100%;
}
.whatsapp-container {
  position: fixed;
  bottom: 15%;
  left: 2%;
  z-index: 10004;
  display: flex;
  gap: 0.25rem;
  align-items: center;
  /* width: 4rem; */
  width: clamp(14rem, 12.6429rem + 6.7857vw, 18.75rem);
  max-width: 18.75rem;
  height: clamp(3.25rem, 3.0357rem + 1.0714vw, 4rem);
  background-color: #25d366;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 0.1875rem 0.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: transform 250ms ease-in-out;
}

.whatsapp-container:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.whatsapp-container span {
  font-size: clamp(0.875rem, 0.8036rem + 0.3571vw, 1.125rem);
  font-weight: 500;
  color: #000;
}
.whatsapp-container .tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  right: -200%;
}

.whatsapp-container img {
  width: 30%;
}

.whatsapp-container:hover .tooltip-text {
  visibility: visible;
}

.barra-fixa {
  position: fixed;
  bottom: 0;
  z-index: 10000;
  width: 100%;
  background: rgb(255, 204, 0);
  padding: 15px;
}

.barra-fixa .row {
  align-items: center;
  margin-bottom: 0;
}

.barra-fixa .row span {
  color: #000;
  font-weight: bold;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

.barra-fixa .row .btn-barra {
  display: block;
  padding: 10px;
  color: #fff;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  background-color: rgb(26, 80, 158);
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 20px;
  background-color: rgb(10, 54, 116);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 10005;
}

.footer p {
  margin: 0;
}

.footer a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer.footer.footer.footer svg {
  width: 2.5rem;
  height: 2.5rem;
  transition: color 250ms ease-in-out;
}

.footer.footer.footer svg:hover {
  color: #bfbfbf;
  cursor: pointer;
}

.section-obrigado {
  padding: 150px;
  min-height: 95vh;
  background: url("../img/banner.png");
  background-size: cover;
  background-position: right;
  width: 100%;
}

.section-obrigado .logo {
  width: 250px;
}

.section-obrigado h1 {
  display: block;
  margin-top: 80px;
  color: #091648;
  font-size: 36px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}

.section-obrigado h2 {
  display: block;
  color: #091648;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.section-obrigado .btn-whatsapp {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  color: #000;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  background: rgb(255, 168, 0)!important;
  border: none;
  border-radius: 25px;
  text-transform: uppercase;
  text-decoration: none;
}
/*# sourceMappingURL=app.css.map */
