/* ====== First Section ====== */
#first_section {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  height: 100vh;
}
#first_infos { 
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  letter-spacing: -1px;
}
#first_title{
  font-size: 1.5rem;
  font-weight: bold;
}
#first-spn {
  font-weight: bold;
  background: linear-gradient(90deg, #84ff9f, #07A14F, #84ff9f);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 4s infinite ease-in-out;
}
@keyframes gradient-move {
  0% {
    background-position: 0%;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0%;
  }
}
#first_p p {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--secondary-color);
}
#first_p span {
  font-weight: bold;
}
#first_clients {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 15px;
  width: auto;
  max-width: 400px;
}
#first_title_clients {
  width: auto;
  padding: 5px;
}
#first_title_clients h3, #first_title_clients span {
  font-size: 0.9rem;
  letter-spacing: -.9px;
}
#first_title_clients span {
  color: #2BAC59;
  font-weight: bold;
}
#first_img_clients {
  display: flex;
  align-items: center;
  width: auto;
  margin-left: 12px;
}
#first_img_clients img {
  border-radius: 55%;
  margin-left: -12px;
  height: 50px;
  width: 50px;
}
#first_btn {
  margin-top: 25px;
}
#first_button {
  text-decoration: none;
  display: inline-block;
  padding: 22px;
  letter-spacing: .2px;
  width: 100%;
  background: linear-gradient(70deg, #55df73 0%, #009b4b 100%);
  text-align: center;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-color); 
  text-transform: uppercase;
  opacity: .9;
  transition: all 0.3s ease;
}
#first_button:hover {
  opacity: 1;
  color: #0B1015;
  font-weight: bolder;
  transform: scale(1.05);
  background: linear-gradient(70deg, #55df73 100%, #009b4b 0%);
}
/* Aside */
#first_aside {
  width: 100%;
  overflow: visible; 
}
#first_img img {
  height: 100%;
  margin-left: 50px;
  width: 100%;
}
/* ====== Responsividade ====== */
@media (max-width: 600px) {
  #first_section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 25px;
  }
  #first_infos {
    width: 100%;
    text-align: center;
  }
  #first_title h1 {
    font-size: 1.4rem;
  }
  #first_p p {
    font-size: 1rem;
  }
  #first_clients {
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  #first_title_clients {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  #first_img_clients {
    width: 100%;
    justify-content: center;
  }
  #first_img_clients img {
    width: 40px;
    height: 40px;
  }
  #first_btn {
    width: 100%;
    margin-top: 20px;
    color: var(--primary-color);
  }
  #first_button {
    width: 100%;
    font-size: 1rem;
    font-weight: bolder;
    padding: 15px;
  }
  #first_aside {
    margin-top: 20px;
    width: 100%;
  }
  #first_img img {
    margin: 0 auto;
    height: auto;
    width: 100%;
  }
}
@media (max-width: 320px) {
  #first_title h1 {
    font-size: .9rem;
    text-align: center;
  }
  #first_p p {
    font-size: 0.9rem;
  }
  #first_button {
    font-size: 1rem;
    padding: 15px;
    color: var(--primary-color);
    font-weight: bold;
  }
  #first_img_clients img {
    width: 35px;
    height: 35px;
  }
}
/* end section1 */

/* ====== Second Section ====== */
#second_section {
  min-height: 500px;
  display: flex;
  justify-content: space-between;
  padding: 22px 0 10px 0;
  flex-wrap: wrap;
}
#container {
  width: 50%;
  margin-top: 40px;
  letter-spacing: -1px;
}
#second_title {
  padding: 15px 2px;
  margin-bottom: 25px;
}
#second_title h2 {
  font-size: 2rem;
}
#second_title span {
  color: #53dd72;
}
#second_cards {
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#second_cards h3 {
  font-size: 1.3rem;
  margin: 20px 0 0 0;
  font-weight: 400;
  letter-spacing: -1.2px;
}
#second_cards span {
  color: #53dd72;
  font-weight: 500;
  letter-spacing: -1.2px;
  font-size: 1.3rem;
}
#second_cards .card1,
#second_cards .card2 {
  border: 2px solid #53dd72;
  border-radius: 8px;
  padding: 30px 0;
  margin: 15px 0 25px 0;
  width: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease-in-out;
}
#second_cards .card1:hover,
#second_cards .card2:hover {
  background: #83ffa013;
  cursor: pointer;
  transform: scale(1.1);
}
#second_cards .card1 p,
#second_cards .card2 p {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -1.1px;
  text-align: left;
  color: var(--secondary-color);
}
#second_cards .icon {
  height: 50px;
  width: 50px;
}
#second_form {
  border-radius: 10px 10px 0 0;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
#second_form h3 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--primary-color);
  margin: 25px 0;
  text-align: center;
  animation: pulseH3 2s infinite;
}
@keyframes pulseH3 {
  0%{
    transform: scale(1);
  }50%{
    transform: scale(1.05);
    color: #009b4b;
  }100%{
    transform: scale(1);
  }
}
#second_form #form {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 2.5px solid #009b4b;
  border-radius: 10px 10px 0 0;
  height: 98%;
  width: 600px;
  gap: 15px;
}
#second_form::before,
#second_form::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2.5px;
  background: linear-gradient(to bottom, rgba(0, 155, 75, 1), rgba(0, 155, 75, 0));
  z-index: 0;
  height: 700px;
}
#second_form::before {
  left: 0;
  border-radius: 10px 0 0 10px;
}
#second_form::after {
  right: 0;
  border-radius: 0 10px 10px 0;
}
#form input,
#form select {
  height: 65px;
  width: calc(100% - 100px);
  border: 2px solid #343434;
  border-radius: 8px;
  transition: all 0.3s ease;
}
#form input {
  background: none;
  color: #009b4b;
  padding: 0 10px 0 20px;
}
#form input:focus {
  border: 2px solid #009b4b;
}
#form input:focus::placeholder {
  color: #009b4b;
}
#form select {
  background-color: transparent;
  color: var(--secondary-color);
  padding: 0 20px;
  cursor: pointer;
}
#form option {
  color: var(--primary-color);
  background-color: var(--grey-color);
  font-family: 'Sora';
}
#second_btn {
  padding: 22px;
  letter-spacing: 0.2px;
  width: 85%;
  background: linear-gradient(70deg, #55df73 0%, #009b4b 100%);
  text-align: center;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  opacity: 0.9;
  transition: 0.3s ease;
}
#second_btn:hover {
  opacity: 1;
  color: #0B1015;
  font-weight: bolder;
  background: linear-gradient(70deg, #55df73 100%, #009b4b 0%);
  transform: scale(1.02);
}
/* Aside */
#second_aside {
  max-width: 700px;
  height: 100%;
}
#second_logo {
  width: 200px; 
  height: auto; 
  margin-top: 10px;
}
/* ====== Responsividade ====== */
@media (max-width: 768px) {
  #second_section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: -55px;
  }
  #container {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  #second_title h2 {
    font-size: 1.8rem;
  }
  #second_cards {
    width: 100%;
    gap: 10px;
  }
  #second_cards .card1,
  #second_cards .card2 {
    width: 100%;
    padding: 20px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #second_cards .card1 p,
  #second_cards .card2 p {
    font-size: .9rem; 
    letter-spacing: -1.1px;
    text-align: left;
  }
  #second_form{
    margin-top: 20px;
  }
  #second_form #form {
    width: 100%;
    padding: 0 30px;
  }
  #second_form h3 {
    font-size: 1.3rem;
  }
  #form input,
  #form select {
    width: 100%;
  }
  #second_btn {
    font-size: 1.2rem;
    padding: 18px; 
    width: 100%; 
    letter-spacing: 0.15px;
  }
  #second_logo {
    width: 160px;
  }
}
@media (max-width: 480px) {
  #second_title h2 {
    font-size: 1.4rem;
  }
  #second_form h3 {
    font-size: 1.1rem;
  }
  #second_btn {
    font-size: 1rem; 
    padding: 20px 10px;
    width: 100%;
    letter-spacing: 0.1px;
  }
  #form input,
  #form select {
    padding-left: 10px;
  }
  #second_logo {
    width: 150px;
  }
}
/* end section 2 */
/* ====== Third Section ====== */
#third_section {
  height: 1220px;
  width: 100%;
  font-family: var(--primary-font);
  letter-spacing: -0.7px;
}
#third_images {
  display: none; /* Esconde as imagens */
}
#third_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 100%;
  gap: 18px;
}
#third_container h3 {
  font-size: 1.6rem;
  text-align: center;
}
#third_container span {
  color: #84ff9f;
  font-weight: 700;
}
#third_container p {
  font-size: 1.2rem;
}
#third_line {
  width: 50%;
  height: 2px; 
  background: linear-gradient(70deg,transparent 0%,#00b055 50%, transparent 100%);
}

/* Método */
#third_metodo {
  height: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#third_metodo img {
  height: auto; 
  width: 900px; 
  object-fit: cover; 
  animation: colorShift 1.7s infinite; 
}
@keyframes colorShift {
  0% {
    filter: brightness(1) contrast(1); 
  }
  50% {
    filter: brightness(1.1) contrast(1.1); 
  }
  100% {
    filter: brightness(1) contrast(1); 
  }
}
#third_cards {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  height: 300px;
  width: 100%;
}
#third_cards_container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 100%;
}
#third_cards_container .glass {
  position: relative;
  width: 180px;
  height: 200px;
  background: linear-gradient(180deg, #103d2e, #092218);
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  border-radius: 10px;
  margin: 0 -45px;
  backdrop-filter: blur(10px);
  transform: rotate(calc(var(--r) * 1deg));
}
#third_cards_container:hover .glass {
  transform: rotate(0deg);
  margin: 0 10px;
}
#third_cards_container .glass::before {
  content: attr(data-text);
  color: var(--primary-color);
  font-weight: 400;
  position: absolute;
  background: linear-gradient(180deg, #103d2e22, #0922182a);
  bottom: 0;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
}
#third_cards_container p {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
  color: #84ff9f;
  text-align: center;
  font-weight: 500;
  font-size: 1.1rem;
}
#third_cards_container:hover p {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}
#third_btn {
  height: 150px;
  width: 100%;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#third_btn .button {
  height: 75px;
  width: 500px;
  background: linear-gradient(90deg, #32b15c, #9dfc93);
  border-radius: 12px;
  color: #0b1a1c;
  font-weight: bolder;
  font-size: 1.4rem;
  text-align: center;
  cursor: pointer;
  box-shadow: -2px 4px 5px 4px #0a0c1068;
  transition: all 0.4s ease;
  animation: colorShift 1.7s infinite; 
}
#third_btn .button:hover {
  transform: scale(1.1);
  background: linear-gradient(90deg, #9dfc93, #32b15c);
}
@media (max-width: 600px) {
  #third_section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
    height: auto;
    max-height: auto;
    padding: 10px 0;
  }
  #third_metodo {
    height: auto;
    max-height: 300px;
    width: 100%;
  }
  #third_cards {
    display: none;
  }
  #third_images {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    max-height: 400px;
    width: 100%;
    flex-direction: column;
    gap: 5px;
  }
  #third_images .responsive-img {
    width: 100%;
    height: auto;
    max-height: 125px;
    object-fit: cover;
  }
  #third_metodo img {
    content: url(../img/Mobile\ Método\ Vizion.png );
    object-fit: cover;
    width: 100%;
    height: auto;
  }
  #third_container h3{
    font-size: 1.11rem !important;
    text-align: center; 
    margin-bottom: 5px;
  }
  #third_container p {
    font-size: .85rem;
    text-align: center; 
    font-weight: 250;
  }
  #third_line {
    width: 70%;
    margin: 0 auto;
  }
  #third_btn .button {
    width: 100%;
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  #third_container h3 {
    font-size: 1.2rem;
  }
  #third_container p {
    font-size: 0.9rem;
  }
  #third_metodo img {
    width: 100%;
    height: auto;
  }
  #third_btn .button {
    width: 90%;
    height: 65px;
    font-size: 1.1rem;
    font-weight: bolder;
  }
  #third_cards {
    display: none;
  }
}
/* ====== Fourth Section ====== */
#fourth_section{
  width: 100%;
  height: auto;
  font-family: var(--primary-font);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px; 
}
#line_logo{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  margin-bottom: 15px;
}
.line1{
  width: 40%;
  height: 2px; 
  border-radius: 2px;
  background: linear-gradient(70deg,transparent 0%,#00b055 100%);
}
.line2{
  width: 40%;
  height: 2px; 
  background: linear-gradient(70deg, #00b055 0%, transparent 100%);
}
#fourth_title{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#fourth_title h3{
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
#fourth_title p{
  color: var(--secondary-color);
  font-size: 1.1rem;
  font-weight: 400px;
  margin-bottom: 10px;
}
#fourth_title span{
  color: #84ff9f;
  font-weight: bold;
}
.line3{
  margin: 0 auto;
  width: 40%;
  height: 2px; 
  border-radius: 2px;
  background: linear-gradient(70deg, transparent 0%, #00b055 50%, transparent 100%);
}
.keen-slider {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  height: auto;
  height: 550px;
  border: 2px solid #00b055;
  margin-top: 45px;
  border-radius: 22px;
  cursor: grab;
  margin-bottom: 55px;
  padding: 2rem 0;
  overflow: hidden; 
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
.keen-slider__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  height: 100%;
  overflow: hidden;
}
.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.keen-slider-navigation {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: -22px;
}
.keen-slider-button-prev,
.keen-slider-button-next {
  pointer-events: all;
  color: #00b055;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.keen-slider-button-prev:hover,
.keen-slider-button-next:hover {
  filter: brightness(1.2);
}

#fourth_btn{
  display: flex;
  align-items: center;
  height: 200px;
  width: 100%;
}
#fourth_btn #fourth_button{
  height: 65px;
  width: 350px;
  background: none;
  border: 2px solid #32b15c;
  border-radius: 8px;
  margin-top: 25px;
  color: #32b15c;
  font-weight: bolder;
  font-size: 1.1rem;
  text-align: center;
  cursor: pointer;
  box-shadow: -2px 4px 5px 4px #0a0c1068;
  transition: all 0.4s ease;
}
#fourth_btn #fourth_button:hover{
  color: #0A0C10;
  background: linear-gradient(90deg, #9dfc93,  #32b15c); 
  transform: scale(1.05);
  border: none;
}
#container_btn{
  display: flex;
  align-items: center;
}
.tooltip-container {
  position: relative;
  display: inline-block;
  margin: 22px 10px 0px 40px;
}
.icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}
.icon svg {
  transition: transform 0.5s ease-in-out;
}
.icon:hover svg {
  transform: rotate(360deg) scale(1.2);
}
.tooltip {
  visibility: hidden;
  width: 200px;
  background-color: #00b055;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  bottom: 125%; 
  left: 50%;
  margin-left: -100px; 
  opacity: 0;
  transition:
    opacity 0.5s,
    transform 0.5s;
  transform: translateY(10px);
}
.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}
.tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  animation: bounce 0.6s ease;
}
@media (max-width: 768px) {
  /* Section #fourth_section */
  #fourth_section {
    padding: 5px;
    margin-bottom: 35px;
    height: auto;
    max-height: 800px;
    overflow: hidden;
  }

  #fourth_title p {
    font-size: 0.9rem;
  }

  .line1, .line2 {
    width: 30%;
  }
  /* Ajustes no botão */
  #fourth_btn {
    height: auto;
    width: auto;
    max-width: 300px;
    justify-content: center;
    margin-bottom: 15px;
  }
  #fourth_btn .button {
    width: 100%;
    font-size: 1rem;
    height: 65px;
  }
  .tooltip-container {
    display: none;
  }
  .keen-slider {
    margin: 0 auto; 
  }
  .keen-slider__slide {
    height: 100%; 
  }
  .keen-slider-navigation{
    margin-top: 2rem;
  }

}

@media (max-width: 480px) {
  /* Ajustes no section #fourth_section para dispositivos muito pequenos */
  #fourth_section {
    padding: 5px;
    margin-bottom: 70px;
    height: auto;
    overflow: hidden;
  }

  /* Ajustando o título */
  #fourth_title h3 {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
  }

  #fourth_title p {
    font-size: .8rem;
    font-weight: 300;
  }

  .line1, .line2 {
    width: 30%;
  }

  /* Ajustando o botão */
  #fourth_btn {
    height: auto;
    width: auto;
    max-width: 400px;
    justify-content: center;
    margin-bottom: 15px;
  }

  #fourth_btn .button {
    width: auto;
    font-size: .9rem;
    height: 65px;
    padding: 0 8px;
  }

  .tooltip-container {
    display: none;
  }
  .keen-slider {
    margin-bottom: 0 auto;
  }
  .keen-slider__slide {
    height: 100%; 
  }
  .keen-slider-navigation{
    margin-top: 2rem;
  }
}
/* end */

/* ====== Fifth Section ====== */
#fifth_section{
  height: auto;
  min-height: 500px;
  width: 100%;
  font-family: 'sora';
  margin-top: 70px; 
}
.fifth_container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 600px;
}
#fifth_infos{
  height: auto;
  max-height: 450px;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#fifth_infos h2{
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
}
#fifth_infos .vz{
  color:#53dd72;
  font-weight: bold;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { color: #53dd72; }
  50% { color: #36a24e; }
  100% { color: #53dd72; }
}
#fifth_line{
  width: 40%; 
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(70deg, #00b055 0%,  transparent 100%  );
  animation: progressLine 1s infinite;
}
@keyframes progressLine{
  0%{
    width: 0;
  }100%{
    width: 40%;
  }
}
#fifth_infos p {
  font-size: 1.15rem;
  font-weight: 200;
}
#fifth_infos .ac{
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
}
#fifth_infos .rv{
  color: #84ff9f;
  font-weight: bold;
  font-size: 1.2rem;
}
.fifth_img {
  height: 100%;
  margin-bottom: 25px;
  width: 50%; 
  display: flex;
  justify-content: flex-end; 
}
.fifth_img img {
  width: auto;
  height: 100%;
  object-fit: contain; 
}
#fifth_icons{
  display: flex;
  flex-direction: column;
  height: 500px;
  justify-content: center;
  margin-top: 20px;
}
.text{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 3rem 0 0 0;
}
.text_icon1,
.text_icon2,
.text_icon3
{
  display: flex;
  align-items: center;
  gap: 20px;
}.text_icon3 img,
.text_icon2 img{
  height: auto;
  width: auto;
  max-width: 55px;
  object-fit: cover;
}
.text_icon1 h3,
.text_icon2 h3,
.text_icon3 h3{
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: -1px;
}
.text_span{
  font-size: 2.4rem;
  color: #84ff9f;
  font-weight: bolder;
  letter-spacing: -1px;
  animation: pulseSpan 1s infinite;
}
@keyframes pulseSpan{
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.1);
  }
  100%{
    transform: scale(1);
  }
}
.fifth_btn{
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.fifth_btn .btn{
  height: 75px;
  width: 600px;
  background: linear-gradient(90deg, #32b15c, #9dfc93);
  border-radius: 12px;
  color: #0b1a1c;
  font-weight: bolder;
  font-size: 1.4rem;
  text-align: center;
  cursor: pointer;
  box-shadow: -2px 4px 5px 4px #0a0c1068;
  transition: all 0.4s ease;
  animation: colorShift 1.7s infinite; 
}
.fifth_btn .btn:hover { 
  transform: scale(1.1);
  background: linear-gradient(90deg, #9dfc93, #32b15c);
}
/* ====== Responsividade para telas até 768px (tablets) ====== */
@media (max-width: 768px) {
  #fifth_section {
    height: auto;
    margin-top: 50px;
    padding: 0 10px; 
  }
  .fifth_container {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  #fifth_infos {
    width: 100%;
    max-height: none;
    text-align: center; 
    margin-bottom: 20px; 
  }
  #fifth_infos h2 {
    font-size: 1.5rem;
    margin-bottom: 15px; 
  }
  #fifth_line {
    height: 3px;
    background: linear-gradient(70deg, transparent 0%, #00b055 50%, transparent 100%);
    width: 60%; 
  }
  #fifth_infos p {
    font-size: 1.1rem;
    text-align: left;
    margin: 0 auto;
  }
  .fifth_img {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  .fifth_img img {
    width: 90%; 
    object-fit: cover;
  }
  #fifth_icons {
    flex-direction: column;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .text {
    flex-direction: column;
    gap: 20px;
    padding: 2rem 0;
  }
  .text_icon1, .text_icon2, .text_icon3 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .text_icon1 h3, .text_icon2 h3, .text_icon3 h3 {
    font-size: 1.1rem;
    font-weight: 300;
    text-align: center;
  }
  .text_span {
    font-size: 2.2rem;
    color: #84ff9f;
    font-weight: bolder;
    letter-spacing: -1px;
    animation: pulseSpan 1s infinite;
  }
  .fifth_btn .btn {
    width: 600px;
    height: 60px;
    font-size: 1.2rem;
    font-weight: bolder;
    border: none;
    padding: 12px;
  }
}
/* ====== Responsividade para telas até 480px (smartphones) ====== */
@media (max-width: 480px) {
  #fifth_section {
    margin-top: 70px;
  }
  #fifth_infos {
    gap: 15px;
    width: 100%;
    justify-content: center;
  }
  #fifth_infos h2 {
    font-size: 1.2rem;
    text-align: center;
  }
  #fifth_line {
    margin: 0 auto;
    height: 3px;
    background: linear-gradient(120deg, transparent 0%, #00b055 50%, transparent 100%);
    width: 60%;
    animation: prog 1s infinite;
  }
  #fifth_infos p{
    white-space: nowrap;
    overflow: hidden;
    font-size: .95rem !important;
  }
  #fifth_infos p span {
    font-size: 1rem !important;
  }
  #fifth_icons {
    flex-direction: column;
    margin-top: 12px;
    padding: 0 15px;
  }
  .text {
    flex-direction: column;
    gap: 12px;
  }
  .text_icon1, .text_icon2, .text_icon3 {
    width: 100%;
    gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .text_icon1 h3, .text_icon2 h3, .text_icon3 h3 {
    font-size: 1rem;
    text-align: center;
  }
  .fifth_img {
    width: 100%;
    margin-top: 10px;
  }
  .fifth_img img {
    width: 100%;
    object-fit: cover;
  }
  .fifth_btn .btn {
    width: 100%;
    font-size: 1.1rem;
    font-weight: bolder;
    border: none;
  }
}

/* end */

/* ====== Sixth Section ====== */
#sixth{
  height: auto;
  min-height: 100vh;
  font-family: 'sora';
  margin-top: 15px;
}
#sixth_title{
  padding: 1rem 1rem 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sixth_h2{
  font-size: 1.4rem;
}
#sixth_title #sixth_line{
  width: 14%;
  height: 2px; 
  border-radius: 4px;
  background: linear-gradient(70deg, #00b055 0%, transparent 100%);
  margin-bottom: 15px;
  animation: progress 1s infinite;
}
@keyframes progress{
  0%{
    width: 0;
  }100%{
    width: 14%;
  }
}
#subtitle{
  font-size: 1.07rem;
  color: var(--primary-color);
  font-weight: 300;
}
#subtitle span{
  font-weight: bold;
  color: #84ff9f;
}
#sliderContainer{
  display: flex;
  justify-content: center;
  align-items: center;

}
#slider2 {
height: auto;
width: 100%;
display: flex;
align-items: center;
padding: 2rem 0;
cursor: pointer;
transition: all 0.3 ease;
}

.cardsContainer {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 10px;
  padding: 1rem ;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #84FF9F;
  height: 620px
}
.cardsContainer > .card {
  flex: 1;
  min-height: 0;
}

.company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.info_company {
  display: flex;
  align-items: center;
  gap: 5px;
}

.company_info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  text-align: left;
}

.company_info p {
  font-size: .8rem;
  margin-top: 2px;
  font-weight: 300;
  text-align: left;
}

.company img {
  border-radius: 50%;
  height: 40px;
  width: auto;
  align-items: flex-end;
}

#stars {
  margin: 8px 0 0 8px;
  width: 22px;
  display: flex;
  gap: 5px;
}

.depoiment {
  margin: 0;
  text-align: center;
  padding: 0 1rem;
}

.depoiment p {
  font-size: 1rem;
  font-weight: 300;
  text-align: left;
}

.logo_company {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

.logo_company img {
  height: 65px;
  width: auto;
  margin-bottom: 7.7px;
  object-fit: contain;
}

#sixth_btn {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100%;
}
#sixth_btn #sixth_button {
  height: 75px;
  width: 500px;
  background: none;
  border: 2px solid #32b15c;
  border-radius: 12px;
  color: #32b15c;
  font-weight: bolder;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: -2px 4px 5px 4px #0a0c1068;

  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

#sixth_btn #sixth_button:hover {
  color: #0A0C10;
  background: linear-gradient(90deg, #9dfc93,  #32b15c); 
  border: none;
  transform: scale(1.05);
}

/* Responsividade para celular (max-width 480px) */
@media screen and (max-width: 480px) {
  #sixth {
    height: auto;
    padding-bottom: 20px;
  }
  #sixth_title {
    padding: 1rem;
  }
  .sixth_h2 {
    font-size: 1.2rem;
    text-align: center;
  }
  #sixth_title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  #sixth_title #sixth_line {
    width: 50%;
    height: 2px;
    background: linear-gradient(70deg, transparent 0%, #009944 50%, transparent 100%);
    animation: none;
  }
  #subtitle {
    font-size: 1rem;
    text-align: center;
  }
  #sixth_carrossels {
    height: auto;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cardsContainer  {
    width: 100%; 
    height: 600px;
    margin-right: 10px;
    padding: 1rem;
    box-sizing: border-box;
  }
  .company_info h2 {
    font-size: 1rem;
  }
  .company_info p {
    font-size: 0.8rem;
  }
  #sixth_btn #sixth_button  {
    width: 80%;
    font-size: 1rem;
    height: 50px;
    padding: 5px;
  }

}

/* Responsividade para tablet (max-width 748px) */
@media screen and (max-width: 748px) {
  #sixth {
    height: auto;
    padding-bottom: 30px;
  }
  #sixth_title {
    padding: 1rem 1rem 1rem 0;
  }
  .sixth_h2 {
    font-size: 1.3rem;
  }
  #sixth_title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  #sixth_title #sixth_line {
    width: 50%;
    height: 2px;
    background: linear-gradient(70deg, transparent 0%, #009944 50%, transparent 100%);
  }
  #subtitle {
    font-size: 1.05rem;
  }
  #sixth_carrossels {
    height: auto;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cardsContainer  {
    width: 100%; 
    margin-right: 10px;
    padding: 1rem;
    box-sizing: border-box;
  }
  .company_info h2 {
    font-size: 1.1rem;
  }
  .company_info p {
    font-size: 0.9rem;
  }
  #sixth_btn #sixth_button {
    width: 320px;
    font-size: 1rem;
    height: 55px;
    padding: 5px;
  }
}
/* ====== Seventh Section ====== */
#seventh_section{
  height: auto;
  min-height: 400px;
  width: 100%;
  font-family: 'sora';
  margin: 55px 0;
}
#seventh_container{
  height: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: linear-gradient(180deg, #103d2e 0% ,  #092218 100%);
  border-radius: 12px;

  p{
    font-size: 1.2rem;
    font-weight: 300;
    color:var(--primary-color);
    letter-spacing: -1px;
  }
  
}
#seventh_container h2{
  font-size: 2rem;
  font-weight: 600;
  color:var(--primary-color);
  letter-spacing: -.8px;
}
#seventh_container span{
  font-size: 1.2rem;
  font-weight: bold;
  color: #84ff9f;
}
#seventh_btn{
  border-radius: 12px;
  border: 1px solid #0E1A22;
  background: #00181C;
  color:var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 5px;
  text-align: center;
  height: 85px;
  width: 750px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}
#seventh_btn:hover{
  transform: scale(1.05);
}
/* Responsividade para telas de celulares */
@media (min-width: 320px) and (max-width: 700px) {
  #seventh_section {
    height: auto; 
  }
  #seventh_container {
    height: auto;
    min-height: 400px;
    gap: 15px; 
    width: 100%;
    padding: 0 5px;
    text-align: center;
  }
  #seventh_container h2 {
    font-size: 1.4rem; 
    text-align: center;
  }
  #seventh_container p {
    font-size: .9rem;
  }
  #seventh_container span {
    font-size: .9rem;
    font-weight: bold;
  }
  #seventh_btn {
    width: 100%; 
    height: 85px; 
    font-size: .71rem; 
    margin-top: 20px; 
    padding: 1px 15px;
  }
}
/* ====== Eighth Section ====== */
#eighth{
  height: 700px;
  width: 100%;
  font-family: 'sora';
  display: flex;
  justify-content: space-between;
  gap: 35px;
}

#cards{
  margin-top: 10px;
  height: auto;
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#eighth_cards {
  gap: 15px;
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#eighth_cards .card {
  display: flex;
  padding: 5px;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  height: 140px;
  width: 480px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: 400ms;
  border-radius: 12px;
  border: 1px solid #A2FF95;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
.card p.tip {
  font-size: 1.1rem;
  padding: 5px 15px;
  font-weight: 700;
}
#eighth_cards .card p.second-text {
  font-size: .9rem;
  padding: 2px 15px;
  text-align: left;
  font-weight: 400;
}
#eighth_cards .card:hover {
  transform: scale(1.05, 1.05);
}
#eighth_cards:hover > .card:not(:hover) {
  filter: blur(10px);
  transform: scale(0.9, 0.9);
}
#eighth_aside{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
}
#eighth_title{
  text-align: center;
  padding: 20px;
  height: auto;
}
#title_vz{
  font-size: 1.8rem;
  font-weight: 600;
}
#title_vz span{
  font-weight: bold;
  color: #2BAC59;
}
#subtitle_vz{
  font-size: 1rem;
  font-weight: 300;
  margin-top: 10px;
}
.eight_line{
  width: 40%;
  height: 2px;
  background: linear-gradient(70deg, transparent 0%, #00b055 50%,transparent 100%);
  margin: 10px auto;
}
#video_vz{
  width: 100%;
  height: 450px;
  object-fit: cover;

  p{
    font-size: .62rem;
    text-align: center;
    font-weight: 100;
  }
}
#vz_btn{
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#eighth_button{
  height: 100px;
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(90deg, #32b15c, #9dfc93);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  color: #00181C;
  cursor: pointer;
  transition: all 0.3s ease;
}
#eighth_button:hover{
  opacity: .8;
  transform: scale(1.02);background: linear-gradient(90deg,  #9dfc93, #32b15c);
}
@media (max-width: 768px) {
  #eighth {
    padding: 10px;
    gap: 10px;
  }
  #eighth_cards {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  #eighth_cards .card {
    width: 100%;
    height: 110px;
    font-size: 1rem;
  }
  #eighth_title h2 {
    font-size: 1.4rem;
  }
  #subtitle_vz {
    font-size: 0.8rem;
    margin-top: 5px;
  }
  #video_vz {
    height: 300px;
  }
  #vz_btn #eighth_button {
    width: 100%;
    height: 45px;
    color: #00181C;
    font-weight: bold;
  }
}
@media (max-width: 480px) {
  #eighth {
    padding: 0 5px;
    height: auto;
    max-height: 600px;
  }
  #cards {
    width: 100%;
    margin-top: 15px;
    display: none;
  }
  #eighth_cards .card {
    width: 100%;
    height: 80px;
  }
  #eighth_title h2 {
    font-size: 1.3rem;
  }
  #subtitle_vz {
    font-size: 0.7rem;
  }
  #video_vz {
    height: 250px;
  }
  #vz_btn #eighth_button {
    width: 100%;
    height: 65px;
    font-weight: bold;
    font-size: 1.2rem;
    color: #00181C;
  }
}

/* ====== Ninith Section ====== */
#ninth {
  height: auto;
  min-height: 400px;
  font-family: 'sora';
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#ninth_header {
  text-align: center;
  padding: 70px 0;
}
#ninth_title {
  font-size: 1.4rem;
}
#ninth_title h2 {
  font-weight: 500;
  letter-spacing: -.7px;
  margin-bottom: 10px;
}
#ninth_title span {
  color: #2BAC59;
  font-weight: bold;
  text-transform: uppercase;
}
#ninth_title p {
  margin-top: 12px;
  font-size: .95rem;
  font-weight: 200;
}
#ninth_line {
  background: linear-gradient(70deg, transparent 0%, #2BAC59 50%, transparent 100%);
  height: 2px;
  width: 800px;
  margin: 0 auto;
}
#ninth_logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1000px;
  margin: 33px 0 0 0;
  column-gap: 10px;
  row-gap: 10px;
  align-items: center;  
}
.partner-logo {
  width: 100%; 
  height: auto;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: .3;
  object-fit: contain;
  border-radius: 2px;
  animation: fadeInOut 8s infinite; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* Atraso para cada logo */
.partner-logo:nth-child(1) {
  animation-delay: 0s;
}
.partner-logo:nth-child(2) {
  animation-delay: 1s;
}
.partner-logo:nth-child(3) {
  animation-delay: 2s;
}
.partner-logo:nth-child(4) {
  animation-delay: 3s;
}
.partner-logo:nth-child(5) {
  animation-delay: 4s;
}
.partner-logo:nth-child(6) {
  animation-delay: 5s;
}
.partner-logo:nth-child(7) {
  animation-delay: 6s;
}
.partner-logo:nth-child(8) {
  animation-delay: 7s;
}
/* Keyframes para alternar entre os logos, começando pela primeira fileira, depois segunda */
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.2; /* Opacidade baixa no início e no fim */
  }
  25%, 75% {
    opacity: .7; /* Opacidade máxima entre o 25% e o 75% */
  }
  50% {
    opacity: 0.2; /* Retorna à opacidade baixa na metade da animação */
  }
}
.partner-logo:hover {
  opacity: 1 !important;
  transform: scale(1.07);
  animation: none; 
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
/* ====== Media Query for Mobile Responsiveness ====== */
@media (max-width: 768px) {
  #ninth {
    height: auto;
    margin: 20px 0;
  }
  #ninth_header {
    padding: 40px 0;
  }
  #ninth_title {
    font-size: 1.2rem;
  }
  #ninth_line {
    width: 100%;
  }
  .partner-logo {
    width: 100%;
  }
}
/* ====== Media Query for Smaller Mobile Devices ====== */
@media (max-width: 480px) {
  #ninth {
    padding: 20px 0;
  }
  #ninth_title {
    font-size: 1.1rem;
  }
  #ninth_line {
    width: 100%;
  }
  .partner-logo {
    width: 100%;
  }
}
/* ====== Tenth Section ====== */
#tenth {
  font-family: 'sora';
  width: 100%;
  padding: 10px;
  overflow: hidden; 
}
#tenth_title{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;

  h2{
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -.7px;
    color: var(--primary-color)!important;
  }
}
#tenth_line{
  background: linear-gradient(70deg, transparent 0%, #2BAC59 50%, transparent 100% );
  height: 2px;
  width: 800px;
  margin: 0 auto;
}
#accordions{
  margin-top: 25px;
}
.accordion {
  margin: 20px;
  border: 2px solid #2BAC59;
  border-radius: 5px;
  background: linear-gradient(180deg, #103d2e, #092218);
}
.accordion-item {
  border-bottom: 1px solid #2BAC59;
}
.accordion-item:last-child {
  border-bottom: none; 
}
.accordion-header {
  background-color: none;
  color: white;
  padding: 15px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s;
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header .accordion-icon{
  width: auto;
  height: 25px;
  transition: transform 0.3s;
}
.accordion-header.active .accordion-icon {
  transform: rotate(180deg);/
}
.accordion-header:hover {
  background-color: none;
}
.accordion-content {
  max-height: 0; 
  overflow: hidden; 
  transition: max-height 0.09s ease;
  padding: 0 10px;
}
.accordion-content.active {
  max-height: 500px;
  padding: 10px; 
}
/* Responsividade */
@media (max-width: 768px) {
  #tenth_title h2 {
    font-size: 1.5rem;
  }
  .accordion {
    margin: 15px 10px;
  }
  .accordion-header {
    padding: 5px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  #tenth_title h2 {
    font-size: 1.4rem;
  }
  .accordion {
    margin: 10px 5px;
  }
  .accordion-header{
    padding: 10px;
    font-size: 1rem;
  }
  .accordion-content{
    font-size: .9rem;
  }
}