@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  font-family: "Open Sans", sans-serif;
}

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/fund.svg");
  background-color: #264706;
  background-size: cover;
  background-position: top;
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  height: auto;
  text-decoration-color: white;
}
.fundOne .text-light {
  color: #ebebeb !important;
}
.fundOne .container {
  padding: 0 20vw;
  margin: 0;
  max-width: 100%;
}
.fundOne h1 {
  font-size: 2vw;
}
.fundOne h5 {
  font-size: 1.4vw;
}

.img-logo {
  width: 20vw;
}

.destaque {
  color: #f0c269;
  font-weight: 700;
}

.img-check {
  width: 3.5vw;
  height: auto;
}

.button {
  width: 40vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 1.5vw;
  padding: 1.5vh 3vw;
  color: #264706;
  background: linear-gradient(to right, #946f25, #f0c269 50%, #946f25);
  border: none;
  outline: none;
  text-decoration: none;
  border-bottom: 10px solid rgb(87, 58, 0);
  box-shadow: 0 0.5em 0.5em -0.4em rgba(0, 0, 0, 0.5);
  border-radius: 20em;
  cursor: pointer;
  transition: 0.5s;
}

.button:hover {
  filter: brightness(1.3);
  color: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

.button:active {
  transition: 0s;
  transform: rotate(-10deg);
}

@media (max-width: 1200px) {
  .fundOne h1 {
    font-size: 2.5vw;
  }
  .fundOne h5 {
    font-size: 1.9vw;
  }
  .img-logo {
    width: 25vw;
  }
  .img-check {
    width: 5vw !important;
  }
  .button {
    width: 50vw;
    font-size: 2vw;
  }
}
@media (max-width: 992px) {
  .fundOne .container {
    padding: 0 10vw;
    margin: 0;
    max-width: 100%;
  }
  .fundOne h1 {
    font-size: 3.2vw;
  }
  .fundOne h5 {
    font-size: 2.5vw;
  }
  .img-logo {
    width: 35vw;
  }
  .img-check {
    width: 5.5vw !important;
  }
  .button {
    width: 65vw;
    font-size: 2.5vw;
  }
}
@media (max-width: 768px) {
  .fundOne h1 {
    font-size: 4.3vw !important;
  }
  .fundOne h5 {
    font-size: 3.5vw;
  }
  .fundOne .container {
    padding: 0 10vw;
    margin: 0;
    max-width: 100%;
  }
  .img-logo {
    width: 45vw;
  }
  .img-check {
    width: 8vw !important;
  }
  .button {
    width: 80vw;
    font-size: 3.5vw;
  }
  .whatsapp-button svg {
    width: 6.5vw;
  }
}
@media (max-width: 576px) {
  .whatsapp-button svg {
    width: 6vw;
  }
  .fundOne .container {
    padding: 0 6vw;
    margin: 0;
    max-width: 100%;
  }
  .fundOne h1 {
    font-size: 5vw !important;
  }
  .fundOne h5 {
    font-size: 3.8vw !important;
  }
  .fundOne .cta {
    padding: 18vw 0 !important;
  }
  .img-logo {
    width: 55vw;
  }
  .img-check {
    width: 13vw !important;
    padding-right: 3vw !important;
  }
  .button {
    width: 85vw;
    font-size: 2vh;
  }
}
.fundTwo {
  background-size: cover;
  background-position: top;
  height: auto;
  background: linear-gradient(180deg, #264706, #427a18);
  background-blend-mode: overlay;
}
.fundTwo .container {
  padding: 0 20vw;
  margin: 0;
  max-width: 100%;
}
.fundTwo h1 {
  font-size: 2vw;
}

.video-container {
  position: relative;
  background-color: black;
  width: 100%;
  padding-top: 56.25%; /* Mantém proporção 16:9 */
  overflow: hidden;
  border-radius: 1rem;
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* 🔄 Mostra o vídeo inteiro com barras pretas se necessário */
  background-color: black;
  display: block;
  border-radius: 1rem;
}

.play-button {
  position: absolute;
  top: 38%;
  left: 50%;
  font-size: 64px;
  color: white;
  cursor: pointer;
  z-index: 2;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.play-button:hover {
  opacity: 1;
  transform: scale(1.5);
}

@media (max-width: 1200px) {
  .fundOne h1 {
    font-size: 2.5vw;
  }
  .button {
    width: 50vw;
    font-size: 2vw;
  }
}
@media (max-width: 992px) {
  .fundTwo .container {
    padding: 0 10vw;
    margin: 0;
    max-width: 100%;
  }
  .fundTwo h1 {
    font-size: 3.2vw;
  }
  .button {
    width: 65vw;
    font-size: 2.5vw;
  }
}
@media (max-width: 768px) {
  .fundTwo .container {
    padding: 0 10vw;
    margin: 0;
    max-width: 100%;
  }
  .fundTwo h1 {
    font-size: 4.3vw;
  }
  .button {
    width: 80vw;
    font-size: 3.5vw;
  }
  .whatsapp-button svg {
    width: 6.5vw;
  }
  .play-button {
    top: 36%;
    left: 48%;
    font-size: 50px;
  }
}
@media (max-width: 576px) {
  .whatsapp-button svg {
    width: 6vw;
  }
  .fundTwo .container {
    padding: 0 6vw;
    margin: 0;
    max-width: 100%;
  }
  .fundTwo h1 {
    font-size: 5vw;
  }
  .fundTwo .cta {
    padding: 12vw 0 !important;
  }
  .button {
    width: 85vw;
    font-size: 2vh;
  }
  img[alt=G-escura] {
    width: 6vw !important;
  }
}
.fundTree {
  background-image: url("./src/fund1.svg");
  background-color: #264706;
  background-size: cover;
  background-position: top;
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  height: auto;
  -webkit-text-decoration: white;
          text-decoration: white;
}
.fundTree .container {
  padding: 0 20vw;
  margin: 0;
  max-width: 100%;
}
.fundTree h1 {
  font-size: 2vw;
}
.fundTree h2 {
  font-size: 1.5vw;
}
.fundTree p {
  font-size: 1.2vw;
}
.fundTree .row.align-items-stretch > .col {
  display: flex;
}
.fundTree i {
  font-size: 3vw;
}

.border-van {
  border: 0.4vh solid #44672e;
  border-radius: 5vh;
}

.destaque-alt-1 {
  color: #ebebeb;
  background: #009726;
  border-radius: 2vh;
}

.destaque-alt-2 {
  color: #56ab15;
  background: #ebebeb;
  border-radius: 2vh;
}

@media (max-width: 1200px) {
  .fundTree h1 {
    font-size: 2.5vw;
  }
  .fundTree h2 {
    font-size: 2vw;
  }
  .fundTree p {
    font-size: 1.5vw;
  }
  .button {
    width: 50vw;
    font-size: 2vw;
  }
}
@media (max-width: 992px) {
  .fundTree .container {
    padding: 0 10vw;
    margin: 0;
    max-width: 100%;
  }
  .fundTree h1 {
    font-size: 3.2vw;
  }
  .fundTree h2 {
    font-size: 2vw;
  }
  .fundTree p {
    font-size: 2vw;
  }
  .button {
    width: 65vw;
    font-size: 2.5vw;
  }
}
@media (max-width: 768px) {
  .fundTree .container {
    padding: 0 10vw;
    margin: 0;
    max-width: 100%;
  }
  .fundTree h1 {
    font-size: 4.3vw;
  }
  .fundTree h2 {
    font-size: 3.5vw;
  }
  .fundTree p {
    font-size: 2.5vw;
  }
  .fundTree i {
    font-size: 5vw;
  }
  .button {
    width: 80vw;
    font-size: 3.5vw;
  }
  .whatsapp-button svg {
    width: 6.5vw;
  }
}
@media (max-width: 576px) {
  .whatsapp-button svg {
    width: 6vw;
  }
  .fundTree .container {
    padding: 0 6vw;
    margin: 0;
    max-width: 100%;
  }
  .fundTree h1 {
    font-size: 5vw;
  }
  .fundTree h2 {
    font-size: 4vw;
  }
  .fundTree p {
    font-size: 3.3vw;
  }
  .fundTree i {
    font-size: 6vw;
  }
  .cta {
    padding: 18vw 0 !important;
  }
  .button {
    width: 85vw;
    font-size: 2vh;
  }
}
.fundFour {
  background-image: url("./src/fund2.svg");
  background-size: cover;
  background-position: top;
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  height: auto;
  -webkit-text-decoration: #ebebeb;
          text-decoration: #ebebeb;
  position: relative;
}
.fundFour .container {
  padding: 0 20vw;
  margin: 0;
  max-width: 100%;
}
.fundFour h1 {
  font-size: 2vw;
}
.fundFour h2 {
  font-size: 2vw;
}
.fundFour h3 {
  font-size: 2vw;
}
.fundFour h5 {
  font-size: 1.2vw;
}
.fundFour p {
  font-size: 1vw;
}
.fundFour .img-alt1 {
  width: 40%;
  height: auto;
}
.fundFour .line {
  background-color: black;
  height: 3px;
  width: 100%;
  margin: 2rem 0;
}

.button-secundary {
  width: 40vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 1.5vw;
  padding: 1.5vh 3vw;
  color: white;
  background: linear-gradient(to right, #44672e, #8de24b 50%, #44672e);
  border: none;
  outline: none;
  text-decoration: none;
  border-bottom: 10px solid #273f18;
  box-shadow: 0 0.5em 0.5em -0.4em rgba(0, 0, 0, 0.5);
  border-radius: 20em;
  cursor: pointer;
  transition: 0.5s;
}

.button-secundary:hover {
  filter: brightness(1.3);
  color: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

.button-secundary:active {
  transition: 0s;
  transform: rotate(-10deg);
}

@media (max-width: 1200px) {
  .fundFour h1 {
    font-size: 2.5vw;
  }
  .fundFour h2 {
    font-size: 2.5vw;
  }
  .fundFour h3 {
    font-size: 2vw;
  }
  .fundFour h5 {
    font-size: 1.5vw;
  }
  .fundFour p {
    font-size: 1.5vw;
  }
  .button-secundary {
    width: 50vw;
    font-size: 2vw;
  }
}
@media (max-width: 992px) {
  .fundFour .container {
    padding: 0 10vw;
    margin: 0;
    max-width: 100%;
  }
  .fundFour h1 {
    font-size: 3.2vw;
  }
  .fundFour h2 {
    font-size: 3.2vw;
  }
  .fundFour h3 {
    font-size: 3vw;
  }
  .fundFour h5 {
    font-size: 2.2vw;
  }
  .fundFour p {
    font-size: 2vw;
  }
  .button-secundary {
    width: 65vw;
    font-size: 2.5vw;
  }
}
@media (max-width: 768px) {
  .fundFour .container {
    padding: 0 10vw;
    margin: 0;
    max-width: 100%;
  }
  .fundFour h1 {
    font-size: 4.3vw;
  }
  .fundFour h2 {
    font-size: 4.3vw;
  }
  .fundFour h3 {
    font-size: 3.8vw;
  }
  .fundFour h5 {
    font-size: 3vw;
  }
  .fundFour p {
    font-size: 3vw;
  }
  .fundFour .img-alt1 {
    width: 80%;
    height: auto;
  }
  .button-secundary {
    width: 80vw;
    font-size: 3.5vw;
  }
  .whatsapp-button svg {
    width: 6.5vw;
  }
}
@media (max-width: 576px) {
  .whatsapp-button svg {
    width: 6vw;
  }
  .fundFour .container {
    padding: 0 6vw;
    margin: 0;
    max-width: 100%;
  }
  .fundFour h1 {
    font-size: 5vw;
    padding-bottom: 1vw !important;
  }
  .fundFour h2 {
    font-size: 4vw;
  }
  .fundFour h3 {
    font-size: 3.8vw;
  }
  .fundFour h5 {
    font-size: 3.5vw;
  }
  .fundFour p {
    font-size: 3vw;
  }
  .fundFour .img-alt1 {
    width: 100%;
    height: 70%;
  }
  .fundFour .img-final-wrapper {
    display: flex;
    align-items: flex-center;
    justify-content: center;
  }
  .line {
    height: 3px;
    margin: 0;
  }
  .cta {
    padding: 18vw 0 !important;
  }
  .button-secundary {
    width: 85vw;
    font-size: 2vh;
  }
}
.fundFive {
  background-size: cover;
  background-position: top;
  height: auto;
  background: linear-gradient(180deg, #264706, black);
  background-blend-mode: overlay;
}
.fundFive h1 {
  font-size: 2vw;
}
.fundFive h2 {
  font-size: 2vw;
}
.fundFive h6 {
  font-size: 1.2vw;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.fundFive p {
  font-size: 1vw;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.fundFive i {
  font-size: 3vw;
}
.fundFive .border-van-neon {
  border: 0.4vh solid #44672e;
  box-shadow: 0 0 5px #8de24b, 0 0 10px #8de24b;
  border-radius: 5vh;
}
.fundFive .bg-end {
  background-size: cover;
  background-position: top;
  height: auto;
  background: linear-gradient(180deg, black, #264706);
  background-blend-mode: overlay;
}

@media (max-width: 1200px) {
  .fundFive h1 {
    font-size: 2.5vw;
  }
  .fundFive h2 {
    font-size: 2.5vw;
  }
  .fundFive h6 {
    font-size: 1.5vw;
  }
  .fundFive p {
    font-size: 1.5vw;
  }
  .button {
    width: 50vw;
    font-size: 2vw;
  }
  .button-secundary {
    width: 50vw;
    font-size: 2vw;
  }
}
@media (max-width: 992px) {
  .fundFive .container {
    padding: 0 10vw;
    margin: 0;
    max-width: 100%;
  }
  .fundFive h1 {
    font-size: 3.2vw;
  }
  .fundFive h2 {
    font-size: 3.2vw;
  }
  .fundFive h6 {
    font-size: 2vw;
  }
  .fundFive p {
    font-size: 2vw;
  }
  .button {
    width: 65vw;
    font-size: 2.5vw;
  }
  .button-secundary {
    width: 65vw;
    font-size: 2.5vw;
  }
}
@media (max-width: 768px) {
  .fundFive .container {
    padding: 0 10vw;
    margin: 0;
    max-width: 100%;
  }
  .fundFive h1 {
    font-size: 4.3vw;
  }
  .fundFive h2 {
    font-size: 4vw;
  }
  .fundFive h6 {
    font-size: 3vw;
  }
  .fundFive p {
    font-size: 2.5vw;
  }
  .fundFive i {
    font-size: 5vw;
  }
  .button {
    width: 80vw;
    font-size: 3.5vw;
  }
  .button-secundary {
    width: 80vw;
    font-size: 3.5vw;
  }
  .whatsapp-button svg {
    width: 6.5vw;
  }
}
@media (max-width: 576px) {
  .whatsapp-button svg {
    width: 6vw;
  }
  .fundFive .container {
    padding: 0 6vw;
    margin: 0;
    max-width: 100%;
  }
  .fundFive h1 {
    font-size: 5.5vw;
  }
  .fundFive h2 {
    font-size: 4vw;
  }
  .fundFive h6 {
    font-size: 3.5vw;
  }
  .fundFive p {
    font-size: 3vw;
  }
  .fundFive i {
    font-size: 6vw;
  }
  .cta {
    padding: 18vw 0 !important;
  }
  .button-secundary {
    width: 85vw;
    font-size: 2vh;
  }
}
footer {
  background-image: url("./src/fund2.svg");
  background-size: cover;
  background-position: top;
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  height: auto;
  -webkit-text-decoration: black;
          text-decoration: black;
  position: relative;
}
footer a {
  font-size: 1vw;
}
footer i {
  font-size: 1.5vw;
}
footer p {
  font-size: 1vw;
}

@media (max-width: 1200px) {
  footer img[alt=logo] {
    width: 30vw !important;
  }
  footer a {
    font-size: 1.5vw;
  }
  footer i {
    font-size: 2vw;
  }
  footer p {
    font-size: 1.5vw;
  }
}
@media (max-width: 992px) {
  footer img[alt=logo] {
    width: 35vw !important;
  }
  footer a {
    font-size: 2vw;
  }
  footer i {
    font-size: 2.5vw;
  }
  footer p {
    font-size: 2vw;
  }
}
@media (max-width: 768px) {
  footer img[alt=logo] {
    width: 40vw !important;
  }
  footer a {
    font-size: 2vw;
  }
  footer i {
    font-size: 2.5vw;
  }
  footer p {
    font-size: 2vw;
  }
}
@media (max-width: 576px) {
  footer img[alt=logo] {
    width: 50vw !important;
  }
  footer a {
    font-size: 3vw;
  }
  footer i {
    font-size: 3.5vw;
  }
  footer p {
    font-size: 3vw;
  }
}/*# sourceMappingURL=style.css.map */