@import url('https://fonts.cdnfonts.com/css/neue-haas-grotesk-display-pro');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    background: #0C0C0D;
}

::-webkit-scrollbar {
    display: none;
}

::selection {
    background-color: #949494;
    color: #141415;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.parallax-background {
    position: relative;
    height: 103.4vh;
    overflow-x: hidden;
    overflow-y: hidden;

}

.image-parallax {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    pointer-events: none;
    object-fit: cover;
    object-position: 10%;

}

#logo-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    padding: 60px 20px;
    overflow: hidden;
}

.menu-toggle {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-decoration: none;
    text-align: right;
    color: #F5F5F5;
    letter-spacing: 0.24em;
    cursor: pointer;
}

#text-icon {
    transition: letter-spacing 300ms cubic-bezier(.96, 0, .16, 1);
}

.menu-toggle:hover #text-icon {
    letter-spacing: 0.34em;
}

#menu-icon {
    width: 30px;
    height: auto;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%) translateX(40%) rotate(22deg);
        opacity: 1;
    }

    to {
        transform: translateY(0) translateX(0) rotate(-3deg);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0) translateX(0) rotate(-3deg);
        opacity: 1;
    }

    to {
        transform: translateY(-100%) translateX(40%) rotate(15deg);
        opacity: 1;
    }
}

.menu {
    position: fixed;
    width: 87%;
    height: 87%;
    display: none;
    top: 0;
    right: 0;
    background: #949494;
    list-style: none;
    padding: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transform-origin: top right;
    z-index: 2;
    opacity: 0;
}

.menu.active {
    display: flex;
    animation: slideIn 0.7s cubic-bezier(0, .73, .02, .99) forwards;

}

.menu.closing {
    animation: slideOut 0.5s cubic-bezier(1, -0.01, .02, .99) forwards;
}

.menu.active {
    display: flex;
}

#lista-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style-type: none;
}

.item-menu {
    font-weight: 500;
    font-size: 140px;
    line-height: 115px;
    text-transform: uppercase;
    color: #141415;
    text-decoration: none;
    transition: all 0.1s cubic-bezier(1, -0.01, .02, .99);
}

.item-menu:hover {
    color: #f5f5f5;
}

#item-des {
    color: #3d3d3d;
    cursor: default;
}

.number-menu {
    font-size: 45px;
    font-weight: 500;
    text-transform: uppercase;
    color: #141415;
}

.email {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: auto;
}

#type {
    font-weight: 600;
    font-size: 15px;
    line-height: 28px;
    text-transform: uppercase;
    color: #0C0C0D;
}

#contact-email {
    text-decoration: none;
    font-weight: 700;
    font-size: 32px;
    line-height: 28px;
    color: #0C0C0D;
    transition: all 0.2s cubic-bezier(1, -0.01, .02, .99);
}

#contact-email:hover {
    text-decoration: underline;
}

.menu-header {
    display: flex;
    align-items: center;
    position: absolute;
    top: 20px;
    right: 20px;
}

.close-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-align: right;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #0C0C0D;
    cursor: pointer;
}

#text-icon-close {
    margin-top: 0;
    transition: letter-spacing 300ms cubic-bezier(.96, 0, .16, 1);
}

.close-menu:hover #text-icon-close {
    letter-spacing: 0.34em;
}

.menu.active .close-menu {
    display: flex;
}

.section-about-video {
    background: var(--BLACK, #0C0C0D);
    display: flex;
    flex-direction: column;
    align-items: end;
    position: relative;
}

.about-us-section {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background: #F5F5F5;
    transform: rotate(-3deg);
    transform-origin: top right;
    width: 98.65%;
    height: 802px;
    padding: 15px;
    margin-bottom: -140px;
    margin-top: -7.4vh;
    z-index: 1;

    position: relative;

    transition: all 0.6s cubic-bezier(.77, .02, 0, .97);
}

.about-us-section:hover {
    transform: rotate(-2.3deg);
}

.about-us-texts {
    display: flex;
    justify-content: space-between;
}

.about-us-top {
    display: flex;
    justify-content: space-between;
}

.about-us-texts-top {
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-weight: 500;
    font-size: 32px;
    line-height: 133.4%;
    color: #141415;
    max-width: 35em;
}

#about-us-header {
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    text-align: right;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-wrap: nowrap;
    color: #535156;
}

b {
    font-weight: 600;
}

.about-us-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.about-us-project-description {
    max-width: 30em;
    font-weight: 500;
    font-size: 28px;
    line-height: 125%;
    color: #242426;
}

.follow-project-link {
    display: flex;
    padding: 10px 20px;
    gap: 12px;
    border: 2px solid #0C0C0D;
    border-radius: 95px;
    font-weight: 550;
    font-size: 21px;
    color: #0C0C0D;
    text-decoration: none;
    text-wrap: nowrap;
    margin-right: 50px;
    transition: all 300ms cubic-bezier(.96, 0, .16, 1);
}

.follow-project-link:hover {
    padding: 10px 8px 10px 32px;
    color: #f5f5f5;
    background-color: #0C0C0D;
}

.video-bg-curta {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-bg-curta video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-projects {
    display: flex;
    flex-direction: column;
    padding: 90px 20px 0px 20px;
    gap: 100px;
    position: relative;
}

.projects {
    height: 100vh;
    position: relative;
    text-decoration: none !important;
}

.projects-texts {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.projects-title {
    color: var(--BLACK, #0C0C0D);
    font-family: "Neue Haas Grotesk Display Pro";
    font-size: 128.323px;
    font-style: normal;
    font-weight: 450;
    line-height: 84.322%;
    text-transform: uppercase;
}

.projects-desc {
    display: flex;
    flex-direction: column;
    color: var(--BLACK, #0C0C0D);
    text-align: justify;
    font-family: "Neue Haas Grotesk Display Pro";
    font-size: 23px;
    font-style: normal;
    font-weight: 450;
    line-height: 133.4%;
    text-decoration: none !important;
}

#project-3-desc, #project-2-desc, #project-1-desc {
    max-width: 35%;
}


#projects-desc-bold {
    margin-top: 15px;
}

.projects-number {
    color: var(--BLACK, #0C0C0D);
    font-family: "Neue Haas Grotesk Display Pro";
    font-size: 41.458px;
    font-style: normal;
    font-weight: 450;
    text-transform: uppercase;
}

.projects-image-container {
    position: absolute;
    bottom: 13%;
    width: 63.5%;
    height: 82%;
    z-index: 0;
}

.projects-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

#projects-texts-template-1 {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
}

#projects-texts-template-2 {
    text-align: right;
    align-items: flex-end;
    justify-content: flex-end;
}

#project-1-title,
#project-1-desc span {
    align-self: flex-start;
}

#project-2-title,
#project-2-desc span {
    align-self: flex-end;
}

#project-3-title,
#project-3-desc span {
    align-self: flex-start;
}

#project-1-title {
    max-width: 90%;
}

#projects-image-template-1 {
    right: 0;
}

#project-1-image {
    background-image: url('../images/images-home/cover-project-1.jpg');
}

#project-2-title {
    max-width: 70%;
}

#project-2-title br {
    display: none;
}

#project-2-number-2 {
    display: none;
}

#projects-image-template-2 {
    left: 0;
}

#project-2-image {
    background-image: url('../images/images-home/cover-project-2.jpg');
}

#project-3-title {
    max-width: 70%;
}

#project-3-image {
    background-image: url('../images/images-home/cover-project-3.jpg');
}

#projects-texts-template-2 {
    right: 0;
    display: flex;
}

#projects-image-template-2 {
    left: 0;
}

.clients-image-contact {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.clients-demoreel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: rotate(-3deg);
    transform-origin: top right;
    width: 97%;
    height: 802px;
    padding: 15px;
    border: 1px solid #BDBDBD;
    background: var(--BLACK, #0C0C0D);
    margin-top: -50px;
    z-index: 1;

    transition: all 0.4s cubic-bezier(.77, .02, 0, .97);
}

.clients-demoreel:hover {
    transform: rotate(-3.2deg);
}

.clients-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.clients-header {
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--WHITE, #F5F5F5);
    text-wrap: nowrap;
}

.clients-list {
    font-weight: 600;
    font-size: 45px;
    line-height: 133.4%;
    color: var(--WHITE, #F5F5F5);
}

#demoreel {
    gap: 10px;
    font-weight: 500;
    color: #F5F5F5;
    white-space: nowrap;

    text-decoration: none;
}

#demoreel-text {
    font-size: 8vw;
    line-height: 0px;
}

#number-demoreel {
    font-size: 50px;
}

#demoreel br {
    display: none;
}

.bg-demoreel {
    width: 100%;
    aspect-ratio: 11 / 9;
    margin-top: -150px;
    background-image: url('../images/images-about/demoreel.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 0;
}

.contact-section {
    width: 97.65%;
    height: 14%;
    bottom: 0%;
    left: 0;
    position: absolute;
    transform-origin: top left;
    transform: rotate(5deg);
    z-index: 0;
    display: flex;
    justify-content: space-between;
    background: #BDBDBD;
    padding: 20px;
    transition: all 0.4s cubic-bezier(.77, .02, 0, .97);

    text-decoration: none;
}

.contact-section:hover {
    transform: rotate(3deg);
}

.contact-text {
    font-weight: 900;
    font-size: 12vw;
    line-height: 75%;
    text-transform: uppercase;
    color: #0C0C0D;
    margin-left: 2%;
    text-wrap: wrap;
}

.contact-header {
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #0C0C0D;
    text-wrap: nowrap;
}

footer {
    position: relative;
    top: 0%;
    z-index: 10;
    background-color: #0c0c0d;
    width: 100%;
    padding: 55px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
}

.footer-logo-button {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-button {
    width: 200px;
    height: 38px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 25px;
    background-color: #f5f5f5;
    border-radius: 100px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: #0c0c0d;
    text-decoration: none;
    text-wrap: nowrap;
    transition: all 0.3s cubic-bezier(.77, .02, 0, .97);
}

.footer-button:hover {
    background-color: #BDBDBD;
}

.group-emails {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#group-email {
    display: flex;
    flex-direction: column;
}

#group-email span {
    font-weight: 600;
    font-size: 15px;
    line-height: 28px;
    text-transform: uppercase;
    color: #9D9D9F;
}

#group-email a {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #F5F5F5;
    text-decoration: none;
}

#group-email a:hover {
    text-decoration: underline;
}

.footer-colmn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-colmn span {
    font-weight: 600;
    font-size: 15px;
    line-height: 28px;
    text-transform: uppercase;
    color: #9D9D9F;
}

.footer-colmn a {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #F5F5F5;
    text-decoration: none;
}

.footer-colmn a:hover {
    text-decoration: underline;
}

/*animation*/

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s;
    transition-delay: 0.7s;
}

.show {
    opacity: 1;
    transform: translateY(0px);
    transition: all 1s;
}


.reveal02 {
    transform: rotate(-8deg);
    transition: all 10s cubic-bezier(.06, .34, .11, .95);
}

.show02 {
    transform: rotate(-2deg);
    transition: all 1s cubic-bezier(.06, .34, .11, .95);
}

.reveal03 {
    transform: rotate(8deg);
    transition: all 10s cubic-bezier(.06, .34, .11, .95);
}

.show03 {
    transform: rotate(2deg);
    transition: all 1s cubic-bezier(.06, .34, .11, .95);
}


/* loader */

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #949494;
    display: flex;
    flex-direction: column-reverse;
    justify-content: end;
    align-items: start;
    z-index: 999;
}

/* Animação de saída */
#loader.sair {
    animation: slideOut-load 1.3s cubic-bezier(.57,.01,.01,.97) forwards;
}

#progress-bar {
    width: 100%;
    height: 10px;
    overflow: hidden;
}

#progress-fill {
    height: 100%;
    width: 0%;
    background: #f5f5f5;
    transition: width 0.2s ease;
}

#progress-text {
    padding: 20px;
    color: #0C0C0D;
    font-weight: 450;
    font-size: 225px;
    line-height: 75%;
    animation: number-load 0.8s ease-in-out forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

@keyframes number-load {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideOut-load {
    from {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }

    to {
        transform: translateY(-150%) translateX(70%) rotate(22deg);
        opacity: 1;
    }
}