@font-face {
    font-family: 'SoehneBuch';
    src: url('./fonts/soehne-buch.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SoehneKraftig';
    src: url('./fonts/soehne-kraftig.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TiemposTextRegular';
    src: url('./fonts/tiempos-text-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}


:root {
    --primary: #7C49B8;
    --primary-light: #B6A0E5;
    --primary-pressed: #683D9A;
    --primary-semibold: #7C49B8;
	--primary-light: #E4DEF6;
    --dark-primary: #28044A;
    --gray-1: #393939;
    --gray-2: #E5E5E5;
    --gray-3: #B8B8B8;
    --gray-4: #A8A8A8;
    --gray-5: #CDCDCD;
    --gray-6: #F5F5F5;
    --gray-7: #747474;
    --bg-dim: #EDEDED;
}

body {
    background-color: #EDEDED;
    font-family: 'SoehneBuch', Arial, sans-serif;
}

p {
    margin: 0;
    font-size: clamp(20px, 2vh, 16px);
    font-family: 'SoehneBuch', Arial, sans-serif;
    line-height: 1.5;
}

.paragraph-2 {
    font-size: 16px;
    font-family: 'SoehneBuch', Arial, sans-serif;;
}

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

/* styles.css */
body {
   
    margin: 0;
    padding: 0;
}

.header-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.get-started-btn {
    font-size: 1em;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'SoehneKraftig', Arial, sans-serif;
    letter-spacing: -1px;
}


h1 {
    font-size: clamp(80px, 3vh, 54px);
}
h2 {
    font-size: clamp(48px, 3vh, 54px); ;
}
h3 {
    font-size: clamp(32px, 2vh, 28px);
    
}
h4 {
    font-size: clamp(24px, 2vh, 20px);
}

.subtext-lead {
    font-size: clamp(24px, 2vh, 20px);
}

a, .nav-link {
    color:black;
    
}
.nav-link {
    font-family: 'SoehneKraftig', Arial, sans-serif;;
}

a:hover {
    color:var(--primary)
}

.btn {
    transition: all .3s ease-in-out;
    font-family: 'SoehneKraftig', Arial, sans-serif;;
    
}
.btn:hover {
    transform: translateY(-5px);
    background-color:var(--primary-semibold);
    color: white;
}

.primary-btn {
    background-color: var(--primary);
	border: 1px solid var(--primary);
    color:white;
    padding: 8px 25px;
    border-radius: 4px;
	transition: all .2s ease;
	text-decoration: none;
}

.primary-btn:hover {
	background-color: var(--primary-pressed);
	border-color: var(--primary-pressed);
	color: white;
}

.secondary-btn {
	background-color: var(--white);
	border: 1px solid var(--gray-3);
    color:black;
    padding: 8px 25px;
    border-radius: 4px;
	transition: all .2s ease;
	text-decoration: none;
}

.secondary-btn:hover {
	background-color: var(--gray-6);
	color: black;
}

.secondary-btn:active {
	background-color: var(--primary-light);
}

.text-btn {
    font-size: 16px;
}
.small-btn {
    font-size: 16px;
}

.light-btn {
    border: 1px solid white;
    color: white;
    padding: 16px;
    border-radius: 8px;
}


.light-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}

header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 222;
}

header .nav {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
}


#header > div {
    text-align: right;
}
#header > div button {
    font-size: 3rem;
    color:var(--primary);
    position: relative;
}

#mobile_ham_nav {
    background-color: transparent;
    border: none;
    position: relative;
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 2rem;
    height: 3px;
    border-radius: 3px;
    background-color: var(--primary);
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: var(--primary);
    border-radius: 3px;
    transition: .5s;
    left:0;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    right: -0.2rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: block;
}

#check:checked ~ .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}


#check:checked ~ #header > ul {
    display:block;
}



header {
    height: 100%;
    min-height: 600px;
	position: relative;
}



header .bg-img {
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: -1;
}

header .hero-bg-gradient {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 15%, rgba(237, 237, 237, 1) 30%, rgba(237, 237, 237, 1) 100%);
	z-index: -2;
}

header .bg-img.bg-index {
	background-position: right -100px bottom;
}

@media (min-width: 768px) {
	header .bg-img.bg-index {
		background-position: right -100px bottom;
	}
}

header .bg-img img {
	height: 100%;
}

header > div {
    padding-top: 180px;
}


@media (min-width: 768px) and (max-width: 1600px){
    header > div {
        padding-top: 140px;
    }
    
}

@media (max-width: 767px){
    header > div {
        padding-top: 180px;
    }
}

.hero-text-box {
    max-width: 648px; 
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.index-hero-text {
	padding-left: 24px;
	max-width: 700px; 
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.index-hero-text h1 {
	font-size: 56px;
	letter-spacing: -1.6px;
	line-height: 100%;
}

.options-section {
	padding: 40px 24px 750px 24px;
}

.option-box {
	padding: 16px;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.home-page-btns a {
	font-size: 20px;
}

.option-box i {
	font-size: 24px;
}

.icon-box {
	width: 48px;
	height: 48px;
}

@media(min-width: 992px) {
	.index-hero-text h1 {
		font-size: 80px;
	}

	.options-section {
		padding: 80px 24px 56px 24px;
	}

	.option-box {
		padding: 40px;
		gap:  32px;
	}

	.option-box i {
		font-size: 32px;
	}

	.icon-box {
		width: 64px;
		height: 64px;
	}
}


.notification {
    color: var(--primary-pressed);
}


header h1 {
    letter-spacing: -2px;
}

.nav-item .nav-link:hover {
    color: var(--primary) !important;
}

.nav-item .nav-link.active {
    color: var(--primary) !important;;
}


@media (min-width: 1400px){
    header {
        min-height: 900px;
    }
}




#how-works {
    padding: 80px 20px;
    background-color: black;
    color: white;
}

#how-works article {
    max-width: 705px;
    margin: auto;
}

#how-works article span {
    font-size: clamp(80px, 3vh, 54px);
    line-height: 0.9;
}

#how-works article > div:not(:last-of-type) {
    margin-bottom: 40px;
}

#how-works article > div h2 {
    color:var(--primary)
}


#how-works p {
    color:var(--gray-2)
}





.black-box, .purple-box {
    flex-basis: 50%;
    padding: 100px 40px 130px;
}


.black-box {
    flex-basis: 60%;
}


.black-box > div {
    max-width: 568px;
}

.purple-box {
    background-image: url('./images/purple-back.png');
    background-position: center;
    background-size: cover;
    padding-left: 60px;
    padding-right: 60px;
    flex-basis: 40%;
}

#start-info h2 {
    margin-bottom: 72px;
}

#start-info ul {
    margin: 0 35px;
}
#start-info ul li {
    display: flex;
    align-items: center;
    gap:20px;
}

#start-info ul li:not(:last-of-type){
    margin-bottom: 46px;
}

#start-info ul li p {
    font-size: 18px;
}

#start-info ul li i {
    font-size: 35px;
    color: var(--primary);
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    margin-right: -20px;
}

.purple-box h3 {
    margin: 40px 0;
}

.purple-box p {
    margin-bottom: 40px;
    font-size: 18px;
}

.ceo {
    padding: 160px 60px 90px;
}

.ceo > div:nth-of-type(1){
    flex-basis: 25%;
}

.ceo > h4{
    flex-basis: 760px;
    line-height: 1.4;
    font-weight: normal;
    font-family: 'TiemposTextRegular' , sans-serif;
    letter-spacing: 0;
}

#stop-info  {
    padding: 64px
}

#stop-info .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px; 
}

@media (max-width: 1023px){
    #stop-info .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}


#stop-info .grid > div {
    padding: 32px;
    height: 220px;
    border-radius: 4px;
}
@media (min-width: 992px){
    #stop-info .grid > div p {
        font-size: 24px;
        letter-spacing: -1px;
    }
}


#stop-info .stop{
    background-color: white;
}
#stop-info .start{
    background-color: var(--primary);
    color: white;
}


#pricing {
    padding: 80px 0;
    background-color: white;
}

.price > div {
    flex-basis: 33.33333%;
}

.price .sticker {
    background-color: black;
    color: white;
    padding: 7px 20px;
    border-radius: 4px;
}


.price > div:not(:nth-of-type(1)){
    padding: 40px 25px;
    border: 2px solid var(--gray-2);
}

.price .price__ammount {
    font-size: 48px;
    font-weight: 600;
    margin: 40px 0;
}
.price .price__ammount span {
    font-size: 24px;
    text-align: center;
}


/*Vai box*/
.price > div:nth-of-type(2){
    border-color: var(--primary);

    -webkit-box-shadow: 0px 4px 68px 0px rgba(130,52,248,0.1);
    -moz-box-shadow: 0px 4px 68px 0px rgba(130,52,248,0.1);
    box-shadow: 0px 4px 68px 0px rgba(130,52,248,0.1);
}

.price i {
    margin-top: 3px;
}

.price > div:nth-of-type(2) i {
    color: var(--primary);
}

#fundraising {
    padding: 120px 0;
}

#fundraising i {
    color:var(--primary);
    font-size: 30px;
}


#fundraising img {
    max-width: 480px;
    filter: drop-shadow(41px 5px 2000px rgba(150, 111, 214, 0.2));
}


#faq {
    padding: 120px 0;
    background-color: white;
}
#faq > div > h2 {
    margin-bottom: 48px;
}

#faq .accordion-item {
    border: none;
    border-bottom: 1px solid var(--gray-2);

}
#faq .accordion-item.active {
    border-color: var(--primary);
}

#faq .accordion-button{
    font-size: 24px;
    padding: 25px 15px;
    gap: 15px;
}

#faq .accordion-button:not(.collapsed) {
    color:black;
}

#faqAccordion {
    max-width: 870px;
    margin: auto;
}


#faq .accordion-button:not(.collapsed)::after {
    background-image: none;
}

.accordion-button::after{
    background-image:none;
    font-family: "Font Awesome 6 Pro"; 
    content: "\f175";
    transform: rotate(-90deg);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
    color:var(--primary)
}

.accordion-button:focus {
    box-shadow: none;

     
}


.accordion-button:not(.collapsed) {
    background-color: white;
    box-shadow: none;
}


#accelerate {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    padding: 160px 20px;
    background-position: bottom center;
    background-size: cover;
}

#accelerate h2 {
    margin: 34px 0;
}


footer {
    padding: 80px 0 30px;
    background-color: black;
}

footer .logo {
    width: 105px;
}

footer section {
    margin-bottom: 110px;
}

footer section > article:nth-of-type(1) {
    max-width: 280px;
}

footer section > article {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

footer .label {
    color: var(--gray-4)
}

footer section > article ul li:not(:last-of-type){
    margin-bottom: 40px;
}

footer a {
    color:white;
    text-decoration: none;
    font-size: 18px;
}

.copy {
    color:var(--gray-7)
}


@media (max-width: 767px){
    h1 {
        font-size: 54px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 20px;
    }
    p {
        font-size: 16px;
    }

    #how-works article span {
        font-size: 56px;
    }

    #dashboard > div {
        margin-top: -270px;
    }

    #intro {
        padding: 60px 0;
    }

    #investor-info {
        padding: 20px 0;
    }

    .black-box, .purple-box {
        padding: 40px 20px 60px;
    }
    #start-info ul {
        margin:0;
    }
    .ceo, #stop-info {
        padding: 60px 0;
    }
    #how-it-works, #pricing, #fundraising {
        padding: 60px 0;
    }
    #accelerate {
        padding: 60px 15px;
    }
    #how-it-works .img img {
        width: 100%;
    }
    #how-it-works .text h2 {
        margin: 20px 0;
    }
    .price h2 {
        margin:20px 0 30px;
    }

    .price .price__ammount {
        font-size: 40px;
        margin: 20px 0;
    }
    .price .sticker {
        font-size: 14px;
    }
    #fundraising .img {
        height: 350px;
        overflow: hidden;
        margin-top: 30px;
    }
    #faq .accordion-button {
        font-size: 18px;
    }
    footer section > article:nth-of-type(1) {
        max-width: 100%;
    }

    footer section > article:nth-of-type(4){
        width: 100%;
    }

    .nav {
        position: fixed;
        left: 0;
        top: 60px;
        background: white;
        width: 100%;
        font-size: 16px;
    }

    .nav.open {
        transform: translateX(0);
    }

    #stop-info .grid > div {
        height: 140px;
    }
    #stop-info .grid > div {
        padding: 20px;
    }

    #stop-info .grid .start:nth-of-type(3) {
        background-color: red;
        //*order: 2;*/
    }
    footer section {
        margin-bottom: 30px;
    }
}


@media (min-width:768px) and (max-width: 1199px){
    #dashboard > div {
        margin-top: -300px;
    }
    #investor-info .holder > div:nth-of-type(1) {
        padding: 20px;
    }

    #investor-info img {
        height: 100%;
        object-fit: cover;
    }
    #stop-info {
        padding-top: 20px;
    }

    .black-box, .purple-box {
        padding: 80px 20px 100px;
    }
    #start-info ul {
        margin: 0;
    }
    .ceo{
        padding: 80px 40px;
    }

    .price > div {
        flex-basis: 45%;
    }
    .price > div:nth-of-type(1) {
        flex-basis: 100%;
    }

    #faq .accordion-button {
        font-size: 22px;
    }

    

}



