

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color: #070F2B;
    --secondary-color: #7C01DE;
    --third-color: #4A0AA6;
    --primary-color-hover: #18244d;
    --secondary-color-hover: #9737e6;
    --third-color-hover: #6a1fd1;
    --primary-font-color: #fff;
    --secondary-font-color: #9290C3;
    --primary-font: 'Merriweather Sans', serif;
    --secondary-font: 'Popins', sans-serif;
}

html{
    scroll-behavior: smooth;
    scroll-snap-align: center;
}

body{
    font-family: var(--primary-font);
    background-color: var(--primary-color);
    color: var(--primary-font-color);
    overflow-x: hidden;
}

.hidden
{
    display: none;
}

.mobile-content{
    display: none;
}

.header-mobile{
    display: none;
}

.headerContent{
    padding: 1.4rem 0 1rem 0;
    display: flex;
    justify-content: center;
    align-items: end;
    list-style: none;
    text-decoration: none;
    column-gap: 2rem;
    font-family: var(--secondary-font);
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.3);
}

.headerContent li{
    display: flex;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-font-color);
    cursor: pointer;
}

.headerContent li a{
    text-decoration: none;
    width: 100%;
    height: max-content;
    color: var(--primary-font-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.headerContent li a:nth-child(n+2):hover{
    color: var(--secondary-color);
    background-color: var(--primary-font-color);
}

.navigationOption{
    padding: .4rem 1.4rem;
    margin-bottom: 3px;
    border-radius: 15px;
}

.navigationOption:hover{
    background-color: var(--primary-color-hover);
    color: var(--primary-font-color);
    
}

.logo{
    width: 200px;
    margin-bottom: .4rem;
}

.heroSection{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 6rem auto 2rem auto;
    column-gap: 1rem;
}

.heroImage{
    width: 350px;
    max-width: 350px;
}

.heroTitle{
    font-size: 2rem;
    font-weight: bold;
    font-family:var(--primary-font);
}

.heroContent{
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 540px;
    justify-content: center;
    align-items: center;
    row-gap: 1.5rem;
}

.heroButton{
    padding: .8rem 1.4rem;
    border-radius: 15px;
    background-color: var(--third-color);
    color: var(--primary-font-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 40%;
}

.heroButton:hover{
    background-color: var(--third-color-hover);
    color: var(--primary-font-color);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(124, 1, 222, 0.8);
}

.aboutMe{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 4rem;
    margin: 8rem auto 2rem auto;
    scroll-margin-top: 4rem;
}

.aboutMeButton{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .7rem 2rem;
    border-radius: 15px;
    background-color: var(--third-color);
    color: var(--primary-font-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    transition: all 0.3s ease;
    column-gap: 0.5rem;
    margin-top: .6rem;
}

.aboutMeButton:hover{
    background-color: var(--third-color-hover);
    color: var(--primary-font-color);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(124, 1, 222, 0.8);
}

.instagramLogo{
    width: 20px;
    fill: var(--primary-font-color);
}

.aboutMeImage{
    width: 400px;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(124, 1, 222, 0.5);
    user-select: none;
    cursor: default;
}

.aboutMeContent{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    row-gap: .6rem;
    max-width: 600px;
}

.aboutMeText{
    font-size: 1.1rem;
    color: var(--secondary-font-color);
    font-family: var(--secondary-font);
}

.interestSection{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8rem auto 2rem auto;
    flex-direction: column;
    width: 50%;
    text-align: center;
    row-gap: .6rem;
    scroll-margin-top: 4rem;
}

.interestText{
    font-size: 1.1rem;
    color: var(--secondary-font-color);
    font-family: var(--secondary-font);
}

.form-section{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-direction: column;
    margin-top: 6rem;
}

.form-confirmacao-container {
    position: relative;
    max-width:600px;
    width: 40vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: var(--primary-color);
    border-radius:25px;
    margin-bottom: 4rem;
    box-shadow: 0px 0px 60px rgba(74,10,166, 0.8);
}

.form-confirmacao-titulo {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-font-color);
    font-family: var(--secondary-font);
}

.form-confirmacao {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    gap: 0.6rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-size: 1.2rem;
    color: var(--primary-font-color);
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid var(--third-color);
    border-radius: 8px;
    background-color: var(--primary-color);
    color: var(--primary-font-color);
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0px 0px 8px rgb(106, 0, 255);
    border-color: var(--secondary-color);
}


.form-confirmacao-botao {
    padding: 1rem 6rem;
    background-color: var(--third-color);
    color: var(--primary-font-color);
    font-size: 1.2rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
    width: max-content;
    margin: 1rem auto 0 auto
}

.form-confirmacao-botao:hover {
    background-color: var(--third-color-hover);
    transform: scale(1.05);
}



.footer-message{
    margin: 5rem 0 1rem 0;
    text-align: center;
    font-size: 0.8rem;
}

.error-message{
    font-size: 12px;
    color: red;
}

.no-scroll{
    overflow: hidden;
}

.overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.90);
    z-index: 3;
    overflow: hidden;
}

.form-overlay{
    position: fixed;
    top:50%;
    left:50%;
    translate: -50% -50%;
    display:none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:700px;
    height:600px;
    background-color: rgba(10, 10, 10, 0.8);
    border-radius: 25px;
    z-index: 10;
    row-gap: 2rem;
    text-align: center;
}

.loading{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border-top: 3px solid var(--secondary-color);
    animation: spin 1.6s linear infinite;
    display: none;
}

.loading-title{
    font-size: 1.8rem;
    color: var(--primary-font-color);
    text-shadow: 0 0 20px var(--secondary-color-hover);
}

.loading-button{
    display: none;
    padding: 0.8rem 4rem;
    font-size: 1.2rem;
    background-color: var(--third-color);
    color: var(--primary-font-color);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ;
    display: none;
}

.loading-button:hover{
    background-color: var(--third-color-hover);
    transform: scale(1.05);
}

.show{
    display: flex;
}


@keyframes spin{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}


@media screen and (max-width:1600px){

    .logo{
        width: 160px;
    }

    .headerContent li{
        font-size: 1rem;
    }

    .heroTitle{
        font-size: 1.8rem;
    }

    .heroImage{
        width: 300px;
        height: 300px;
    }

    .heroButton{
        padding: .7rem 1rem;
    }

    .aboutMeImage{
        width: 350px;
        height: 350px;
    }

    .aboutMeTitle{
        font-size: 1.4rem;
    }

    .aboutMeText{
        font-size: 1rem;
    }

    .aboutMeButton{
        padding: .7rem 1.4rem;
    }

    .interestTitle{
        font-size: 1.4rem;
    }

    .interestText{
        font-size: 1rem;
    }

    .form-title{
        font-size: 1.4rem;
    }

    .form-confirmacao-container{
        max-width: 550px;
    }

    .form-group label{
        font-size: 1.1rem;
    }
}

@media screen and (max-width:1300px){
    .heroTitle{
        font-size: 1.5rem;
    }

    .heroImage{
        width: 250px;
        height: 250px;
    }

    .heroButton{
        padding: .6rem 1rem;
        font-size: .8rem;
    }
    
    .heroButton:hover{
        box-shadow: 0 0 20px rgba(124, 1, 222, 0.6);
    }

    .aboutMeTitle{
        font-size: 1.2rem;
    }

    .aboutMeImage{
        width: 280px;
        height: 280px;
    }

    .aboutMeText{
        font-size: .9rem;
    }

    .aboutMeButton{
        padding: .6rem 1.2rem;
        font-size: .8rem;
    }
    
    .aboutMeButton:hover{
        box-shadow: 0 0 20px rgba(124, 1, 222, 0.6);
    }

    .form-group label{
        font-size: 1rem;
    }

    .form-group input, .form-group select{
        font-size: .9rem;
    }

    .form-confirmacao-botao{
        padding: .8rem 4rem;
        font-size: 1rem;
    }
}

@media screen and (max-width:1100px){
    .aboutMeContent{
        max-width: 450px;
    }

    .form-confirmacao-container{
        max-width: 550px;
        width: 80vw;
    }
}

@media screen and (max-width:1000px){
    .heroSection{
        flex-direction: column-reverse;
        row-gap: 3rem;
        margin: 4rem auto 2rem auto;
    }

    .aboutMe{
        flex-direction: column;
        row-gap: 3rem;
        margin: 4rem auto 2rem auto;
    }

    .desktop-content{
        display: none;
    }

    .hamburger {
        width: max-content;
        display: flex; 
        flex-direction: column;
        cursor: pointer;
        z-index: 11;
      }
      
      .hamburger div {
      display:block;
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 4px;
        transition: 0.4s;
      }
      
      .change div:nth-child(1) {
          transform: rotate(-45deg) translate(-10px, 4px);
      }
      
      .change div:nth-child(2){
        transform: scale(0.50);
        opacity:0;
      }
      
      .change div:nth-child(3){
        transform: rotate(45deg) translate(-11px, -6px);
      }
      
      .show{
        display:flex!important;
      }

      .mobile-logo{
        width: 150px;
        z-index: 4;
        position: relative;
        margin-top: 10px;
      }

      .header-mobile{
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        font-family: var(--secondary-font);
        box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.3);
        padding: 1.4rem;
      }

      .mobile-content{
        display: none;
        position: absolute;
        height: 90vh;
        top: 10vh;
        left: 0;
        z-index: 10;
        flex-direction: column;
        align-items: start;
        gap: 1.6rem;
        margin-top: 1rem;
      }

      .mobile-content li{
        margin-left:1rem ;
        list-style-type: none;
        text-align: start;
      }

      .mobile-content a{
        color: #fff;
        text-decoration: none;
        font-family: var(--font-principal);
        font-weight: 500;
        font-size: 1.4rem;
      }

      .mobile-logo{
        width: 120px;
      }

}

@media screen and (max-width:800px){
    .form-overlay{
        width: 90vw;
        height: 500px;
    }
}


@media screen and (max-width:600px) {
    .heroTitle{
        font-size: 1.2rem;
    }

    .heroImage{
        width: 200px;
        height: 200px;
    }

    .aboutMeImage{
        width: 230px;
        height: 230px;
    }

    .interestSection{
        margin: 3rem auto;
        width: 75%;
    }

    .aboutMeText{
        font-size: 1rem;
    }

    .loading-title{
        font-size: 1.3rem;
    }

    .loading-button{
        padding: .6rem 3.6rem;
        font-size: 1rem;
    }
    
}

@media screen and (max-width:500px){

    .aboutMeContent{
        max-width: 80vw;
    }
    .aboutMeText{
        font-size: .8rem;
    }

    .aboutMeTitle{
        font-size: 1rem;
    }

    .aboutMeButton{
        padding: .5rem 1rem;
        font-size: .7rem;
    }

    .aboutMeImage{
        width: 200px;
        height: 200px;
    }

    .interestTitle{
        font-size: 1rem;
    }

    .interestText{
        font-size: .8rem;
    }

    .form-section{
        margin-top: 3rem;
    }

    .form-confirmacao-container {
        box-shadow: 0px 0px 20px rgba(74, 10, 166, 0.8);
    }

    .form-group label{
        font-size: .9rem;
    }

    .form-group input, .form-group select{
        font-size: .8rem;
        padding: 0.5rem;
    }

    .form-confirmacao-botao{
        padding: .6rem 3rem;
        font-size: .9rem;
    }

    .mobile-content a {
        font-size: 1rem;
    }

    .form-title{
        font-size: 1rem;
    }

    .form-overlay{
        width: 90vw;
        height: 400px;
    }

    .loading-title{
        font-size: 1.1rem;
    }

    .loading-button{
        padding: .5rem 3rem;
        font-size: 1rem;
    }
}


@media screen and (max-width:450px){
    .heroTitle{
        font-size: 1rem;
    }

    .heroImage{
        width: 180px;
        height: 180px;
    }

    .aboutMeImage{
        width: 180px;
        height: 180px;
    }

    .interestSection{
        width: 85%;
    }

    .interestText{
        font-size: .7rem;
    }

    .form-confirmacao-container {
        width: 90vw;
        padding: 1.6rem;
    }

    .form-confirmacao-botao{
        padding: .5rem 2.5rem;
        font-size: .8rem;
    }

    .mobile-content a {
        font-size: 0.9rem;
    }

    .heroButton{
        padding: .5rem 1rem;
        font-size: .7rem;
    }

    .heroSection{
        margin: 2rem auto;
        gap: 1.2rem;
        max-width: 90vw;
    }

    .aboutMe{
        margin: 3rem auto;
    }

    .aboutMeContent{
        max-width: 90vw;
    }

    .aboutMeButton{
        padding: .5rem 1rem;
        font-size: .7rem;
    }

    .instagramLogo{
        width: 15px;
    }
}

@media screen and (max-width:400px) {
    .form-group label{
        font-size: .8rem;
    }

    .form-overlay{
        width: 90vw;
        height: 340px;
    }

    .loading-title{
        font-size: 1rem;
    }

    .loading-button{
        padding: .4rem 2.5rem;
        font-size: .8rem;
    }
}

@media screen and (max-width: 350px){
    .aboutMeText{
        font-size: .6rem;
    }

    .heroTitle{
        font-size: .9rem;
    }

    .heroButton{
        padding: .4rem .8rem;
        font-size: .6rem;
    }

    .heroImage{
        width: 150px;
        height: 150px;
    }

    .aboutMeImage{
        width: 150px;
        height: 150px;
    }

    .aboutMeTitle{
        font-size: .8rem;
    }

    .aboutMeButton{
        padding: .4rem .8rem;
        font-size: .6rem;
    }

    .interestTitle{
        font-size: .8rem;
    }

    .interestText{
        font-size: .6rem;
    }

    .form-confirmacao-container {
        width: 95vw;
        padding: 1.2rem;
    }

    .form-group label{
        font-size: .7rem;
    }

    .form-group input, .form-group select{
        font-size: .6rem;
        padding: 0.4rem;
    }
}