:root {
    --primery-font: "Poppins", sans-serif;
    --general-font: 'Poppins', sans-serif;
    --font-lato: "Poppins", sans-serif;
    --primaryColor: #691A99;
    --accentColor: #68EFAD;
    --whiteColor: #fff;
    --blackColor: #171D1E;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: var(--primery-font);
    font-size: 16px;
    font-weight: 400;    
	background: var(--whiteColor);
	color: var(--blackColor);	
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flex-col-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gap-x-26 {
    row-gap: 26px;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor); 
    text-align: center; 
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;  
    z-index: 1000;    
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: var(--primaryColor); 
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*======= header-area design =======*/

.header-area {
    padding-inline: 22px;
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 28px;
}

.site-logo {
    display: block;
    width: 100%;
    max-width: 187px;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 74px;
}
.header-nav ul {
    display: flex;
    align-items: center;
    gap: 77px;
}
.header-nav ul li a {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; 
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.nav-link {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; 
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.header-nav ul li a:hover {
    color: var(--primaryColor);
}
.download-btn {
    display: inline-flex;
    padding: 10px 27px;
    align-items: center;
    gap: 12px;
    border-radius: 20px;
    border: 1px solid #0E0E26;
    background: #FFF;
    color: #101116;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 97%;
    letter-spacing: -0.16px;
    filter: drop-shadow(2px 8px 19px rgba(128, 64, 181, 0.10)) drop-shadow(9px 32px 34px rgba(128, 64, 181, 0.09)) drop-shadow(20px 73px 45px rgba(128, 64, 181, 0.05)) drop-shadow(36px 130px 54px rgba(128, 64, 181, 0.01)) drop-shadow(56px 203px 59px rgba(128, 64, 181, 0.00));
    transition: 0.3s;
}
.download-btn .icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #d0ecdf 0%, #68EFAD 100%);
    color: #fff;
}
.download-btn:hover {
    background: var(--accentColor);
    color: var(--whiteColor);
}

/*=========== header end hare ======== */
/*======= hero area style start hare ===== */

.hero-area {
    padding-inline: 19px;
}

.hero-wrapper {
    background-color: var(--primaryColor) !important; 
    background-image: url('images/hero-bg.webp') !important;
    background-size: cover !important; 
    background-position: center !important;
    background-repeat: no-repeat !important;

    border-radius: 36px; 
}

.hero-container  {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1617px;
    margin-inline: auto;
    position: relative;
    gap: 60px;
}

.hero-image {
    margin-bottom: -83px;
}

.hero-content-top h2 {
    text-shadow: 20px 24px 24px rgba(0, 0, 0, 0.05);
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 93.023%;
    letter-spacing: -0.86px;
    color: #FFF;
    /*background: linear-gradient(96deg, #FFF 49.64%, #6C2D97 96.35%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    margin-bottom: 7px;
    /*padding-left: 20px;*/
}
.hero-content-top h2 .color-secondery {
    color: #68EFAD;
    -webkit-text-fill-color: #68EFAD;
    background: none;
}


.hero-content-top h1 {
    text-shadow: 20px 24px 24px rgba(0, 0, 0, 0.05);
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.86px;
    color: #FFF;
    /*background: linear-gradient(96deg, #FFF 49.64%, #6C2D97 96.35%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    margin-bottom: 7px;
    /*padding-left: 20px;*/
}
.hero-content-top h1 .color-secondery {
    color: #68EFAD;
    -webkit-text-fill-color: #68EFAD;
    background: none;
}
.hero-content-wp {
	flex: 1;
	max-width: 800px;
	padding-top: 200px;
    padding-left: 20px;
}
.hero-content-top p {
    color: #FFF;
    font-family: var(--general-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 158.333%;
    max-width: 835px;
    /*padding-left: 20px;*/
    padding-top: 20px;
}
.hero-content-top .app-buttons {
    display: flex;
    gap: 20px;
    padding-top: 42px;
    /*padding-left: 20px;*/
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; 
    letter-spacing: 0.8px;
    text-transform: uppercase;
  position: absolute;
  bottom: 7%;
  left: 2%;
  bottom: 40px; /* Valor fixo em vez de % */
  left: 20px; /* Alinhado ao padding da esquerda da div acima */
  z-index: 10;
}

.mouse {
  width: 35px;
  height: 55px;
  border: 2px solid #fff;
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 10px;
  }
  100% {
    opacity: 0;
    top: 35px;
  }
}

.hero-image {
    position: relative;
}
.recommendation-card {
    position: absolute;
    right: 55%;
    bottom: 16%;
    padding: 20px 21px;
    border-radius: 36px;
    background: #FFF;
    width: 451px;
}

.recomm-top {
    display: flex;
    align-items: center;
    gap: 18px;
}
.recomm-top .icon {
    width: 81px;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #68EFAD;
}
.recomm-top-content {
    flex: 1;
}
.recomm-top-content h4 {
    color: #212529;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; 
    letter-spacing: -0.4px;
}
.recomm-top-content p {
    color: rgba(0, 0, 0, 0.70);
    font-family: var(--general-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1; 
    padding-top: 8px;
}

.recomm-bottom {
    padding-top: 6px;
    border-top: 1px solid rgba(104, 239, 173, 0.15);
    margin-top: 17px;
    margin-left: 8px;
}
.recomm-bottom h3 {
    color: #212529;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 210%; 
    letter-spacing: -0.4px;
}
.recomm-bottom p {
    color: rgba(0, 0, 0, 0.70);
    font-family: var(--general-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1; 
}

/*======== hero area end hare ====== */
/*======== why choose area style start hare ========= */

.why-choose-area {
    padding-top: 256px;
    padding-bottom: 135px;
    overflow: hidden;
}

.why-choose-wrapper {
    display: flex;
    gap: 26px;
    align-items: start;
}

.why-choose-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
}
.why-choose-top h5 {
    color: #6C2D97;
    font-family: var(--font-lato);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 142.857%;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1.5px solid #6C2D97;
    padding: 7px 21px;
}
.why-choose-top h2 {
    color: #000;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 104.167%; 
    letter-spacing: -1.44px;
}
.why-choose-left {
	max-width: 50%;
}
.why-choose-top p {
    color: #000;
    font-family: var(--general-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 158.333%;
    max-width: 632px;
}
.why-choose-btm {
    padding-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 600px;
}
.why-choose-inner-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.why-choose-inner-item h4 {
    color: #212529;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 116.667%; 
    letter-spacing: -0.72px;
}
.why-choose-inner-item p {
    color: rgba(0, 0, 0, 0.70);
    font-family: var(--general-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 177.778%; 
    max-width: 445px;
}
.seperator-line-deshed {
    width: 100%;
    border-bottom: 1.5px dashed #D6D9DD;
}
.why-choose-image {
    display: flex;
    align-items: start;
    gap: 10px;
    /*margin-right: -86px;*/
    margin-right: 0;
    position: relative;
    z-index: 2;
}
.why-choose-image::before {
    content: '';
    display: block;
    width: 374px;
    height: 374px;
    border-radius: 374px;
    opacity: 0.62;
    background: #6C2D97;
    filter: blur(147.1999969482422px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    z-index: -1;
}
.why-choose-right {
	flex: 1;
}
.why-choose-image .why-img-1 {
	margin-top: 96px;
}
.why-choose-image img {
	width: 50%;
}

/*=========== why choose area end hare ========= */
/*=========== team area start hare ========= */

.team-area {
    padding-left: 17px;
    padding-right: 11px;
}

.team-inner-wp {
    padding-top: 140px;
    padding-bottom: 163px;
    border-radius: 36px;
    background: linear-gradient(113deg, #691A99 53.32%, #1F082C 99.56%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.team-wrapper {
    display: flex;
    flex-direction: column;
    gap: 85px;
    z-index: 10;
}
.team-top-wp {
    display: flex;
    flex-direction: column;
    gap: 39px;
}
.team-top-wp h5 {
    width: 128px;
    height: 35px;
    border-radius: 50px;
    border: 1.5px solid #FFF;
    background: #FFF;
    color: #000;
    font-family: var(--font-lato);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 142.857%; 
    letter-spacing: 0.56px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-top-inner-wp {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}
.team-top-inner-wp h2 {
    color: #FFF;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 104.167%; 
    letter-spacing: -1.44px;
    flex: 1;
}
.team-top-inner-wp p {
    color: #FFF;
    font-family: var(--general-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 158.333%; 
    flex: 1;
    max-width: 697px;
}

.member-image {
    border-radius: 36px;
    background: #D9D9D9;
    overflow: hidden;
    position: relative;
}
.member-image::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 36px;
    background: linear-gradient(181deg, rgba(108, 45, 151, 0.00) 43.32%, #6C2D97 109.25%);
}
.member-image img {
    width: 100%;
}

.member-info {
    margin-top: 20px;
}
.member-info h3 {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.52px;
    line-height: 1.4;
}
.member-info p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.14px;
    margin-top: 6px;
}

.team-slider-wrapper {
    flex: 1;
    max-width: calc(100% - 162px);
}

.team-slider-area {
    display: flex;
    align-items: center;
    gap: 30px;
}

.team-slider-btn {
    width: 51.676px;
    height: 51.676px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #68EFAD;
    border: 1px solid #68EFAD;
    border-radius: 50%;
    color: var(--whiteColor);
    font-size: 18px;
}
button.team-slider-btn:disabled {
    background: transparent;
    color: #68EFAD;
}

.team-ractangle-1 {
    width: 405.557px;
    height: 405.557px;
    transform: rotate(-38.713deg);
    border-radius: 405.557px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.70) -15.48%, rgba(255, 255, 255, 0.00) 57.91%);
    position: absolute;
    right: 0;
    top: -300px;
}
.team-ractangle-2 {
    width: 576.617px;
    height: 576.617px;
    transform: rotate(150deg);
    border-radius: 576.617px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.70) -15.48%, rgba(255, 255, 255, 0.00) 57.91%);
    position: absolute;
    left: -80px;
    bottom: -360px;
    z-index: -1;
}

/*=========== team area style end hare ======== */
/*=========== community area style start hare ===== */

.community-area {
    padding-top: 209px;
    padding-bottom: 30px;
    overflow: hidden;
}

.community-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.community-top-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.community-top-left h4 {
    color: #6C2D97;
    font-family: var(--font-lato);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 142.857%; 
    letter-spacing: 0.56px;
    text-transform: uppercase;
    width: 173px;
    height: 35px;
    border-radius: 50px;
    border: 1.5px solid #6C2D97;
    display: flex;
    align-items: center;
    justify-content: center;
}
.community-top-left h2 {
    color: #000;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 104.167%; 
    letter-spacing: -1.44px;
}

.community-top-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: start;
}
.community-top-right p {
    color: #000;
    font-family: var(--general-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 158.333%; 
    max-width: 403px;
}
.community-wrapper {
	display: flex;
	flex-direction: column;
	gap: 70px;
	position: relative;
	z-index: 2;
}

.single-community-item {
    padding: 38px 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #fff;
    border-radius: 32px;
    width: 90%;
}

.community-short {
    background: var(--primaryColor);
    backdrop-filter: blur(32px);
    border-radius: 32px;
    color: #fff;
}

.community-short-light {
    background: var(--whiteColor);
    backdrop-filter: blur(32px);
    border-radius: 32px;
    color: var(--blackColor);
}

.community-item-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.community-image img {
    width: 122.772px;
    height: 122.772px;
    aspect-ratio: 1/1;
    border-radius: 30px;
    object-fit: cover;
}

.community-content p {
    font-family: var(--general-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 158.333%; 
    max-width: 654px;
}

.community-slider .swiper-wrapper {
  align-items: stretch !important; 
}



.swiper-slide.short-item {
  width: 41%;
}

.swiper-slide:not(.short-item) {
  width: 60%;
}
.short-item .community-content p {
	max-width: 457px;
}
.community-slider {
	overflow: visible;
}
.community-wrapper::before {
    content: '';
    display: block;
    width: 391.062px;
    height: 391.062px;
    transform: rotate(26.325deg);
    border-radius: 391.062px;
    opacity: 0.28;
    background: #D290FF;
    filter: blur(192px);
    position: absolute;
    right: 40%;
    bottom: 8%;
    z-index: -1;
}
.community-wrapper::after {
    content: '';
    display: block;
    width: 250.496px;
    height: 250.496px;
    transform: rotate(26.325deg);
    border-radius: 391.062px;
    opacity: 0.28;
    background: #D290FF;
    filter: blur(192px);
    position: absolute;
    right: 5%;
    bottom: 23%;
    z-index: -1;
}
.community-slider .swiper-slide {
    height: auto !important;
    display: flex;
}

.join-slider-action-area {
    display: flex;
    align-items: center;
    gap: 26px;
}

.join-slider-button {
    display: flex;
    gap: 10px;
}
.join-slider-button button {
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
    background: #6C2D97;
    border: 1px solid #6C2D97;
    color: var(--whiteColor);
    font-size: 20px;
    border-radius: 50%;
}
.join-slider-button button:disabled {
    background: transparent;
    color: #6C2D97;
}
.community-slider-area {
	display: flex;
	flex-direction: column;
	gap: 70px;
}

.join-border {
    height: 1px;
    background: #D290FF;
    flex: 1;
}
.join-slider-pagination {
	width: fit-content;
	font-weight: 700;
	font-size: 20px;
	color: #4F4A53;
	letter-spacing: 1%;
}

/*========== community area end hare ========== */
/*============= banner style start hare ======= */

.banner-area {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.banner-area::before {
    content: '';
    display: block;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 60.62%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-wrapper img {
    min-width: 832px;
    max-width: 1666px;
    object-fit: cover;
}

/*=========== footer style start hare ========= */

.footer-area {
    margin-top: 14px;
    background: linear-gradient(180deg, rgba(105, 26, 153, 0.00) 0%, #691A99 60.62%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 175px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    padding-top: 80px;
    flex-direction: column !important;
}

.appStore-btn img {
    max-width: 143px;
}
.PlayStore-btn img {
    max-width: 143px;
}

.footer-top-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-top-btn {
    width: 108px;
    height: 108px;
    filter: drop-shadow(1px 12px 26px rgba(108, 45, 151, 0.34)) drop-shadow(4px 48px 48px rgba(108, 45, 151, 0.30)) drop-shadow(10px 107px 64px rgba(108, 45, 151, 0.18)) drop-shadow(17px 190px 76px rgba(108, 45, 151, 0.05)) drop-shadow(27px 297px 84px rgba(108, 45, 151, 0.01));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 108px;
    background: #D290FF;
    font-size: 27px;
    margin-bottom: 61px;
}
.footer-top-middle h2 {
    color: #FFF;
    text-align: center;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 104.167%; 
    letter-spacing: -1.44px;
    max-width: 883px;
    margin-bottom: 15px;
}
.footer-top-middle p {
    color: #FFF;
    text-align: center;
    font-family: var(--general-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 158.333%;
    max-width: 610px;
    margin-bottom: 35px;
}

.download-btn2 a:hover {
    background: #000;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-left p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 138.889%; 
    letter-spacing: -0.36px;
}

.footer-left p .color-secondery {
    color: var(--accentColor);
}

.footer-right {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 32px;
}

.footer-alert {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    margin-top: 36px;
}

.footer-block h4 {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 76.923%; 
    letter-spacing: -1.04px;
    white-space: nowrap;
}
.footer-block ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.footer-block ul a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; 
    letter-spacing: -0.64px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.single-contact-info {
    display: flex;
    align-items: start;
    gap: 17px;
}
.single-contact-info .icon {
    width: 44.268px;
    height: 44.268px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
}

.contat-info-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    max-width: 317px;
}
.contat-info-text h4 {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; 
    letter-spacing: -0.64px;
}
.contat-info-text p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 138.889%; 
    letter-spacing: -0.36px;
    opacity: 0.7;
}

.footer-main {
	display: flex;
	flex-direction: column;
	gap: 55px;
}

.copyright-area {
    padding-block: 26px;
    border-top: 1px solid #FFFFFF33;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.copyright-area p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-social li a {
    width: 62.155px;
    height: 62.155px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF33;
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
}

.footer-ractangle-middle {
    position: absolute;
    width: 85%;
    height: 539px;
    border-radius: 1647px;
    opacity: 0.87;
    background: #6C2D97;
    filter: blur(206.39999389648438px);
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    z-index: -1;
}

.footer-ractangle-2 {
    position: absolute;
    top: 30%;
    right: -200px;
    width: 353.203px;
    height: 353.203px;
    border-radius: 353.203px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.70) -15.48%, rgba(255, 255, 255, 0.00) 57.91%);
    z-index: -1;
}
.footer-ractangle-3 {
    position: absolute;
    top: 50%;
    left: -200px;
    width: 353.203px;
    transform: rotate(-145.313deg);
    height: 353.203px;
    border-radius: 353.203px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.70) -15.48%, rgba(255, 255, 255, 0.00) 57.91%);
    z-index: -1;
}

.footer-ractangle-4 {
    position: absolute;
    left: 90%;
    top: 90%;
    width: 804px;
    height: 722px;
    transform: rotate(-174.836deg);
    border-radius: 804px;
    opacity: 0.41;
    background: #FFEB5D;
    mix-blend-mode: plus-lighter;
    filter: blur(200px);
    z-index: -1;
}

/*=========================
 about page 
========================= */

.about-hero .hero-wrapper {
    background-image: url(images/about-hero-bg.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 145px;
}
/*========== about caveon area styel ========= */

.about-caveon-area {
    padding-top: 160px;
    padding-bottom: 194px;
}

.about-caveon-wrapper {
    display: flex;
    align-items: center;
    gap: 79px;
}

.about-image {
    flex: 1;
    max-width: 590px;
    position: relative;
    z-index: 2;
}
.about-image::before {
    content: '';
    width: 374px;
    height: 374px;
    border-radius: 374px;
    opacity: 0.62;
    background: #6C2D97;
    filter: blur(147.1999969482422px);
    position: absolute;
    right: -20px;
    top: -82px;
    z-index: -1;
}
.about-image img {
    width: 100%;
    border-radius: 36px;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content h5 {
    width: 162px;
    height: 35px;
    border-radius: 50px;
    border: 1.5px solid #6C2D97;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6C2D97;
    font-family: var(--font-lato);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 142.857%; 
    letter-spacing: 0.56px;
    text-transform: uppercase;
}
.about-content h2 {
    color: #000;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 104.167%; 
    letter-spacing: -1.44px;
    max-width: 695px;
}

.about-pera-box {
    display: flex;
    flex-direction: column;
    gap: 38px;
    max-width: 748px;
}
.about-pera-box p {
    color: #000;
    font-family: var(--general-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 158.333%;
}

/*========= journey area style start hare =========== */

.journey-area {
    padding-left: 17px;
    padding-right: 11px;
}
.journey-inner {
    border-radius: 36px;
    background: linear-gradient(113deg, #691A99 53.32%, #1F082C 99.56%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.journey-wrapper {
    display: flex;
    gap: 62px;
    align-items: start;
}
.journey-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 553px;
    padding-top: 135px;
    padding-bottom: 50px;
}
.journey-left .topbar-text {
    width: 151px;
    height: 35px;
    border-radius: 50px;
    border: 1.5px solid #FFF;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-family: var(--font-lato);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 142.857%; 
    letter-spacing: 0.56px;
    text-transform: uppercase;
}

.journey-left h2 {
    color: #FFF;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 104.167%; 
    letter-spacing: -1.44px;
    min-width: 750px;
    margin-top: 39px;
}
.journey-pera-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 495px;
    padding-top: 15px;
}
.journey-pera-top p {
    color: #FFF;
    font-family: var(--general-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 158.333%; 
}
.journey-left-btm-card {
    padding-top: 51px;
    padding-bottom: 55px;
    padding-left: 58px;
    padding-right: 33px;
    border-radius: 37px;
    background: rgba(160, 110, 191, 0.39);
    margin-top: 162px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.journey-left-btm-card::before {
    content: '';
    display: block;
    height: 100%;
    width: 34px;
    background: #D290FF;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.journey-left-btm-card p {
    color: #FFF;
    font-family: var(--general-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 158.333%; 
    text-align: left;
}

.journey-right-inner {
    margin-right: -104px;
}
.journery-right {
	flex: 1;
}

.journey-right-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 61px;
    padding-top: 200px;
    padding-bottom: 180px;
    z-index: 2;
}

.timeline-item {
    padding-top: 48px;
    padding-left: 35px;
    padding-right: 38px;
    padding-bottom: 65px;
    background: #fff;
    width: 47%;
    border-radius: 30px;
    position: relative;
}

.timeline-item-right {
    margin-left: auto;
}

.timeline-item h4 {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 175%;
    letter-spacing: -0.48px;
}
.timeline-item p {
    font-family: var(--general-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 177.778%; 
}

.timeline-item-left {
    margin-right: auto;
}

.journey-right-inner::before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: rgba(210, 144, 255, 0.22);
    z-index: -1;
}

.timeline-item::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #D290FF;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.timeline-item-right::before {
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
}
.timeline-item-left::before {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
}
.timeline-item.card-style-two {
    background: linear-gradient(180deg, #FFF -193.02%, #691A99 100%);
    border: 2px solid #D290FF;
    box-shadow: 0 20px 40px rgba(27, 6, 40, 0.15);
    backdrop-filter: blur(32px);
    color: #fff;
}

.journey-ractangle1 {
    width: 21.5%;
    aspect-ratio: 1/1;
    transform: rotate(-38.713deg);
    border-radius: 405.557px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.70) -15.48%, rgba(255, 255, 255, 0.00) 57.91%);
    position: absolute;
    right: -30px;
    top: -20%;
    z-index: -1;
}
.journey-ractangle2 {
    width: 28%;
    aspect-ratio: 1/1;
    transform: rotate(150deg);
    border-radius: 576.617px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.70) -15.48%, rgba(255, 255, 255, 0.00) 57.91%);
    position: absolute;
    left: -50px;
    bottom: -20%;
    z-index: -1;
}

.slider-btn-wp {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
.slider-btn-wp p {
    font-weight: 600;
    font-size: 14px;
    line-height: 97%;
    letter-spacing: -1%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;

}


.footer-app-btns {
	display: flex;
	gap: 20px;
}
.footer-app-btns img {
    width: 180px;
}










/*========= mision area style start ========= */

.about-mission-area {
    padding-top: 148px;
    overflow: hidden;
    padding-bottom: 210px;
}

.about-mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.single-mission-item {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-top: 73px;
    padding-inline: 77px;
    padding-bottom: 49px;
    border-radius: 32px;
    background: #fff;
    position: relative;
}
.single-mission-item .icon {
    width: 81px;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #68EFAD;
    border-radius: 50%;
    padding: 10px;
    position: relative;
    z-index: 2;
}

.mission-info {
    display: flex;
    flex-direction: column;
    gap: 23px;
}
.mission-info h4 {
    color: #212529;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 116.667%;
    letter-spacing: -0.72px;
}
.mission-info p {
    color: #000;
    font-family: var(--general-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 158.333%;
}
.single-mission-item::before {
    content: '';
    display: block;
    width: 391.062px;
    height: 391.062px;
    transform: rotate(26.325deg);
    border-radius: 391.062px;
    opacity: 0.28;
    background: #D290FF;
    filter: blur(192px);
    position: absolute;
    top: 30%;
    left: -60px;
    z-index: -1;
}
.single-mission-item::after {
    content: '';
    display: block;
    width: 280.496px;
    height: 280.496px;
    transform: rotate(26.325deg);
    border-radius: 391.062px;
    opacity: 0.28;
    background: #D290FF;
    filter: blur(192px);
    position: absolute;
    top: 11%;
    right: -10px;
    z-index: -1;
}

/*============ mission area end hare ======== */
/*======== values area style start hare ===== */


.values-top-wp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.values-top-wp h2 {
    color: #000;
    text-align: center;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 104.167%; 
    letter-spacing: -1.44px;
}
.values-top-wp p {
    color: #000;
    text-align: center;
    font-family: var(--general-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 158.333%; 
    max-width: 602px;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 21px;
    padding-top: 50px;
}

.single-values {
    padding: 28px 52px;
    border-radius: 36px;
    background: #FFF;
    display: flex;
    align-items: center;
    gap: 18px;
    padding-left: 38px;
}
.single-values .icon {
    width: 81px;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #68EFAD;
    border-radius: 50%;
}

.single-values.padding-rediuce {
    padding-inline: 38px;
}
.values-wrapper {
	position: relative;
	z-index: 2;
}
.values-wrapper::before {
    content: '';
    display: block;
    width: 250.496px;
    height: 250.496px;
    transform: rotate(26.325deg);
    background: #6C2D97;
    filter: blur(192px);
    position: absolute;
    left: 20%;
    bottom: 0%;
    z-index: -1;
    opacity: 0.6;
}
.values-wrapper::after {
    content: '';
    display: block;
    width: 696px;
    height: 374px;
    border-radius: 696px;
    opacity: 0.32;
    background: #6C2D97;
    filter: blur(147.1999969482422px);
    position: absolute;
    right: 10%;
    bottom: -10%;
    z-index: -1;
}

.single-values h4 {
    color: #212529;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 175%;
    letter-spacing: -0.48px;
    flex: 1;
}

/*=========================
 App Download Modal
========================= */

.app-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 38, 0.6); /* Dark overlay */
    backdrop-filter: blur(8px); /* Matches your glassmorphism style */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.app-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.app-modal-container {
    background: var(--whiteColor);
    border-radius: 36px;
    width: 90%;
    max-width: 750px;
    position: relative;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0px 40px 80px rgba(108, 45, 151, 0.15);
    overflow: hidden;
}

.app-modal-overlay.active .app-modal-container {
    transform: translateY(0);
}

.app-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F3F4F6;
    color: var(--blackColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.app-modal-close:hover {
    background: var(--primaryColor);
    color: var(--whiteColor);
}

.app-modal-content {
    display: flex;
    align-items: center;
    padding: 50px;
    gap: 40px;
}

.app-modal-left {
    flex: 0 0 220px;
}

.qr-wrapper {
    background: var(--whiteColor);
    padding: 15px;
    border-radius: 24px;
    border: 2px dashed rgba(104, 239, 173, 0.5); /* Subtle green dashed border */
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-wrapper img {
    width: 100%;
    border-radius: 12px;
}

.app-modal-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-modal-right h3 {
    color: #212529;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.app-modal-right p {
    color: rgba(0, 0, 0, 0.70);
    font-family: var(--general-font);
    font-size: 18px;
    line-height: 1.6;
}

.app-modal-badges {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.app-modal-badges img {
    height: 45px;
    width: auto;
}

/* Responsive adjustments for smaller desktop/tablet */
@media (max-width: 768px) {
    .app-modal-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 25px;
    }
    
    .app-modal-left {
        flex: 0 0 auto;
        width: 180px;
    }

    .app-modal-badges {
        justify-content: center;
    }
}

/*=========================
 Responsive App Buttons
========================= */

/* Por padrão (Mobile-first), esconde o botão de Desktop e mostra as lojas */
.desktop-only-btn {
    display: none !important;
}

.mobile-only-stores {
    display: flex;
    gap: 15px; /* Espaçamento entre as badges no celular */
    align-items: center;
}

.mobile-only-stores img {
    height: 48px; /* Tamanho otimizado para o clique com o dedo no celular */
    width: auto;
}

/* Em telas de Desktop (maiores que 768px), inverte a visibilidade */
@media (min-width: 769px) {
    .desktop-only-btn {
        display: inline-flex !important; /* Mantém a formatação original do seu botão */
    }
    
    .mobile-only-stores {
        display: none !important;
    }
}

/* --- Estilo para o Avatar com a Letra Inicial --- */
.community-image.fallback-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ajuste as dimensões abaixo para serem iguais às da sua tag <img> atual */
    width: 60px; 
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2); /* Fundo translúcido para destacar no roxo */
    border-radius: 50%; /* Deixa perfeitamente redondo */
}

.community-image.fallback-initial span {
    color: #ffffff; /* Cor da letra */
    font-size: 24px; /* Tamanho da letra */
    font-weight: bold;
    text-transform: uppercase;
}

/* --- Estilo para a Assinatura (Nome + Plataforma) --- */
.author-info {
    margin-top: 16px;
    color: #ffffff; /* Use a cor adequada para o seu fundo */
}

.author-info-light  {
    margin-top: 16px;
    color: --blackColor; /* Use a cor adequada para o seu fundo */
}

.author-name {
    font-weight: bold;
    font-size: 16px;
}

.author-platform {
    font-size: 14px;
    opacity: 0.7; /* Deixa o texto da plataforma um pouco mais suave que o nome */
    margin-left: 4px;
}

/* Notebooks Grandes e Monitores Padrão (até 1600px) */
@media (max-width: 1600px) {
    /* Devolve espaço para o texto respirar */
    .hero-content-wp {
        max-width: 700px; /* Aumentado de 550px para tirar a sensação de "espremido" */
    }

    /* Ajuste suave no título */
    .hero-content-top h1,
    .hero-content-top h2 {
        font-size: 60px;
        line-height: 100.00%;
    }

    /* O Ponto de Equilíbrio do Card */
    .recommendation-card {
        width: 380px;      /* Tamanho intermediário elegante */
        right: 48%;        /* Meio-termo exato: tira de cima do telefone, mas não bate no texto */
        bottom: 12%;       
        padding: 18px 20px;
    }

    /* Ajustes internos do card */
    .recomm-top .icon {
        width: 65px;
        height: 65px;
    }
    .recomm-top-content h4, .recomm-bottom h3 {
        font-size: 18px;
    }
    .recomm-top-content p, .recomm-bottom p {
        font-size: 14px;
    }
}

/* Laptops Menores (até 1280px) */
@media (max-width: 1280px) {
    .hero-content-wp {
        max-width: 550px; /* Aqui o texto precisa encolher por causa da tela menor */
    }
    
    .hero-content-top h1,
    .hero-content-top h2 {
        font-size: 52px;
    }
    
    .recommendation-card {
        width: 340px;
        right: 40%; 
        bottom: 10%;
    }
}

.community-wrapper::before,
.community-wrapper::after,
.single-mission-item::before,
.single-mission-item::after,
.footer-ractangle-middle {
    will-change: transform;
    transform: translateZ(0); /* Força o processamento na GPU */
}



@media (max-width: 768px) {
    .journey-left h2  {
        text-transform: none  !important; 
    }
}

@media (max-width: 768px) {
   .team-top-inner-wp h2 {
        text-transform: none  !important; 
    }
}


@media (max-width: 991px) {
    .scroll-indicator {
        display: none !important;
    }
}