* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
}

:root {
  --yellow: #E2E046;
  --acqua: #3EBDB2;
  --white: white;
  --blue: #113759;
  --orange: #F37343;
}

body,
html {
  width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.gtranslate_wrapper {
  display: flex;
  justify-content: end;
}
.gtranslate_wrapper a.glink img {
  width: 50px;
}

#openPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--orange);
  cursor: pointer;
  border: 1px solid var(--white);
  font-weight: 800;
  border-radius: 10px;
  color: var(--white);
  height: 40px;
  width: min(430px, 80vw);
  font-size: clamp(0.9rem, 2vw, 1rem);
  text-align: center;
  padding: 0 30px;
  text-decoration: none;
}
#openPopup:hover {
  animation: pulseEffect 0.6s ease-out;
}

.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 350px;
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

.b24-form span {
  font-size: 13px !important;
  font-weight: 200 !important;
  color: var(--blue) !important;
}

.b24-form input {
  padding: 0 !important;
  padding-left: 10px !important;
  background-color: #fff !important;
  padding-top: 25px !important;
}

.b24-form input::-moz-placeholder {
  display: none !important;
}

.b24-form input::placeholder {
  display: none !important;
}

.b24-form-control-checkbox .b24-form-control,
.b24-form-control-radio .b24-form-control,
.b24-form-control-product .b24-form-control {
  min-height: 10px !important;
}

.b24-form-header-title {
  display: none;
}

.b24-form-field {
  margin-bottom: 0 !important;
}

.b24-form-header {
  display: none;
}

.b24-form-field-layout-section {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
  width: 400px;
  max-height: 80vh;
  overflow-y: auto;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  cursor: pointer;
  z-index: 100;
}

.form-container {
  display: none;
}

.wrapper {
  width: 100%;
}

/* Remove a borda e personaliza a cor do fundo */
::-webkit-scrollbar {
  width: 10px;
}

/* Cor da trilha (fundo da barra) */
::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 5px;
  border: none;
}

/* Cor da barra de rolagem */
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 5px;
  border: none;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--yellow);
}

.cursor {
  position: fixed;
  width: 15px;
  height: 15px;
  background: radial-gradient(circle, var(--orange) 0%, var(--yellow) 100%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease-out;
}

#ctaBtn {
  border: 1px solid var(--white);
  border-radius: 12px;
  font-weight: bold;
  background-color: var(--acqua);
  color: var(--white);
  text-decoration: none;
  padding: 5px 40px;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  animation: pulseEffect 1.5s infinite ease-out;
}

header {
  background-color: var(--acqua);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10%;
  z-index: 200;
  position: fixed;
  width: 100%;
  border-bottom: 1px solid var(--white);
}
header img {
  width: 120px;
}

#home {
  background: url(./../assets/bgHome.webp) no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 100px;
  padding-bottom: 50px;
}
#home iframe {
  width: min(90%, 800px);
  border-radius: 15px;
}
#home h1 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--orange);
  text-align: center;
}
#home span {
  color: var(--acqua);
  animation: colorChange 7s infinite linear;
}
#home p {
  text-align: center;
  color: var(--blue);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
}
#home p span {
  color: var(--orange);
  font-weight: 700;
}

#secondSection {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--orange);
  padding: 40px;
}
#secondSection .carouselPhoto {
  width: 90%;
}
#secondSection .carouselPhoto .slick-dots li button:before {
  color: var(--blue);
  opacity: 1;
  font-size: 7px;
}
#secondSection .carouselPhoto .slick-dots li.slick-active button:before {
  color: var(--acqua);
}
#secondSection .carouselPhoto img {
  max-width: 280px;
  margin-left: 10px;
}

.carousel-container {
  position: relative;
  width: 90%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}
.carousel-container .slick-dots li button:before {
  color: var(--acqua);
  opacity: 1;
  font-size: 7px;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.video-item {
  flex: 0 0 33.33%;
  padding: 5px;
}

iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.btnCarrossel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

#sectionThree {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(./../assets/bgSection3.webp) no-repeat center/cover;
  padding: 40px 10px;
  gap: 30px;
}
#sectionThree h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--acqua);
  text-align: center;
}
#sectionThree iframe {
  width: min(90%, 800px);
  border-radius: 15px;
}
#sectionThree p {
  text-align: center;
  color: var(--blue);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
}
#sectionThree p span {
  color: var(--orange);
  font-weight: 700;
}

#sectionFour {
  background-color: var(--orange);
  padding-top: 30px;
}
#sectionFour .containerIntern {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#sectionFour .containerBoxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#sectionFour .containerBoxes div {
  background-color: var(--acqua);
  border: 1px solid var(--white);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 320px;
  padding: 10px;
  animation: colorChangeContainer 4s linear infinite, shake 8s linear infinite;
}
#sectionFour .containerBoxes div span {
  color: var(--blue);
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.4rem);
  text-align: center;
}
#sectionFour .containerBoxes div p {
  font-size: 14px;
}
#sectionFour h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--white);
  text-align: center;
}

#sectionFive {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: url(./../assets/bgcontribuicao.webp) no-repeat center/cover;
}
#sectionFive h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--white);
  text-align: center;
}
#sectionFive span {
  font-weight: 800;
  color: var(--orange);
  font-size: clamp(1rem, 2vw, 1.4rem);
}
#sectionFive .containerBtns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5%;
}
#sectionFive .containerBtns button {
  background-color: var(--orange);
  cursor: pointer;
  border: 1px solid var(--white);
  font-weight: 800;
  border-radius: 10px;
  color: var(--white);
  height: 40px;
  width: 250px;
  font-size: clamp(1rem, 2vw, 1.2rem);
}
#sectionFive .containerBtns button:hover {
  animation: pulseEffect 0.6s ease-out;
}

#sectionSix {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 10px;
  background: url(./../assets/bgLastSection.webp) no-repeat center/cover;
}
#sectionSix h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--orange);
  text-align: center;
}
#sectionSix p {
  text-align: center;
  color: var(--blue);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  margin-bottom: 30px;
  margin-top: 5px;
}

#sectionSeven {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#sectionSeven h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-align: center;
  color: var(--orange);
  font-weight: 500;
  padding-bottom: 10px;
}
#sectionSeven p {
  color: var(--blue);
  font-size: clamp(1rem, 2vw, 1.1rem);
}
#sectionSeven #botao-leia-mais {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: var(--acqua);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
#sectionSeven #texto-completo {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  overflow: hidden;
  max-height: 150px;
  transition: max-height 0.5s ease;
}
#sectionSeven #texto-completo #ctaBtn {
  margin: 20px;
  background-color: var(--orange);
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--blue);
  padding-top: 10px;
}
footer div {
  background-color: var(--orange);
  width: 100%;
}
footer div a img {
  padding-top: 10px;
}
footer div p {
  color: var(--white);
  text-align: center;
  font-size: 12px;
  padding: 10px;
}

@keyframes colorChange {
  0% {
    color: var(--blue);
  }
  25% {
    color: var(--acqua);
  }
  50% {
    color: var(--orange);
  }
  75% {
    color: var(--yellow);
  }
  100% {
    color: var(--blue);
  }
}
@keyframes pulseEffect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes colorChangeContainer {
  0% {
    background-color: var(--orange);
  }
  25% {
    background-color: var(--acqua);
  }
  50% {
    background-color: var(--orange);
  }
  75% {
    background-color: var(--yellow);
  }
  100% {
    background-color: var(--orange);
  }
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 1200px) {
  #sectionFour {
    background-color: var(--orange);
    padding-top: 30px;
  }
  #sectionFour h2 {
    padding-bottom: 30px;
  }
  #sectionFour img {
    width: 90%;
  }
  #sectionFour .containerIntern {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #sectionFive .containerBtns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .video-item {
    flex: 0 0 100%;
  }
  iframe {
    height: 350px;
  }
  #ctaBtn {
    font-size: 15px;
  }
}/*# sourceMappingURL=style.css.map */