@font-face {
    font-family: PP mori;
    src: url(./ppmori.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: PP mori;
    color: #fff;
}



.main {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}



html,
body {
    height: 100%;
    width: 100%;
}

#purple {
    height: 100vh;
    width: 100vw;
    top: 0;
    position: fixed;
    z-index: 100;
    background-color: #c4ff00;
    opacity: 0;
    display: none;
    transition: opacity ease 1s;

}

.cursor {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    position: fixed;
    background-color: #c4ff00;
    z-index: 100;
    transition: background-image ease 0.5s;
    background-position: center;
    background-size: cover;
    mix-blend-mode: difference;
}

.main {
    background-color: #0F0D0D;
    cursor: none;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.page1 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 9;
    padding-top: 12vw;
}


#nav {
    height: 55px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: fixed;
    mix-blend-mode: difference;
    z-index: 102;
}

#nav img {
    height: 250px;
    margin-left: -60px;
    margin-top: 20px;
}

#nav-part2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#nav #circle {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0;
}

.menu {
    width: 50%;
    flex-grow: 1;
    display: flex;
    justify-content: end;
    gap: 1rem;
}

.menu-line {
    width: min-content;
    height: 1.25rem;
    min-height: 1.25rem;
    position: relative;
    overflow: hidden;

}

.nav-link.top-1 {
    margin-top: -1.10rem;

}

.nav-link {
    display: block;
    transition: transform 0.6s ease, opacity 0.6s ease;
    text-decoration: none;

}

.menu-line:hover .nav-link.top-1 {
    transform: translateY(20px);
}

.menu-line:hover .nav-link:not(.top-1) {
    transform: scale(1.2) translateY(20px);
}


.page1 h1 {
    font-size: 8vw;
    font-weight: 300;
    font-family: PP mori;

    margin-left: 6vw;
    transform-origin: left;
}

.page1 h2 {
    font-size: 8vw;
    font-weight: 300;
    transform-origin: left;

    margin-left: 26vw;
}

.page1 video {
    width: 60%;
    margin-top: 10vw;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}

.page2 {
    min-height: 80vh;
    width: 100%;
    padding: 100px 5vw;
    border-bottom: 2px solid #6c6c6c;
    position: relative;
    z-index: 9;
}

.page2 h1 {
    font-size: 7vw;
    font-weight: 500;
    color: #111;

}

.page2-container {
    height: 60vh;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page2-left {
    width: 40%;
}


.page2-right {
    width: 24%;
}

.page2-left h2 span {
    font-size: 4vw;
    font-weight: 300;
    color: #000000;
    line-height: 4vw;
}

.page2-right p {
    font-size: 28px;
    color: #111;
}

.page2-right button {
    width: 100%;
    border-radius: 50px;

    border: none;
    padding: 4px 0;
    background-color: #c4ff00;
    color: #111;
    margin-top: 20px;
    transition: all;
    transition-duration: 0.5s;
}

.page2-right button:hover {
    background-color: #c3ff0090;
}

.page3 {
    min-height: 100vh;
    width: 100%;
    padding-top: 100px;
    position: relative;
    z-index: 9;
}

.page3 h1 {
    font-size: 6.8vw;
    font-weight: 600;
    color: #111;
    margin-left: 100px;
}

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-text {
    font-family: 'Courier New', Courier, monospace;
    margin-top: 25px;
    font-size: 16px;
    color: #ffffff8c;
    width: 600px;
    line-height: 1.1;
    margin-left: 10px;
}

.video-text h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.video-text p {
    margin: 5px 0 0 0;
    font-size: 14px;
    line-height: 1.2;
}

.page3-part1 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

}

.page3-part1 img {
    width: 450px;
    height: 450px;
    margin-top: 160px;
    object-fit: cover;

}

.page3-part1 video {
    object-fit: cover;
    width: 600px;
    height: 450px;
    margin-top: 40px;
}

.page4 {
    min-height: 100vh;
    width: 100%;
    z-index: 9;
    position: relative;
    padding: 170px 100px;
}

.elem {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.elem img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: opacity, transform;

    transform: translateY(10%) rotate(2deg);
}

.elem img:nth-child(1) {
    left: 2%;
}

.elem img:nth-child(3) {
    right: 5%;
}

.text-div {
    height: 16vh;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.elem h1 {
    font-size: 7.5vw;
    font-weight: 600;
    transition: all ease-out 0.5s;
}

.elem:hover h1 {
    transform: translateY(-100%);
    color: #c4ff00;
}

.elem:hover img {
    opacity: 1;
    transform: translateY(0%) rotate(0deg);

}


.page5 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 9;
    padding: 140px 100px;
}

.page5 h2 {
    color: #d1d1c7;
    font-size: clamp(3rem, 2.25rem + 3.75vw, 5.625rem);
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.page5 h2 span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

.box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 0 20px;
    border-top: 2px solid #dadada;
}

.box-link {
    display: block; /* Faz o link ocupar toda a largura e altura da .box */
    text-decoration: none; /* Remove o sublinhado padrão */
    color: inherit; /* Mantém as cores do texto como no CSS original */
}


.box:nth-last-child(1) {
    border-bottom: 2px solid #dadada;

}

#fixed-image {
    height: 30vw;
    width: 24vw;
    border-radius: 15px;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#fixed-image.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

#page6 {
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    padding: clamp(4.5rem, 4.3571rem + 0.7143vi, 5rem) clamp(1.6875rem, 1.6339rem + 0.2679vi, 1.875rem);
}

#page6 h2 {
    color: #111;
    font-size: clamp(3rem, 2.25rem + 3.75vw, 5.625rem);
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

#page6 h2 span {
    color: #111;
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

#page6 .serviText {
    color: #111;

    display: flex;
    width: 100%;
    justify-content: end;
    align-items: flex-start;
    gap: 3rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#page6 .serviText .para {
    color: #474747;

    font-size: clamp(0.875rem, 0.5393rem + 0.5786vi, 1rem);
    text-transform: uppercase;
}

#page6 .serviText .serviText2 {
    width: 35%;
    font-size: clamp(1rem, 0.9286rem + 0.3571vi, 1.25rem);
    color: #111;

    line-height: 120%;
    text-wrap: balance;
}

#page6 .serviText .serviText2 p {
    color: #474747;
}

#page6 .services {
    width: 100%;
    padding: 3rem 0rem;
    position: relative;
}

#page6 .services .one {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
}

#page6 .services .border {
    border-top: 2px solid #111;
    padding-top: 3rem;
}

#page6 .services .one .oneL {
    width: 50%;
}

#page6 .services .one .oneL h2 {
    color: #111;
    font-size: clamp(1.9531rem, 1.496rem + 2.2854vi, 3.5529rem);
    font-family: "Montreal Regular";
}

#page6 .services .one .oneR {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
}


#page6 .services .one .oneR h3 {
    font-size: clamp(1.9531rem, 1.496rem + 2.2854vi, 3.5529rem);
    font-family: "Montreal Regular";
    color: #111;
}

#page6 .services .one .oneR p {
    color: #474747;
    padding-top: clamp(1.125rem, 1.0893rem + 0.1786vi, 1.25rem);
    padding-bottom: clamp(1.125rem, 1.0893rem + 0.1786vi, 1.25rem);
    max-width: 80%;
}

#page6 .services .one .oneR .list {
    padding-top: clamp(1.125rem, 1.0893rem + 0.1786vi, 1.25rem);
    padding-bottom: clamp(1.125rem, 1.0893rem + 0.1786vi, 1.25rem);
    color: #111;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    width: 100%;
}

.listItem.bt {
    border: none !important;
}

#page6 .services .one .oneR .list .listItem {
    font-size: clamp(1.25rem, 1.0359rem + 1.0707vi, 1.9995rem);
    display: flex;
    align-items: flex-start;
    color: #111;
    border-bottom: 2px solid #111;
    width: 100%;
    padding-bottom: 1rem;
    gap: 2rem;
}

#page6 .services .one .oneR .list .listItem span {
    font-size: clamp(1rem, 0.9286rem + 0.3571vi, 1.25rem);
    padding-top: 5px;
    color: #111;

}

#loader {
    height: 100%;
    width: 100%;
    background-color: #000;
    position: fixed;
    z-index: 999;
    top: 0;
    transition: all ease 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader h1 {
    font-size: 4vw;
    color: transparent;
    background: linear-gradient(to right, #c4ff00, #3cff00);
    -webkit-background-clip: text;
    position: absolute;
    opacity: 0;
    animation-name: load;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-timing-function: linear;
}

#loader h1:nth-child(2) {
    animation-delay: 2s;
}

#loader h1:nth-child(3) {
    animation-delay: 3s;
}

@keyframes load {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 100px;
    background-color: #0F0D0D;
    color: #fff;
    gap: 50px;
    flex-wrap: wrap;
    height: 90vh;
    width: 100%;
    position: relative;
    z-index: 10;
}

.footer-left h2 {
    font-size: 3rem;
    line-height: 1.3;
    max-width: 600px;
    font-weight: 600;
}

.footer-left h2 span {
    display: inline-block;
    margin-right: 8px;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: floatRotate 4s ease-in-out infinite alternate;
}

@keyframes floatRotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-3px) rotate(-1deg);
    }

    50% {
        transform: translateY(2px) rotate(1deg);
    }

    75% {
        transform: translateY(-1px) rotate(-2deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}


.footer-right {
    display: flex;
    flex-direction: column;
    gap: 50px;

}

.footer-menu {
    display: flex;
    gap: 10px;

}

.footer-menu a {
    text-decoration: none;
    margin-right: 20px;

    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #c4ff00;
}

.email-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 12px;
    border: 2px solid #c4ff00;
    text-decoration: none;
    color: #c4ff00;
    font-weight: 500;
    transition: all 0.3s;
}

.email-box .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.email-box:hover {
    background-color: #c4ff00;
    color: #0F0D0D;
}

.email-box:hover .arrow {
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.social-links a svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    transition: all 0.3s;
}

.social-links a:hover svg {
    fill: #c4ff00;
    transform: scale(1.1);
}


@media (max-width: 480px) {

    #loader h1 {
        font-size: 11vw;

    }

    #nav img {
        height: 150px;
        margin-left: -40px;
        margin-top: 5px;
    }

    .menu {
        width: auto;
        flex-grow: 0;
        margin-top: 4px;

        gap: 1rem;
        font-size: 0.8rem;

    }

    .menu .menu-line a {
        margin-top: 5px;

    }



    .page1 {
        margin-top: 15vw !important;
    }


    .page1 h1 {
        width: 90vw;
        font-size: 10vw;
        margin-left: 25vw ;
    }

    .page1 h2 {
        margin-top: 3vw;
        width: 90vw;
        font-size: 10vw;
        margin-left: -10vw;
    }

    .page1 video {
        width: 100%;
        margin-top: 20vw;
    }

    .page2-container {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .page2 h1 {
        color: #fff;
        font-size: 50px;
        margin-bottom: 40px;
    }

    .page2-left,
    .page2-right {
        width: 100%;
    }

    .page2-left h2 {
        font-size: 4vw;
        font-weight: 300;
        color: #111;
        line-height: 1.2;

    }

    .page2-left h2 span {
        display: block;
    }

    .page2-left h2 .top-text {
        text-align: left;
        color: #fff;
    }

    .page2-left h2 .bottom-text {
        text-align: right;
        color: #fff;

    }

    .page2-right {

        margin-top: 100px;

    }

    .page2-right p {
        color: #707070;
        font-size: 1rem;

    }

    .page2-right button {
        width: 100px;
        font-size: 0.8rem;
    }



    .page3 h1 {
        font-size: 14vw;
        margin-left: 10vw;
        width: 15vw;
        margin-bottom: 40px;
    }

    .page3-part1 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .page3-part1 img,
    .page3-part1 video {

        width: 90vw;
        height: auto;
        margin-top: 0;
    }

    .main>.page3:nth-of-type(3) .video-text h3,
    .main>.page3:nth-of-type(3) .video-text p {
        color: #111;
    }


    .video-text {
        width: 90vw;
        font-size: 14px;
        margin-left: 0;
    }



    .page4 {
        padding: 100px 20px;
    }

    .elem {
        margin-top: 100px;
        gap: 10px;
    }


    .elem h1 {
        font-size: 11vw;
        font-weight: 600;
        transition: color 0.5s ease-out;
        animation: colorChange 0.7s ease-in-out infinite alternate;
        will-change: color;
    }

    @keyframes colorChange {
        0% {
            color: white;
        }

        100% {
            color: #c4ff00;
        }
    }


    .elem h1:nth-child(1) {
        display: none;
    }

    .elem img {
        display: none;
    }

    .page5 {
        padding: 80px 20px;
    }



    .page5 h2 {
        font-size: 7.1vw;
        margin-bottom: 30px;
    }

    .box {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
    }

    .box h3 {
        margin-bottom: 15px;
        font-size: 1.5rem;

    }

    .box h4 {
        color: #707070;

    }

    #fixed-image {
        display: none;
    }

    #page6 {
        padding: 3rem 1rem;
        border-radius: 0;
    }

    #page6 h2 {
        font-size: 8vw;

    }

    #page6 .serviText .para {
        font-size: 3vw;

    }


    #page6 .serviText {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    #page6 .serviText .serviText2 {
        width: 100%;
        font-size: 1rem;
    }

    #page6 .services .one {
        flex-direction: column;
    }

    #page6 .services .one .oneL {
        display: none;
    }


    #page6 .services .one .oneR {
        width: 100%;
    }

    #page6 .services .one .oneR p,
    #page6 .services .one .oneR .list .listItem {
        max-width: 100%;
    }

    .footer {
        flex-direction: column;
        padding: 40px 20px;
        height: auto;
        gap: 30px;
    }

    .footer-left h2 {
        font-size: 2rem;
        max-width: 100%;
    }

    .footer-right {
        width: 100%;
        gap: 20px;
    }

    .footer-menu {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-menu a {
        font-size: 1rem;
        margin-right: 10px;
    }

    .email-box {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 481px) and (max-width: 900px) {

    #loader h1 {
        font-size: 11vw;

    }

    #nav img {
        height: 170px;
        margin-left: -40px;
        margin-top: 5px;
    }

    .menu {
        width: auto;
        flex-grow: 0;
        margin-top: 4px;

        gap: 1rem;
        font-size: 1.1rem;

    }

    .menu .menu-line a {
        margin-top: 5px;

    }


    .page1 {
        margin-top: 15vw;
    }


    .page1 h1 {
        width: 90vw;
        font-size: 10vw;
        margin-left: 19vw;
    }

    .page1 h2 {
        margin-top: 3vw;
        width: 90vw;
        font-size: 10vw;
        margin-left: -7vw;
    }


    .page1 video {
        width: 100%;
        margin-top: 20vw;
    }

    .page2-container {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .page2 h1 {
        color: #fff;
        font-size: 90px;
        margin-bottom: 40px;
    }

    .page2-left,
    .page2-right {
        width: 100%;
    }

    .page2-left h2 {
        font-size: 4vw;
        font-weight: 300px;
        color: #111;
        line-height: 1.2;

    }

    .page2-left h2 span {
        display: block;
    }

    .page2-left h2 .top-text {
        text-align: left;
        color: #fff;
    }

    .page2-left h2 .bottom-text {
        text-align: right;
        color: #fff;

    }

    .page2-right {

        margin-top: 100px;

    }

    .page2-right p {
        color: #707070;
        font-size: 2rem;

    }

    .page2-right button {
        width: 100px;
        font-size: 1rem;
    }

    .page3 h1 {
        font-size: 14vw;
        margin-left: 10vw;
        width: 15vw;
        margin-bottom: 40px;
    }


    .page3-part1 {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .page3-part1 img,
    .page3-part1 video {
        width: 80vw;
        height: auto;
        margin-top: 0;
    }

    .video-text {
        width: 80vw;
        font-size: 15px;
        margin-left: 0;
    }

    .page4 {
        padding: 100px 20px;
    }

    .elem {
        margin-top: 100px;
        gap: 10px;
    }


    .elem h1 {
        font-size: 11vw;
        font-weight: 600;
        transition: color 0.5s ease-out;
        animation: colorChange 0.7s ease-in-out infinite alternate;
        will-change: color;
    }

    @keyframes colorChange {
        0% {
            color: white;
        }

        100% {
            color: #c4ff00;
        }
    }


    .elem h1:nth-child(1) {
        display: none;
    }

    .elem img {
        display: none;
    }

    .page5 {
        padding: 100px 40px;
    }

    .page5 h2 {
        font-size: 7.1vw;
        margin-bottom: 30px;
    }


    .box {
        flex-direction: row;
        height: 100px;
        padding: 0 20px;
    }


    .box h3 {
        margin-bottom: 15px;
        font-size: 1.6rem;

    }

    .box h4 {
        color: #707070;

    }

    #fixed-image {
        display: none;
    }


    #page6 {
        padding: 4rem 2rem;
        border-radius: 1rem;
    }

    #page6 h2 {
        font-size: 8vw;

    }

    #page6 .serviText {
        flex-direction: row;
        gap: 2rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    #page6 .serviText .serviText2 {
        width: 50%;
        font-size: 1.1rem;
    }

    #page6 .services .one {
        flex-direction: row;
    }

    #page6 .services .one .oneL,
    #page6 .services .one .oneR {
        width: 50%;
    }

    #page6 .services .one .oneR p,
    #page6 .services .one .oneR .list .listItem {
        max-width: 80%;
    }


    /* lado direito (menu + email + social) */


    .footer {
        flex-direction: column;
        padding: 40px 20px;
        height: auto;
        gap: 30px;
    }

    .footer-left h2 {
        font-size: 2rem;
        max-width: 100%;
    }

    .footer-right {
        width: 100%;
        gap: 20px;
    }

    .footer-menu {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-menu a {
        font-size: 1rem;
        margin-right: 10px;
    }

    .email-box {
        width: 100%;
        justify-content: center;
    }

}