/* import fonts here */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* import fonts here */



/* basic css*/

:root {
    --primary-color: #FFF300;
    --poppins-font: "Poppins", sans-serif;
    --transition: .4s;
}

::selection {
    background-color: var(--primary-color);
    color: #000;
}

body {
    background-color: #031419;
    color: #fff;
    font-family: var(--poppins-font);
}

/* Reduz o tamanho do conteúdo em 10% sem criar barras laterais */
html {
    zoom: 0.9;
}

* {
    background-size: 70% !important;
}

img {
    transform: scale(0.7);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

input,
textarea {
    outline: none;
}

input,
textarea,
button {
    font-family: var(--poppins-font);
}

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

img {
    width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1560px;
    padding-inline: 20px;
    margin-inline: auto;
}

/* basic css */



/* extra css start here */

.theme__btn {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    padding: 18px 60px;
    display: flex;
    background-color: var(--primary-color);
    border-radius: 100px;
    border: 1px solid #5F5A02;
    color: #031518;
}

.theme__btn:hover {
    background-color: #fff;
    border-color: #fff;
}

.login__btn.theme__btn {
    background-color: #192327;
    color: var(--primary-color);
}

.login__btn.theme__btn:hover {
    background-color: var(--primary-color);
    border-color: var(--poppins-font);
    color: #5F5A02;
}

.section__black__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}

/* extra css end here */


/* header area start here */

header {
    position: fixed;
    left: 0;
    right: 0;
    padding-block: 30px;
    margin-inline: auto;
    z-index: 9;
    background-color: rgba(54, 53, 53, 0.199);
    backdrop-filter: blur(10px);
    box-shadow: 0px 10px 10px 0 rgba(0, 0, 0, 0.312);
}
/* header area end here */



/* hero area start here */

.hero__area {
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero__content {
    max-width: 895px;
    position: relative;
    z-index: 3;
}

.hero__deskImage {
    position: absolute;
    right: -20px;
    top: 0px;
    width: 77.66%;
}

.hero__text h1 {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 26px;
}

.hero__text p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 60px;
    max-width: 590px;
}

.hero__button__group {
    gap: 19px;
}

.hero__button__group a+a {
    font-size: 18px;
    color: #fff;
    line-height: 24px;
}

.hero__button__group a+a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* hero area end here */



/* service area start here */

.service__area {
    background: url("../img/desk02.svg") center center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
}

.service__content {
    position: relative;
    z-index: 3;
}

.service__text {
    max-width: 600px;
}

.service__text h4 {
    font-size: 40px;
    margin-bottom: 19px;
    line-height: 49px;
    font-weight: 500;
}

.service__text p {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 1px;
}

.service__yellow__overlay {
    position: absolute;
    content: '';
    background: #fff300;
    background: -webkit-radial-gradient(circle, #fff300 0%, rgba(3, 20, 26, 0) 100%);
    background: radial-gradient(circle, #fff300 0%, rgba(3, 20, 26, 0) 100%);
    right: 0;
    width: 1000px;
    height: 1000px;
    border-radius: 100%;
    z-index: 2;
    filter: blur(100px);
    top: 0;
    opacity: .4;
    transform: translate(50%, -50%);
}

.service__area .section__black__overlay {
    bottom: -74px;
}

/* service area end here */



/* feature area start here */

.feature__area {
    padding-block: 148px 30px;
}

.custom__container {
    padding-left: calc((100% - 1570px)/2);
    margin-inline: 20px;
    width: 100%;
}

.feature__title h4 {
    font-size: 40px;
    font-weight: 500;
    line-height: 49px;
}

/* Feature Wrapper */
.feature__wrapper {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
    padding-right: 100px;
}

/* Features Grid Layout */
.features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding-block: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: start;
    align-items: start;
}

/* Remove Swiper styles */
.swiper.featureSlider,
.swiper-wrapper,
.swiper-slide,
.swiper-pagination {
    display: none !important;
    
}

.single__feature {
    padding: 20px 20px 30px;
    background: rgba(52, 68, 72, 48%);
    border-radius: 27px;
    height: 310px;
    display: flex;
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    width: 100%;
    overflow: hidden;
}

.single__feature:hover {
    transform: scale(1.10);
    transition: var(--transition);
    border: 1px solid var(--primary-color);
}

.feature__icon {
    padding-bottom: 19px;
    transition: var(--transition);
}

.feature__icon img {
    width: 90px;
    height: 90px;
}

.feature__text h5 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 27px;
}

.feature__content {
    overflow: hidden;
    position: relative;
    z-index: 4;
}

.feature__text h4 {
    font-size: 27px;
    margin-bottom: 15px;
}

.feature__text p {
    font-size: 18px;
    line-height: 24px;
}

/* Responsive adjustments for features grid */
@media (max-width: 1200px) {
    .features__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
        justify-items: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .features__grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        justify-items: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .features__grid {
        grid-template-columns: 1fr;
        gap: 15px;
        justify-items: center;
        align-items: center;
    }
}

/* Swiper pagination styles removed - no longer needed */


/* feature area end here */



/* step area start here */

.step__area {
    padding-block: 400px 0;
    position: relative;
    z-index: 2;
}

.step__box {
    border: 1px solid #012B38;
    border-radius: 22px;
    padding: 62px 40px 100px 52px;
    position: relative;
    background: #031419;
}

.step__content {
    padding-inline: 70px;
}

.step__image {
    position: absolute;
    bottom: 0;
    right: -85px;
    width: 70%;
}

.step__detail h5 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 30px;
}

.step__list ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #12292E;
    border-radius: 100px;
    padding: 18px 25px 18px 18px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.step__list {
    width: 38%;
}

.step__list ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step__list ul li span {
    background-color: var(--primary-color);
    display: flex;
    color: #031419;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 20px;
    box-shadow: 0 0 12px 0px var(--primary-color);
    flex-shrink: 0;
}

.step__list ul li:hover {
    border-color: var(--primary-color);
}

.step__list ul li p {
    font-size: 20px;
    line-height: 29px;
}

.feature__yellow__overlay {
    position: absolute;
    content: '';
    background: #fff300;
    background: -webkit-radial-gradient(circle, #fff300 0%, rgba(3, 20, 26, 0) 100%);
    background: radial-gradient(circle, #fff300 0%, rgba(3, 20, 26, 0) 100%);
    left: 0;
    width: 700px;
    height: 700px;
    border-radius: 100%;
    z-index: 2;
    filter: blur(100px);
    top: 0;
    transform: translate(-50%, -50%);
    opacity: .3;
    
}

/* step area end here */



/* security area start here */

.security__area {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-block: 400px;
}

.security__image {
    position: absolute;
    left: -280px;
    top: -250px;
    width: 80%;
}

.security__text h4 {
    font-size: 50px;
    margin-bottom: 19px;
    font-weight: 500;
}

.security__text p {
    font-size: 25px;
    line-height: 30px;
}

.security__content {
    position: relative;
    z-index: 2;
}

.security__text {
    max-width: 768px;
    margin-left: auto;
}

/* security area end here */



/* investor article start here */

.investor__article {
    margin-top: -400px;
}


.investor__article__container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-block: 400px 200px;
}

.investor__article__text {
    position: relative;
    z-index: 2;
}

.investor__article__text h4 {
    font-size: 50px;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 59px;
}

.investor__article__text p {
    font-size: 24px;
    font-weight: 400;
    line-height: 35px;
}

.investor__black__overlay {
    position: absolute;
    bottom: -5px;
    right: 0;
    left: 0;
    z-index: 1;
}

.investor__black__overlay svg {
    width: 100%;
}

.investor__yellow__overlay {
    position: absolute;
    content: '';
    background: #fff300;
    background: -webkit-radial-gradient(circle, #fff300 0%, rgba(3, 20, 26, 0) 100%);
    background: radial-gradient(circle, #fff300 0%, rgba(3, 20, 26, 0) 100%);
    border-radius: 100%;
    width: 1130px;
    height: 1130px;
    top: 50%;
    left: 0;
    z-index: 2;
    filter: blur(100px);
    opacity: .3;
    transform: translate(-50%, -50%);
}

.img_coins {
    transform: scale(0.7);
    /* Aplica blur apenas nas bordas */
    mask: radial-gradient(
        circle at center,
        black 60%,
        transparent 100%
    );
    /* Adiciona uma sombra suave */
}

.investor__image {
    position: relative;
}

.investor__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    
    /* Gradiente linear horizontal - blur das laterais para o centro */
    background: linear-gradient(
        to right,
        rgba(3, 20, 25, 0.8) 0%,        /* Lado esquerdo - mais forte */
        rgba(3, 20, 25, 0.6) 5%,       /* Diminuindo */
        rgba(3, 20, 25, 0.4) 15%,       /* Diminuindo mais */
        rgba(3, 20, 25, 0.2) 25%,       /* Quase transparente */
        transparent 55%,                 /* Centro - transparente */
        transparent 65%,                 /* Centro - transparente */
        rgba(3, 20, 25, 0.2) 55%,       /* Quase transparente */
        rgba(3, 20, 25, 0.4) 65%,       /* Diminuindo mais */
        rgba(3, 20, 25, 0.6) 75%,       /* Diminuindo */
        rgba(3, 20, 25, 0.8) 90%       /* Lado direito - mais forte */
    );
    
    /* Aplica blur apenas nas laterais */
    mask: linear-gradient(
        to right,
        black 0%,                       /* Lado esquerdo - blur ativo */
        black 20%,                      /* Blur ativo */
        transparent 30%,                /* Centro - sem blur */
        transparent 70%,                /* Centro - sem blur */
        black 80%,                      /* Blur ativo */
        black 100%                      /* Lado direito - blur ativo */
    );
    
    /* Aplica o blur */
    filter: blur(40px);
    
    /* Suaviza a transição */
    transition: all 0.6s ease-in-out;
}

/* investor article end here */



/* testimonial area start here */

.testimonial__black__overlay {
    position: absolute;
    bottom: 153px;
    left: 0;
    right: 0;
    z-index: 2;
}
.testimonial__wrapper {
	padding-inline: 60px;
	margin-top: -150px;
}
.testimonial__text {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 190px;
}

.testimonial__text h4 {
    font-size: 50px;
    margin-bottom: 33px;
    font-weight: 500;
    line-height: 59px;
}

.testimonial__text p {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 40px;
}

.free__account__btn {
    padding: 16px 90px;
    border-radius: 100px;
    background-color: var(--primary-color);
    display: inline-flex;
    font-size: 18px;
    color: #031518;
}

.free__account__btn:hover {
    background-color: #fff;
}

/* testimonial area end here */



/* footer area start here */

.footer__area {
    padding-block: 100px;
}

.support_email {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer__links a {
    color: var(--primary-color);
    font-size: 24px;
    margin: 0 10px;
}

.footer__logo img {
    width: 265px;
    margin: auto;
}

/* footer area end here */