:root {
  --font-default: 'Poppins', sans-serif;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
}
:root {
  --color-default: #ffffff;
  --color-whatsapp: #2e421c;
  --color-primary: #4256aa;
  --color-secondary: #93268e;
  --gradient: linear-gradient(45deg, #93268e, #4256aa);
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}
h1 {
  font-size: 2rem;
  font-weight: 900;
  margin: 15px;
  line-height: normal;
}
h2 {
  font-size: 3.3rem;
  font-weight: bold;
  color: #ffffff;
}
h3 {
  font-size: 2.4rem;
  font-weight: bold;
}
h4 {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}
p {
  font-size: 1.2rem;
}
a {
  color: var(--color-primary);
  font-size: 1.5rem;
  text-decoration: none;
}
a:hover {
  color: var(--color-primary);
  text-decoration: none;
}
/* max-width: 768px */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 15px;
    line-height: normal;
  }
  h2 {
    font-size: 3.3rem;
    font-weight: bold;
    color: #ffffff;
  }
  h3 {
    font-size: 2.4rem;
    font-weight: bold;
  }
  h4 {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
  }
  p {
    font-size: 1.125rem;
  }
  a {
    color: var(--color-primary);
    font-size: 1.5rem;
    text-decoration: none;
  }
}
/* max-width: 480px */
@media screen and (max-width: 480px) {
  h1 {
    font-size: 2rem;
    line-height: normal;
    margin-bottom: 15px;
  }
  h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
  }
  h3 {
    font-size: 1.6rem;
    font-weight: bold;
  }
  h4 {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
  }
  p {
    font-size: 1.1rem;
  }
  a {
    color: var(--color-primary);
    font-size: 1.5rem;
    text-decoration: none;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-primary);
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: var(--color-primary);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Imgs
--------------------------------------------------------------*/
.img-logo {
  margin: 0 auto;
  border-radius: 0px;
  width: 285px;
  height: auto;
}
#img-mockup-1 {
  border-radius: 10px
}
#img-mockup-2 {
  border-radius: 10px
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
.section-bg {
  background-color: #000000;
}
.section-title span {
  color: #30705e;
}
.section-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Btn Get Ebook
--------------------------------------------------------------*/
.btn-get-whatsapp {
  text-align: center;
  font-size: 24px;
  margin: 0 auto;
  color: #fff;
  background: linear-gradient(to left, #30705e, #22b573);
  padding: 24px 85px;
  border-radius: 0px 30px;
  border: 2px solid #1dfcd7;
  font-weight: 600;
}
.btn-get-whatsapp:hover {
  background-color: #fff;
  color: #128c7e;
}
@media screen and (max-width: 768px) {
  .btn-get-whatsapp {
    font-size: 18px;
    padding: 8px 25px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 480px) {
  .btn-get-whatsapp {
    font-size: 14px;
    padding: 6px 20px;
    border-radius: 8px;
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  background: url('../img/banner-metodo-aiva.webp') center center no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  color: white;
  padding-bottom: 60px;
  text-align: center;
}
#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 11%);
  z-index: 1;
}
#hero .hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

#hero span {
  font-weight: 100;
  font-size: 1.5rem;
}
@media screen and (max-width: 480px){
 #hero span {
  font-weight: 100;
  font-size: 1.5rem;
} 
}
/* #hero p {
  font-size: 20px;
  margin: 30px;
} */
#hero .min-test {
  font-weight: 100;
}
/*--------------------------------------------------------------
# Hero-mobile Section
--------------------------------------------------------------*/
#hero-mobile-img {
  background: url('../img/banner-metodo-aiva-mobile.webp') center center no-repeat;
  background-size: cover;
  height: 100vh;
}

#hero-mobile-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: rgb(0 0 0 / 11%);
  z-index: 1;
}

#hero-mobile{
  background: transparent;
  margin-top: 10vh;
  padding: 0px;
  overflow: hidden;
}
#hero-mobile .hero-mobile-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

#hero-mobile span {
  font-weight: 100;
  font-size: 1.2rem;
}

@media screen and (max-width: 480px) {
  #hero-mobile span {
    font-weight: 100;
    font-size: 1.2rem;
    display: block;
    margin-top: 0rem;
  }
}

#hero-mobile .min-test {
  font-weight: 100;
}
/*--------------------------------------------------------------
.section-20241004-1060
--------------------------------------------------------------*/
.section-20241004-1060 {
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  height: 10vh;
}
.section-20241004-1060 a {
  font-size: 24px;
  font-weight: bold;
  background: black;
  color: white;
  border-radius: 25px 5px;
  padding: 10px;
  text-align: center;
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-20241004-1060 p {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  text-align: left;
}
.section-20241004-1060 .time-box {
  background: black;
  color: white;
  border-radius: 25px 5px;
  padding: 10px;
  text-align: center;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-20241004-1060 .time-box {
  background: linear-gradient(45deg, #4256aa, #93268e);
  color: white;
  border-radius: 25px 5px;
  padding: 10px;
  text-align: center;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-20241004-1060 .time-box {
  background: black;
  color: white;
  border-radius: 25px 5px;
  padding: 10px;
  text-align: center;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-20241004-1060 .number {
  font-size: 24px;
  font-weight: bold;
  display: block;
}
.section-20241004-1060 .label {
  font-size: 14px;
  text-transform: uppercase;
}
.section-20241004-1060 .number {
  font-size: 24px;
  font-weight: bold;
  display: block;
}
.section-20241004-1060 .label {
  font-size: 14px;
  text-transform: uppercase;
}
#section-20241004-1060 .number {
  font-size: 24px;
  font-weight: bold;
  display: block;
}
#section-20241004-1060 .label {
  font-size: 14px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .section-20241004-1060 {
    height: 50vh;
  }
  .section-20241004-1060 p {
    text-align: center;
    margin-bottom: 30px;
  }
  .section-20241004-1060 .time-box {
    margin-bottom: 30px;
  }
}
/*--------------------------------------------------------------
.section-20241004-1060B
--------------------------------------------------------------*/
.section-20241004-1060B {
  /* background: var(--gradient); */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  height: 10vh;
}
.section-20241004-1060B a {
  /* font-size: 24px; */
  font-weight: bold;
  background: var(--gradient);
  color: white;
  border-radius: 25px 5px;
  padding: 10px;
  text-align: center;
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-20241004-1060B p {
  /* font-size: 24px; */
  font-weight: bold;
  margin: 0;
  text-align: left;
}
.section-20241004-1060B .time-box {
  background: black;
  color: white;
  border-radius: 25px 5px;
  padding: 10px;
  text-align: center;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-20241004-1060B .time-box {
  background: linear-gradient(45deg, #4256aa, #93268e);
  color: white;
  border-radius: 25px 5px;
  padding: 10px;
  text-align: center;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-20241004-1060B .time-box {
  background: var(--gradient);
  color: white;
  border-radius: 25px 5px;
  padding: 10px;
  text-align: center;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-20241004-1060B .number {
  font-size: 24px;
  font-weight: bold;
  display: block;
}
.section-20241004-1060B .label {
  font-size: 14px;
  text-transform: uppercase;
}
.section-20241004-1060B .number {
  font-size: 24px;
  font-weight: bold;
  display: block;
}
.section-20241004-1060B .label {
  font-size: 14px;
  text-transform: uppercase;
}
#section-20241004-1060B .number {
  font-size: 24px;
  font-weight: bold;
  display: block;
}
#section-20241004-1060B .label {
  font-size: 14px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .section-20241004-1060B {
    height: 50vh;
  }
  .section-20241004-1060B p {
    text-align: center;
    margin-bottom: 30px;
  }
  .section-20241004-1060B .time-box {
    margin-bottom: 30px;
  }
}
/*--------------------------------------------------------------
#section-20241004-1049 
--------------------------------------------------------------*/
#section-20241004-1049 {
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
}
#section-20241004-1049 h2 {
  margin-bottom: 50px;
}
#section-20241004-1049 i {
  margin-top: 30px;
}
/*--------------------------------------------------------------
#section-20250410-1123 
--------------------------------------------------------------*/
.section-20250410-1123 h2 {
  font-size: 3rem;
}
@media screen and (max-width: 480px){
.section-20250410-1123 h2 {
  font-size: 1.5rem;
}  
}
#section-20250410-1123 .section-20250410-1123-row {
  margin: 50px 0;
}
#section-20250410-1123 .section-20250410-1123-row p {
  font-size: 24px;
  font-weight: bold;
}
#section-20241004-1047 .section-20250410-1123-row {
  margin: 80px 0;
}
#section-20241004-1047 .section-20250410-1123-row p {
  font-size: 24px;
  font-weight: bold;
}
.section-20250410-1123 .section-20250410-1123-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#section-20250410-1123 .section-20250410-1123-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#section-20241004-1047 .section-20250410-1123-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#section-20241004-1047 .countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-20250410-1123 .countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.time-box {
  background: black;
  color: white;
  border-radius: 25px 5px;
  padding: 10px;
  text-align: center;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.time-box {
  background: linear-gradient(45deg, #4256aa, #93268e);
  color: white;
  border-radius: 25px 5px;
  padding: 10px;
  text-align: center;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.time-box {
  background: linear-gradient(45deg, #4256aa, #93268e);
  color: white;
  border-radius: 25px 5px;
  padding: 10px;
  text-align: center;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#section-20241004-1047 .number {
  font-size: 24px;
  font-weight: bold;
  display: block;
}
#section-20241004-1047 .label {
  font-size: 14px;
  text-transform: uppercase;
}
.section-20250410-1123 .number {
  font-size: 24px;
  font-weight: bold;
  display: block;
}
.section-20250410-1123 .label {
  font-size: 14px;
  text-transform: uppercase;
}
#section-20250410-1123 .number {
  font-size: 24px;
  font-weight: bold;
  display: block;
}
#section-20250410-1123 .label {
  font-size: 14px;
  text-transform: uppercase;
}
#section-20250410-1123 .metodoSwiper {
  width: 100%;
  overflow: visible;
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}
#section-20250410-1123 .swiper-wrapper {
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
  height: auto !important;
}
#section-20250410-1123 .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.7);
  opacity: 0.5;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
#section-20250410-1123 .swiper-slide-prev,
#section-20250410-1123 .swiper-slide-next {
  transform: scale(0.8);
  opacity: 0.75;
}
#section-20250410-1123 .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}
#section-20250410-1123 .custom-card {
  position: relative;
  background-color: transparent;
  border-radius: 25px 5px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* width: 340px; */
}
#section-20250410-1123 .custom-card:hover {
  transform: translateY(-5px);
}
#section-20250410-1123 .custom-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px 5px;
  padding: 2px;
  background: linear-gradient(45deg, #4256aa, #93268e);
  -webkit-mask:
    linear-gradient(white, white) content-box,
    linear-gradient(white, white);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
#section-20250410-1123 .custom-card .icon {
  /* border: 1px solid; */
  /* border-radius: 25px 5px; */
  margin-bottom: 45px;
  padding: 60px;
  position: relative;
}
#section-20250410-1123 .custom-card .icon::before{
  content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px 5px;
    padding: 2px;
    background: linear-gradient(45deg, #4256aa, #93268e);
    -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}
#section-20250410-1123 .custom-card .icon img {
  width: 72px;
  height: auto;
}
#section-20250410-1123 .custom-card h5 {
  margin-bottom: 12px;
  color: #ffffff;
}
#section-20250410-1123 .custom-card p {
  font-size: 0.95rem;
  color: #ffffff;
}
#section-20250410-1123 .swiper-pagination {
  display: none;
}
@media (max-width: 767px) {
  #section-20250410-1123 .swiper-pagination {
    display: block !important;
    position: relative;
    margin-top: 30px;
    text-align: center;
  }
}
#section-20250410-1123 .swiper-pagination-bullet {
  background: white;
  opacity: 0.3;
  transition: 0.3s;
}
#section-20250410-1123 .swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
}
/*--------------------------------------------------------------
#section-20241004-1047
--------------------------------------------------------------*/
#section-20241004-1047 {
  background: linear-gradient(to bottom right, #120217, #000);
  padding: 60px 20px;
}
#section-20241004-1047 h2, h3 {
  text-align: center;
}
#section-20241004-1047 .checklist-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 65px;
  margin-top: 100px;
}
#section-20241004-1047 .check-item {
  display: flex;
  flex-direction: column;
  padding: 60px 15px 30px 15px;
  border-radius: 25px 5px;
  background: #0c0c0c00;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  text-align: center;
  justify-content: center;
}
#section-20241004-1047 .check-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px 5px;
  padding: 2px;
  background: linear-gradient(45deg, #4256aa, #93268e);
  -webkit-mask:
    linear-gradient(white, white) content-box,
    linear-gradient(white, white);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
#section-20241004-1047 .check-item h2 {
  font-weight: bold;
  background: var(--gradient);
  color: white;
  border-radius: 25px 5px;
  padding: 10px 20px;
  text-align: center;
  width: 500px;
  height: auto;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
#section-20241004-1047 .check-item p {
  color: #fff;
  margin: 0;
}
#section-20241004-1047 a {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(45deg, #4256aa, #93268e);
  color: white;
  border-radius: 25px 5px;
  padding: 10px;
  text-align: center;
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #section-20241004-1047 {
    padding: 40px 15px;
  }
  #section-20241004-1047 h2,
  #section-20241004-1047 h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  #section-20241004-1047 .checklist-container {
    margin-top: 60px;
    gap: 40px;
  }
  #section-20241004-1047 .check-item {
    padding: 40px 15px 25px 15px;
  }
  #section-20241004-1047 .check-item h2 {
    font-size: 18px;
    width: 65%;
    padding: 8px 12px;
  }
  #section-20241004-1047 .check-item p {
    font-size: 16px;
    text-align: center;
  }
  #section-20241004-1047 a {
    font-size: 18px;
    padding: 15px;
    height: auto;
  }
}
/*--------------------------------------------------------------
#section-20241004-1046
--------------------------------------------------------------*/
#section-20241004-1046 {
  background: linear-gradient(to bottom right, #120217, #000);
  padding: 60px 20px;
}
#section-20241004-1046 h2 {
  text-align: center;
  margin-bottom: 60px;
}
#section-20241004-1046 h3 {
  text-align: left;
  margin-bottom: 60px;
}
#section-20241004-1046 span {
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 60px;
}
#section-20241004-1046 .row-s {
  margin-bottom: 60px;
}
#section-20241004-1046 i {
  display: block;
  text-align: center;
  margin-top: 100px;
}
@media (max-width: 768px) {
  #section-20241004-1046 .row-s-1 {
    flex-direction: column-reverse;
  }
  #section-20241004-1046 .row-s-1 {
    margin-bottom: 40px;
  }
  #section-20241004-1046 .foto-ale img {
    max-width: 100%;
    height: auto;
  }
  #section-20241004-1046 .btn-ler-mais {
    margin-top: 20px;
  }
}
/* ------------------------------------------------------------
----------------------- CSS ALTERADO -------------------------- 
-------------------------------------------------------------*/

/*--------------------------------------------------------------
#section-20241004-1045
--------------------------------------------------------------*/
#section-20241004-1045 {
  background: linear-gradient(to bottom right, #120217, #000);
}
#section-20241004-1045 h2 {
  text-align: center;
  margin-bottom: 60px;
}
#section-20241004-1045 h4 {
  text-align: center;
}
#section-20241004-1045 a {
  display: inline-block;
  background: var(--gradient);
  padding: 15px 50px;
  border-radius: 25px 5px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
  text-align: center;
}
#section-20241004-1045 .beneficios-row {
  padding-top: 60px;
  padding-bottom: 60px;
}
#section-20241004-1045 .beneficio-item {
  /* display: flex; */
  /* align-items: flex-start; */
  gap: 50px;
  /* margin-bottom: 45px; */
  /* padding: 0px 48px; */
  display: flex;
  justify-content: center;
  align-items: center;
}
#section-20241004-1045 .beneficios-row .icone-img img {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  margin-top: 5px;
}
#section-20241004-1045 .beneficios-row p {
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
}
#section-20241004-1045 .acompanhamento-row {
  background-color: #000;
  text-align: center;
  gap: 45px;
}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
#section-20241004-1045 .acompanhamento-col {
  background-color: #fff;
  color: #000000;
  padding: 30px 20px;
  border-radius: 20px 5px;
}
#section-20241004-1045 .acompanhamento-col h4 {
  color: #000000;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}
#section-20241004-1045 .acompanhamento-col p {
  color: #000000;
  margin: 0;
  font-size: 1.3rem;
}
#section-20241004-1045 .acompanhamento-col-1 {
  background-color: #fff;
  border-radius: 20px 5px;
  padding: 20px;
  margin-bottom: 30px;
}
#section-20241004-1045 .acompanhamento-col-1 h4 {
  font-weight: bold;
  color: #000;
  margin: 0;
}
@media (max-width: 768px) {
  #section-20241004-1045 .beneficio-item {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    text-align: center;
    align-items: center;
  }
  #section-20241004-1045 .beneficios-row .icone-img img {
    margin-top: 0;
  }
  #section-20241004-1045 .beneficios-row p {
    text-align: center;
  }
  #section-20241004-1045 .acompanhamento-row {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  #section-20241004-1045 .acompanhamento-col {
    padding: 25px 15px;
    text-align: center;
  }
  #section-20241004-1045 .acompanhamento-col-1 {
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  #section-20241004-1045 h2,
  #section-20241004-1045 h4 {
    text-align: center;
  }
}
/*--------------------------------------------------------------
#section-20251104-1604 
--------------------------------------------------------------*/
#section-20251104-1604 {
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
}
#section-20251104-1604 h2 {
  margin-bottom: 50px;
}
#section-20251104-1604 .lista-beneficios {
  max-width: 802px;       
  width: 100%;             
  margin: 0 auto;          
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  text-align: left;
}
#section-20251104-1604 .lista-beneficios .item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
#section-20251104-1604 .lista-beneficios .icone-img img {
  width: 24px;
  height: 24px;
}
#section-20251104-1604 .lista-beneficios p {
  margin: 0;
}
#section-20251104-1604 .lista-beneficios p strong {
  font-weight: bold;
}



/*--------------------------------------------------------------
#section-20251104-1646 
--------------------------------------------------------------*/
#section-20251104-1646 {
  background: url('../img/banner2-metodo-aiva.webp') center center no-repeat;
  background-size: cover;
  min-height: 85vh;
  position: relative;
  color: white;
  text-align: center;
}
#section-20251104-1646::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 11%);
  z-index: 1;
}
#section-20251104-1646 .hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}
#section-20251104-1646 .titulo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 0px 0px 20px 20px;
  text-align: center;
  background: var(--gradient);
  min-height: 200px;
  background-clip: padding-box;
  position: relative;
  margin: 60px auto;
  width: 100%;
  z-index: 1;
}
#section-20251104-1646 .text-row {
  text-align: left;
  margin: 30px 0;
}
#section-20251104-1646 .coluna-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
#section-20251104-1646 .coluna-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  padding-left: 23px;
}
#section-20251104-1646 a {
  display: inline-block;
  background: var(--gradient);
  padding: 15px 50px;
  border-radius: 25px 5px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
  margin: 30px 0 30px;
}
#section-20251104-1646 a:hover {
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  #section-20251104-1646 {
    background-size: cover;
    height: auto;
    padding: 40px 20px 60px;
    align-items: center;
  }
  #section-20251104-1646 .titulo {
    min-height: auto;
    margin: 20px auto;
    padding: 25px 15px;
    bborder-radius: 0px 0px 20px 20px;
    font-size: 1rem;
  }
  #section-20251104-1646 .text-row {
    text-align: center;
    margin: 20px 0;
  }
  #section-20251104-1646 .coluna-1,
  #section-20251104-1646 .coluna-2 {
    align-items: center;
    text-align: center;
    padding: 10px 0;
  }
  #section-20251104-1646 a {
    padding: 12px 30px;
    margin: 20px auto;
    width: 100%;
    max-width: 300px;
    font-size: 1rem;
  }
}
/*--------------------------------------------------------------
#section-20241004-1048 
--------------------------------------------------------------*/
#section-20241004-1048 {
  background: linear-gradient(to bottom right, #120217, #000);
  padding: 60px 20px;
  position: relative;
}
#section-20241004-1048 h2 {
  text-align: center;
  margin-bottom: 50px;
}
#section-20241004-1048 .checklist-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#section-20241004-1048 .check-item {
  display: flex;
  gap: 45px;
  padding: 45px;
  border-radius: 25px 5px;
  background: #0c0c0c00;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  align-items: center;
}
#section-20241004-1048 .check-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px 5px;
  padding: 2px;
  background: linear-gradient(45deg, #4256aa, #93268e);
  -webkit-mask:
    linear-gradient(white, white) content-box,
    linear-gradient(white, white);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
#section-20241004-1048 .check-item:hover {
  background: var(--gradient);
  color: #ffffff;
  border-radius: 15px 30px;
}

#section-20241004-1048 .check-item:hover::before {
  border-radius: 15px 30px;
}
#section-20241004-1048 .check-icon {
  min-width: 40px;
  height: 40px;
  background-color: #0c0c0c;
  border: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
#section-20241004-1048 .icone-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
#section-20241004-1048 .check-item img {
  width: 50px;
  height: auto;
}
#section-20241004-1048 .check-item p {
  color: #fff;
  margin: 0;
}
#section-20241004-1048 a {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(45deg, #4256aa, #93268e);
  color: white;
  border-radius: 25px 5px;
  padding: 10px;
  text-align: center;
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#section-20241004-1048 .countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 768px) {
  #section-20241004-1048 .checklist-container {
    gap: 20px;
  }
  #section-20241004-1048 .check-item {
    flex-direction: column;
    align-items: center; 
    gap: 20px;
    padding: 25px 20px;
    text-align: center; 
  }
  #section-20241004-1048 .check-icon {
    margin-top: 0;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  #section-20241004-1048 .icone-img {
    height: auto;
    justify-content: center; 
    width: 100%;
  }
  #section-20241004-1048 .check-item img {
    width: 50px;
    height: auto;
  }
  #section-20241004-1048 a {
    font-size: 18px;
    height: auto;
    padding: 15px;
  }
  #section-20241004-1048 .countdown {
    flex-direction: column;
    gap: 5px;
  }
}
.section-20241004-1048 .shape-left .shape-svg {
  position: absolute;
  top: -8vw;
  left: -10vw;
  z-index: 1;
  height: calc(100% + 50vh);
  transform: rotate(0deg);
  transform-origin: center;
}
.section-20241004-1048 .shape-right .shape-svg {
  position: absolute;
  top: -13vw;
  right: -11vw;
  z-index: 1;
  height: calc(100% + 50vh);
  transform: rotate(11deg);
  transform-origin: center;
}
.section-20241004-1048 .shape-left .shape-svg,
.section-20241004-1048 .shape-right .shape-svg {
  animation: fadeInMove 10.5s ease-out forwards;
}
@media (max-width: 768px) {
    .section-20241004-1048 .shape-left .shape-svg {
        position: absolute;
        top: -50vw;
        left: 5vw;
        z-index: 1;
        height: 100%;
        transform: rotate(0deg) !important;
        transform-origin: center;
        
}
.section-20241004-1048 .shape-right {
  display: none;
}
.section-20241004-1048 .shape-left .shape-svg,
.section-20241004-1048 .shape-right .shape-svg {
  animation: fadeInMove 10.5s ease-out forwards;
}
}
@keyframes fadeInMove {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
#section-20241004-1050
--------------------------------------------------------------*/
#section-20241004-1050 {
  background: #ffffff;
  text-align: center;
  position: relative;
}
#section-20241004-1050 .x-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  margin-bottom: 30px;
}
#section-20241004-1050 .x-item::before {
  /* content: ""; */
  position: absolute;
  left: 2%;
  top: 0;
  bottom: -32px;
  width: 1px;
  background-color: #000;
  z-index: 0;
}
#section-20241004-1050 .x-item:last-child::before {
  display: none;
}
#section-20241004-1050 .x-icon {
  width: 45px;
  height: 45px;
  background: url(../img/exclamation.svg);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
}
#section-20241004-1050 .x-icon::before {
  /* content: "X"; */
  color: red;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}
#section-20241004-1050 .x-item:first-child::before {
  top: 15px;
}
#section-20241004-1050 .x-item:last-child::before {
  bottom: 15px;
}
#section-20241004-1050 .x-item p {
  margin: 0;
  text-align: left;
}
#section-20241004-1050 h2,
#section-20241004-1050 h3,
#section-20241004-1050 h4,
#section-20241004-1050 p,
#section-20241004-1050 a {
  text-align: center;
  margin-bottom: 35px;
  color: #000000;
}
#section-20241004-1050 .section-card .cards-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 50px 10px;
  text-align: center;
  background: #f7d6a3;
  min-height: 200px;
  background-clip: padding-box;
  position: relative;
  margin: 60px auto;
  width: 100%;
  z-index: 1;
}
#section-20241004-1050 .section-card .icon-wrapper {
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
#section-20241004-1050 .section-card .icon-wrapper img {
  max-width: 100px;
  height: auto;
  padding: 10px;
}
#section-20241004-1050 .lista-lista {
  max-width: 770px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
}
#section-20241004-1050 .lista-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #000;
  padding: 18px;
  border-radius: 10px;
  gap: 25px;
  height: 100px;
  text-align: left;
}
#section-20241004-1050 .lista-icon {
  width: 45px;
  height: 45px;
  /* border-radius: 50%; */
  /* border: 1.5px solid #000; */
  background: url(../img/button-right.svg);
  /* color: red; */
  /* font-weight: bold; */
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  /* font-size: 1.6rem; */
  flex-shrink: 0;
  /* margin-top: 4px; */
  background-size: cover;
  background-position: center;
}
#section-20241004-1050 .lista-item p {
  margin: 0;
  color: #000;
  text-align: left;
}
@media (max-width: 768px) {
  #section-20241004-1050 .x-item {
    align-items: flex-start;
    gap: 15px;
  }
  #section-20241004-1050 .x-item::before {
    left: 22px; 
  }
  #section-20241004-1050 .x-item p {
    text-align: left;
    font-size: 16px;
  }
  #section-20241004-1050 .section-card .cards-1 {
    margin: 30px auto;
    width: 100%;
    padding: 20px 15px;
    min-height: auto;
  }
  #section-20241004-1050 .section-card .icon-wrapper img {
    max-width: 80px;
  }
  #section-20241004-1050 .lista-lista {
    padding: 0 15px;
  }
  #section-20241004-1050 .lista-item {
    gap: 15px;
    padding: 15px;
  }
  #section-20241004-1050 .lista-item p {
    font-size: 16px;
    text-align: left;
  }
  #section-20241004-1050 .lista-icon {
    margin-top: 0;
  }
}
/* --------------- */

/* --------------- */
.section-20241004-1050 .shape-left .shape-svg {
  position: absolute;
  top: 0vw;
  left: -12vw;
  z-index: 1;
  height: calc(100% + 10vw);
  transform: rotate(180deg) !important;
  transform-origin: center;
}
.section-20241004-1050 .shape-right .shape-svg {
  position: absolute;
  top: -13vw;
  right: -11vw;
  z-index: 1;
  height: 100%;
  transform: rotate(11deg);
  transform-origin: center;
}
.section-20241004-1050 .shape-left .shape-svg,
.section-20241004-1050 .shape-right .shape-svg {
  animation: fadeInMove 10.5s ease-out forwards;
}
@media (max-width: 768px) {
  .section-20241004-1050 .shape-left .shape-svg {
  position: absolute;
  top: -50vw;
  left: 5vw;
  z-index: 1;
  height: 100%;
  transform: rotate(0deg) !important;
  transform-origin: center;
}
.section-20241004-1050 .shape-right{
  display: none;
}
.section-20241004-1050 .shape-left .shape-svg,
.section-20241004-1050 .shape-right .shape-svg {
  animation: fadeInMove 10.5s ease-out forwards;
}
}

@keyframes fadeInMove {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*--------------------------------------------------------------
#section-20241004-1051
--------------------------------------------------------------*/
#section-20241004-1051 {
  text-align: center;
  position: relative;
}
#section-20241004-1051 h2,
#section-20241004-1051 h3,
#section-20241004-1051 h4,
#section-20241004-1051 p,
#section-20241004-1051 a {
  text-align: center;
  margin-bottom: 35px;
}
#section-20241004-1051 a {
  display: inline-block;
  background: var(--gradient);
  padding: 15px 50px;
  border-radius: 25px 5px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
}
#section-20241004-1051 a:hover {
  background: rgba(255, 255, 255, 0.4);
}
#section-20241004-1051 .section-card {
  display: flex;
  justify-content: space-between;
}
#section-20241004-1051 .section-card .cards-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 25px 5px;
  text-align: center;
  background: rgba(255, 255, 255, 0);
  min-height: 200px;
  background-clip: padding-box;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

#section-20241004-1051 .section-card .cards-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px 5px;
  padding: 2px;
  background: linear-gradient(45deg, #4256aa, #93268e);
  -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
  margin-bottom: 100px;
  transition: all 0.4s ease-in-out;
}

#section-20241004-1051 .section-card .cards-1 img {
  width: 74px;
  height: auto;
  margin: 50px 0;
  background: #000000;
  padding: 15px;
  border-radius: 30px 15px;
  transition: all 0.4s ease-in-out;
}

/* HOVER EFFECT */
#section-20241004-1051 .section-card .cards-1:hover {
  background: var(--gradient);
  color: #ffffff;
  border-radius: 15px 30px;
}

#section-20241004-1051 .section-card .cards-1:hover::before {
  border-radius: 15px 30px;
}

#section-20241004-1051 .section-card .cards-1:hover img {
  background: #111;
  padding: 20px;
}
@media (max-width: 768px) {
  #section-20241004-1051 .section-card {
    flex-direction: column;
    align-items: center;
    gap: 20px; 
  }
  #section-20241004-1051 .section-card .cards-1 {
    flex: 1 1 auto;
    width: 100%;
    box-sizing: border-box;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
/* --------------- */

/* --------------- */
.section-20241004-1051 .shape-left .shape-svg {
  position: absolute;
  top: -8vw;
  left: -10vw;
  z-index: 1;
  height: 89%;
  transform: rotate(0deg);
  transform-origin: center;
}
.section-20241004-1051 .shape-right .shape-svg {
  position: absolute;
  top: -13vw;
  right: -11vw;
  z-index: 1;
  height: 100%;
  transform: rotate(11deg);
  transform-origin: center;
}
.section-20241004-1051 .shape-left .shape-svg,
.section-20241004-1051 .shape-right .shape-svg {
  animation: fadeInMove 10.5s ease-out forwards;
}
@media (max-width: 768px) {
    .section-20241004-1051 .shape-left .shape-svg {
      
      position: absolute;
        top: -50vw;
        left: 5vw;
        z-index: 1;
        height: 100%;
        transform: rotate(0deg) !important;
        transform-origin: center;
    }
    .section-20241004-1051 .shape-right {
      display: none;
    }
    .section-20241004-1051 .shape-left .shape-svg,
    .section-20241004-1051 .shape-right .shape-svg {
      animation: fadeInMove 10.5s ease-out forwards;
    }
}
@keyframes fadeInMove {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ------------- */
.efeito-interativo-1 {
  position: relative;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 1;
}
.efeito-interativo-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(45deg, #ffffff, #ededed, #fbf8f8);
  z-index: -1;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  opacity: 0;
  transform: scale(0.8);
}
.efeito-interativo-1:hover::before {
  opacity: 1;
  transform: scale(1);
}
.efeito-interativo-1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 60%);
  top: -100%;
  left: 0;
  transition: transform 0.6s ease-in-out;
  z-index: -1;
}
.efeito-interativo-1:hover::after {
  transform: translateY(100%);
}
.efeito-interativo-1:hover {
  background: white;
  color: black !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
.btn-ler-mais{
  font-size: 24px;
  font-weight: bold;
  background: white;
  color: black;
  border-radius: 25px 5px;
  padding: 10px 30px;
  text-align: center;
  width: auto;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* ------------------ */
.ml-3{
  margin-left: 1rem;
 }
 .mr-3{
   margin-right: 1rem;
 } 
 .mb-0{
  margin-bottom: 0rem;
}
/* ------------------ */
@keyframes bounce-down {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.bounce-down {
  animation: bounce-down 1.5s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  20% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  40% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulse-animation {
  animation: pulse 3s ease-in-out infinite;
}



.swiper-button-next, .swiper-button-prev {
  color: #fff;
}

.video-youtube{
  border-radius: 15px;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.video-youtube iframe{
  width: 660px;
  height: 370px;
}

.video-youtube-mobile{
  border-radius: 15px;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border: 2px solid;
}

.video-youtube-mobile iframe{
  width: 100%;
  height: 230px;
  border-radius: 10px;
}


.ytwPlayerFullscreenControlsHost{
	display:none !important;
}
