@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  font-family: "lato", poppins;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    background-color: #25d366;
  }
  50% {
    transform: scale(1.2);
    background-color: #4be083;
  }
  100% {
    transform: scale(1);
    background-color: #25d366;
  }
}
.whatsapp-button {
  position: fixed;
  bottom: 2.5vh; /* Aproximadamente 20px */
  right: 2.5vh; /* Aproximadamente 20px */
  z-index: 1000;
  background-color: #25d366;
  border-radius: 50%;
  padding: 1.25vh; /* Aproximadamente 10px */
  transition: background-color 0.3s, transform 0.3s;
  animation: pulsate 2s infinite;
  fill: white;
}

.whatsapp-button svg {
  fill: white;
  width: 3vw; /* Aproximadamente 50px */
  height: auto;
}

.whatsapp-button:hover {
  animation: none;
  transform: scale(1.3);
}

.fundOne {
  background-image: url(./src/COZINHA2.jpg);
  background-size: cover;
  background-position: top;
  height: auto;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: overlay;
  /* Seletor para h2 dentro da section .fundOne (ou qualquer outro seletor desejado) */
}
.fundOne h1 {
  font-size: 4.4vw; /* Tamanho padrão */
  font-weight: bold;
}
.fundOne h2 {
  font-size: 1.5vw; /* Novo tamanho de fonte */
  font-family: poppins; /* Mantém a fonte Poppins */
  letter-spacing: 0.1em; /* Mantém o espaçamento de letras */
}
.fundOne img[alt=detalhe] {
  width: 18vw;
  height: auto;
}
.fundOne img[alt=logo] {
  position: absolute;
  max-width: 13vw;
  right: 10vw;
  top: 15vh;
}

.container {
  padding: 0 10vw;
  margin: 0;
  max-width: 100%;
}

.btn-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.btn-cta a {
  font-size: 1.8vw;
  color: #3b3b3b;
  font-weight: bold;
}

.btn-cta .btn-light {
  border-radius: 0;
  text-align: center;
  padding: 1vw 5vw;
  transition: transform 0.3s;
}

.btn-light:hover {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .fundOne h1 {
    font-size: 7vw;
    width: 92%;
  }
  .fundOne h2 {
    font-size: 2.5vw;
  }
  .fundOne .fs-4 {
    font-size: calc(1.275rem + 0.1vw) !important;
  }
  .fundOne img[alt=detalhe] {
    width: 30vw;
    padding: 1vh 0;
  }
  .fundOne img[alt=logo] {
    max-width: 25vw;
    top: 17vh;
    right: 5vw;
    margin: 0;
  }
  .fundOne .btn-cta a {
    font-size: 3vw;
  }
}
@media (max-width: 768px) {
  .fundOne h1 {
    font-size: 8vw;
    width: 92%;
  }
  .fundOne h2 {
    font-size: 3vw;
  }
  .fundOne .fs-4 {
    font-size: calc(1.275rem + 0.1vw) !important;
  }
  .fundOne img[alt=detalhe] {
    width: 35vw;
    padding: 1vh 0;
  }
  .fundOne img[alt=logo] {
    max-width: 25vw;
    display: flex;
    align-self: start;
    top: 17vh;
    right: 5vw;
    margin: 0;
  }
  .fundOne .btn-cta a {
    font-size: 3.5vw;
  }
}
@media (max-width: 576px) {
    .whatsapp-button { 
    animation: none;
        svg{
        width: 6vw;
        }
    }
  .fundOne h1 {
    font-size: 10vw;
    width: 100%;
  }
  .fundOne h2 {
    font-size: 3.5vw;
  }
  .fundOne .fs-4 {
    font-size: calc(1.1rem + 0.1vw) !important;
  }
  .fundOne img[alt=detalhe] {
    width: 38vw;
    padding: 0;
  }
  .fundOne img[alt=logo] {
    max-width: 30vw;
    top: 12vh;
  }
  .fundOne .btn-cta a {
    font-size: 4.5vw;
  }
}
.btn-secondary {
  background-color: #3b3b3b;
  border-radius: 0;
  text-align: center;
  padding: 1vw 5vw;
  transition: transform 0.3s;
}
.btn-secondary a {
  font-size: 1.8vw;
  font-weight: bold;
}

.btn-secondary:hover {
  transform: scale(1.1);
}

/* Cor da seta anterior */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: transparent; /* Remover o fundo */
  filter: invert(100%) grayscale(100%) brightness(0) contrast(100%);
}

/* Cor das setas ao passar o mouse */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  filter: invert(100%) grayscale(100%) brightness(0) contrast(100%);
}

@media screen and (max-width: 992px) {
  .btn-cta a {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .btn-cta a {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 576px) {
  .btn-cta a {
    font-size: 4.5vw;
  }
}
.fundTwo {
  background-image: url(./src/HOME3.jpg);
  background-size: cover;
  background-position: center;
  height: auto;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: overlay;
}
.fundTwo h1 {
  max-width: 85%;
  font-size: 6vw;
  font-weight: bold;
  font-style: italic;
}
.fundTwo p {
  max-width: 85%;
  font-family: poppins;
  font-size: 1.4vw;
}
.fundTwo .btn-cta a {
  font-size: 1.8vw;
  color: #3b3b3b;
  font-weight: bold;
}

@media screen and (max-width: 992px) {
  .fundTwo h1 {
    max-width: 95%;
    font-size: 6vw;
  }
  .fundTwo p {
    max-width: 95%;
    font-size: 2vw;
  }
  .fundTwo .btn-cta a {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .fundTwo .container {
    padding: 2vw;
  }
  .fundTwo h1 {
    max-width: 92%;
    font-size: 7vw;
  }
  .fundTwo p {
    max-width: 92%;
    font-size: 3vw;
  }
  .fundTwo .btn-cta a {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 576px) {
  .fundTwo h1 {
    max-width: 100%;
    font-size: 8vw;
    text-align: center;
  }
  .fundTwo p {
    max-width: 100%;
    font-size: 4vw;
    text-align: center;
  }
  .fundTwo .btn-cta a {
    font-size: 4.5vw;
  }
}
.fundTree {
  background-image: url(./src/QUARTO1.jpg);
  background-size: cover;
  background-position: center;
  height: auto;
  min-height: 40vh;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
}
.fundTree h1 {
  font-size: 6vw;
  font-weight: bold;
  font-style: italic;
}

.container-alt {
  padding: 0 10vw;
  margin: 0;
  max-width: 100%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  width: 100%;
}

.differences {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color: #faf9f8;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 100%;
  padding-top: 30%;
  transition: transform 0.3s;
}

.differences i {
  flex-grow: 0;
}

.icon-title {
  font-size: 1.2rem;
  font-weight: bold;
  font-style: italic;
  margin: 1rem 0;
  text-align: center;
}

.icon-text {
  font-size: 0.9rem;
  font-family: poppins;
  text-align: center;
  margin-top: 1rem;
}

.differences:hover {
  transform: scale(1.1);
}

.btn-cta a {
  font-size: 1.8vw;
  color: #3b3b3b;
  font-weight: bold;
}

@media screen and (max-width: 1300px) {
  .container-alt {
    padding: 0 2vw;
  }
}
@media screen and (max-width: 1170px) {
  .differences {
    padding: 0.5rem;
    padding-top: 30%;
  }
}
@media screen and (max-width: 992px) {
  .differences {
    padding: 1.5rem;
  }
  .fundTree h1 {
    font-size: 7vw;
  }
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .differences:nth-child(4),
  .differences:nth-child(5) {
    grid-column: span 1;
    margin-left: 15vw;
  }
  .btn-cta a {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .fundTree h1 {
    font-size: 7vw;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .differences:nth-child(4) {
    grid-column: span 1;
    margin-left: 0;
  }
  .differences:nth-child(5) {
    margin-left: 25vw;
  }
  .btn-cta a {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 576px) {
  .container-alt {
    padding: 0 10vw;
  }
  .fundTree {
    min-height: 25vh;
  }
  .fundTree h1 {
    font-size: 10vw;
  }
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .differences:nth-child(5) {
    margin-left: 0;
  }
  .differences {
    padding: 4rem;
  }
  .btn-cta a {
    font-size: 4.5vw;
  }
}
.fundFour {
  background-size: cover;
  background-position: center;
  height: auto;
  background-color: #eeeeee;
}
.fundFour h1 {
  font-size: 3vw;
  font-weight: bold;
  font-style: italic;
}
.fundFour img[alt=detalhe] {
  width: 18vw;
}
.fundFour .btn-cta a {
  font-size: 1.8vw;
  color: #3b3b3b;
  font-weight: bold;
  padding-right: 40px;
}
.fundFour img[alt=mascote] {
  width: 10vw;
  position: absolute;
  right: 24.9vw;
  top: 28%;
  transform: translateY(-50%);
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%; /* Faz com que o card ocupe toda a altura disponível */
}

.card-body {
  flex-grow: 1; /* Faz com que o conteúdo do card ocupe todo o espaço disponível */
}

.carousel-inner .row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.carousel-inner .col {
  flex: 0 0 33%;
  box-sizing: border-box;
}

@media screen and (max-width: 992px) {
  .fundFour h1 {
    font-size: 4vw;
  }
  .fundFour .btn-cta a {
    font-size: 3vw;
  }
  .fundFour img[alt=detalhe] {
    width: 22vw;
  }
  .fundFour img[alt=mascote] {
    width: 13vw;
    right: 11vw;
    top: 37.5%;
  }
}
@media screen and (max-width: 768px) {
  .fundFour h1 {
    font-size: 4vw;
  }
  .fundFour .btn-cta a {
    font-size: 3.5vw;
  }
  .fundFour img[alt=detalhe] {
    width: 22vw;
  }
  .fundFour img[alt=mascote] {
    width: 13vw;
    right: 11vw;
    top: 37.5%;
  }
  .carousel-inner .col {
    flex: 0 0 50%;
  }
  .carousel-inner .col:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .fundFour h1 {
    font-size: 6vw;
  }
  .fundFour .btn-cta a {
    font-size: 4.5vw;
  }
  .fundFour img[alt=detalhe] {
    width: 30vw;
  }
  .fundFour img[alt=mascote] {
    display: none;
  }
  .carousel-inner .col {
    flex: 0 0 100%;
  }
  .carousel-inner .col:nth-child(2) {
    display: none;
  }
}
.fundFive {
  position: relative;
  height: 100%;
}
.fundFive img[alt=detalhe] {
  width: 18vw;
}
.fundFive span {
  background-color: #3b3b3b;
  display: block;
  width: 10vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.fundFive h1 {
  font-size: 4.4vw;
  font-weight: bold;
  font-style: italic;
}
.fundFive #videoBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 2;
}
.fundFive video {
  position: relative;
  z-index: 1;
}
.fundFive .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 2vw;
  border: none;
  padding: 1vh 1.5vw;
  cursor: pointer;
  z-index: 3;
}
.fundFive .btn-cta a {
  font-size: 1.8vw;
  color: #3b3b3b;
  font-weight: bold;
}

@media screen and (max-width: 992px) {
  .fundFive img[alt=detalhe] {
    width: 20vw;
  }
  .fundFive h1 {
    font-size: 4.5vw;
  }
  .fundFive span {
    width: 2.5vw;
  }
  .fundFive .btn-cta a {
    font-size: 3vw;
  }
  .fundFive .play-button {
    font-size: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .fundFive h1 {
    font-size: 5.5vw;
  }
  .fundFive .btn-cta a {
    font-size: 3.5vw;
  }
  .fundFive img[alt=detalhe] {
    width: 22vw;
  }
}
@media screen and (max-width: 576px) {
  .fundFive .container-alt {
    padding: 1.3vw;
  }
  .fundFive h1 {
    font-size: 6vw;
  }
  .fundFive .btn-cta a {
    font-size: 4.5vw;
  }
  .fundFive img[alt=detalhe] {
    width: 30vw;
  }
  .fundFive .play-button {
    font-size: 8vw;
  }
}
footer img[alt=logo] {
  max-width: 14vw;
}
footer h2 {
  font-family: montserrat;
  font-size: 2.5vw;
  letter-spacing: 0.1em;
}
footer i {
  font-size: 1.2vw;
}
footer p {
  font-family: montserrat;
  font-size: 1.2vw;
}
footer a {
  font-family: montserrat;
  font-size: 1.2vw;
}
footer iframe {
  border: 0;
  height: 100%;
}
footer .finals h3 {
  font-family: montserrat;
  font-size: 1.2vw;
  font-weight: bold;
}
footer .finals p {
  font-size: 1vw;
}
footer .finals a {
  font-size: 1vw;
}

@media screen and (max-width: 992px) {
  footer img[alt=logo] {
    max-width: 70%;
    display: flex;
    justify-self: center;
  }
  footer h2 {
    font-size: 3.5vw;
  }
  footer i {
    font-size: 1.8vw;
  }
  footer p {
    font-size: 1.7vw;
  }
  footer a {
    font-size: 1.7vw;
  }
  footer iframe {
    padding: 5vw;
  }
  footer .finals h3 {
    font-size: 1.7vw;
  }
  footer .finals p {
    font-size: 1.7vw;
  }
  footer .finals a {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  footer h2 {
    font-size: 4.5vw;
  }
  footer i {
    font-size: 2.3vw;
  }
  footer p {
    font-size: 2.3vw;
  }
  footer a {
    font-size: 2.3vw;
  }
  footer iframe {
    padding: 5vw;
  }
  footer .finals h3 {
    font-size: 2.3vw;
  }
  footer .finals p {
    font-size: 2vw;
  }
  footer .finals a {
    font-size: 2vw;
  }
}
@media screen and (max-width: 576px) {
  footer .container-alt {
    padding: 1.3vw;
  }
  footer img[alt=logo] {
    max-width: 100%;
  }
  footer h2 {
    font-size: 4.5vw;
  }
  footer i {
    font-size: 2.5vw;
  }
  footer p {
    font-size: 2.5vw;
  }
  footer a {
    font-size: 2.5vw;
  }
  footer .finals h3 {
    font-size: 3vw;
  }
  footer .finals p {
    font-size: 2.6vw;
  }
  footer .finals a {
    font-size: 2.6vw;
  }
}/*# sourceMappingURL=style.css.map */