@import url('https://fonts.cdnfonts.com/css/neue-haas-grotesk-display-pro');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100vw;
    height: 100vh;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: #000;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
}

::-webkit-scrollbar {
    display: none;
}

::selection {
    background-color: #797979;
    color: #141415;
}

.container {
    height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.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;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100vh - 80px);
    position: relative;
}

.main-image {
    background-image: url("../images/images-about/background-about.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 87%;
    height: 87%;
    z-index: 0;

}

.full-width-text {
    position: absolute;
    z-index: 1;
    width: calc(100vw - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-width-text div {
    font-weight: 500;
    font-size: 139px;
    line-height: 89%;
    text-transform: uppercase;
    color: #F5F5F5;
    text-align: center;
}

#number-img {
    font-size: 50px;
}

.about-us-section {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background: #F5F5F5;
    height: 84vh;
    padding: 15px;
}

.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: 12px;
    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;
    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;

    transition: all 300ms cubic-bezier(.96, 0, .16, 1);
}

.follow-project-link:hover {
    padding: 10px 20px 10px 43px;
    color: #f5f5f5;
    background-color: #0C0C0D;
}

.video-bg-curta {
    position: relative;
    width: 100%;
    height: 92vh;
    overflow: hidden;
}

.video-bg-curta video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.What-we-do-section {
    display: flex;
    justify-content: space-between;
    height: 84vh;
    padding: 15px;
    background: #0C0C0D;
}

.what-we-do {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tags-container {
    max-width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    gap: 15px;
}

.tag {
    font-weight: 600;
    font-size: 22px;
    line-height: 101.4%;
    border: 2px solid #F5F5F5;
    color: #F5F5F5;
    border-radius: 138px;
    padding: 12px 40px;
    transition: all 200ms cubic-bezier(.96, 0, .16, 1);
    cursor: default;
}

.tag:hover {
    background-color: #F5F5F5;
    color: #0C0C0D;
}

#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;
}

#What-we-do-header {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-align: right;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-wrap: nowrap;
    color: #BDBDBD;
}

.clients-contact-footer {
    display: flex;
    flex-direction: column;
}

.bg-demoreel {
    display: block;
    text-decoration: none;
    
}

#bg-demoreel-image {
    width: 100%;
    height: 1149px;
    background-image: url('../images/images-about/demoreel.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.clients-contact {
    z-index: 1;
    display: flex;
    flex-direction: column;
    margin-top: -25%;
    align-items: end;
}

.clients {
    width: 97.65%;
    height: 650px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: #F5F5F5;
    transform-origin: top right;
    transform: rotate(-3deg);
    transition: all 0.4s cubic-bezier(.77, .02, 0, .97);
}

.clients:hover {
    transform: rotate(-1.5deg);
}

#clients-header {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #706E6E;
    text-wrap: nowrap;
}

#clients-name {
    font-weight: 600;
    font-size: 45px;
    line-height: 133.4%;
    color: #0C0C0D;
}

.contact {
    margin-top: -350px;
    height: 350px;
    align-self: self-start;
    width: 97.65%;
    transform-origin: top left;
    transform: rotate(5deg);
    z-index: 2;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    background: #BDBDBD;
    padding: 20px;
    transition: all 0.4s cubic-bezier(.77, .02, 0, .97);

    text-decoration: none;
}

.contact:hover {
    transform: rotate(3deg);
}

.contact #contact-text {
    font-weight: 900;
    font-size: 12vw;
    line-height: 75%;
    text-transform: uppercase;
    color: #0C0C0D;
    margin-left: 2%;
    text-wrap: wrap;
}

.contact #contact-header {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #0C0C0D;
    text-wrap: nowrap;
}

footer {
    z-index: 3;
    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;
}

.show {
    opacity: 1;
    transform: translateY(0px);
    transition: all 1.5s;
    transition-delay: 0.1s;
}

.reveal1 {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.5s;
    transition-delay: 1s;
}

.show1 {
    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;
    }
}