@font-face {
    font-family: 'ClashGrotesk';
    src: url('./assets/ClashGrotesk-Bold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ClashGrotesk';
    src: url('./assets/ClashGrotesk-Semibold.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'EuropaNuova';
    src: url('./assets/EuropaNuovaBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Walsheim';
    src: url('./assets/GT-Walsheim-Regular-Trial-BF651b7fc71a47d.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('./assets/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('./assets/DMSans-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('./assets/BebasNeue-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('./assets/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Geral */

* {
    padding: 0px 0px;
    margin: 0px 0px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, p {
    margin: 0px;
    line-height: 1;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

html::selection{
    background-color: #DB30F5;
    color: #fff;
}

a{
    text-decoration: none;
    color: inherit;
    width: fit-content;
}

.flex { display: flex; }

.column { flex-direction: column; }
.row { flex-direction: row; }

.center { justify-content: center; align-items: center; }
.jc-center { justify-content: center; }
.jc-between { justify-content: space-between; }
.jc-around { justify-content: space-around; }
.jc-end { justify-content: flex-end; }

.ai-center { align-items: center; }
.ai-start { align-items: flex-start; }
.ai-end { align-items: flex-end; }

.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-80 { gap: 80px; }

.bold { font-weight: 700; }
.reg { font-weight: 400; }
.semibold { font-weight: 600; }
.light { font-weight: 300; }

.upper { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }

.hidden { display: none; }

#contact_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    position: fixed;
    right: 24px;
    top: 24px;
    background-color: #CDCDCD;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
    transition: transform .5s ease-out;
    z-index: 9999;
}

#contact_btn svg{
    fill: black;
}

#contact_btn:hover{
    transform: scale(1.05);
}

.text_focus{
    font-family: "EuropaNuova";
    color: #DB30F5;
}

.text_focus2{
    padding: 0px 8px;
    background-color: #DB30F5;
    color: #fff;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.s-device{
    display: none;
}

.m-device {
    display: none;
}

.n-device {
    display: block;
}

/* Hero */

.hero{
    position: relative;
    padding: 30px 0px;
}

#hero_bg{
    position: absolute;
    top: 48%;
    color: transparent;
    -webkit-text-stroke: 8px #363636;
    font-size: 240px;
    white-space: nowrap;
    transform: translateX(-600px);
    text-transform: uppercase;
    font-family: "ClashGrotesk";
    font-weight: 500;
    z-index: -1;
    animation: scroll 60s linear infinite;
    opacity: .04;
    letter-spacing: 4px;
}

.hero_top{
    width: fit-content;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}

.hero_top p{
    font-family: "Bebas Neue";
    color: #363636;
    font-size: 20px;
    font-weight: 500;
}

.hero_top small{
    font-family: "EuropaNuova";
    color: #e3e3e3;
    font-size: 10px;
    font-weight: 400;
}

.hero_middle{
    width: fit-content;
    text-align: center;
}

.hero_middle h1{
    text-transform: uppercase;
    overflow: hidden;
    font-family: "Playfair Display";
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 100px;
    color: #363636;
}

.hero_middle h1 .h1_inner{
    display: inline-block;
}

.hero_middle h5 {
    overflow: hidden;
    font-family: "Clash Grotesk";
    text-transform: uppercase;
    font-weight: 500;
    font-size: 48px;
    overflow: hidden;
    width: fit-content;
    margin: 0 auto;
    color: #DB30F5;
}

.hero_middle h5 .h5_inner{
    display: inline-block;
}

.hero_images{
    height: 340px;
    position: relative;
    width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.hero_card{
    position: absolute;
}

.hero_card:nth-child(1) {
  transform: translateX(-280px) rotate(10deg);
  z-index: 1;
}
.hero_card:nth-child(2) {
  transform: translateX(-130px) rotate(-8deg);
  z-index: 2;
}
.hero_card:nth-child(3) {
  transform: translateX(70px) rotate(4deg);
  z-index: 3;
}
.hero_card:nth-child(4) {
  transform: translateX(240px) rotate(2deg);
  z-index: 2;
}

.hero_image{
    width: 260px;
    height: 260px;
    will-change: transform;
    transform-style: preserve-3d;
    border-radius: 10px;
    box-shadow: 0px 18px 72px 0px rgba(0, 0, 0, 0.32);
}

/* Wim */

.wim{
    position: relative;
    padding: 132px 0px 60px 0px;
}

.wim_header{
    position: absolute;
    top: 0;
    font-family: "GT Walsheim";
    font-size: 232px;
    color: #363636;
    text-align: center;
    font-weight: 600;
    width: 100%;
    z-index: -1;
    text-transform: uppercase;
    clip-path: ellipse(20% 0% at 20% 0%);
}

.wim_content{
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 1460px;
    justify-content: space-between;
}

.wim_content img{
    aspect-ratio: 652/434;
    width: 652px;
    border-radius: 10px;
    box-shadow: 0px 18px 72px 0px rgba(0, 0, 0, 0.32);
}

.wim_lead{
    width: 564px;
    color: #363636;
    font-family: "Inter";
}

.wim_lead .reveal{
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 28px;
    font-weight: 500;
    z-index: 1;
    margin-bottom: -4px;
}

.wim_lead .text{
    opacity: 0;
}

.wim_lead .block{
    position: absolute;
    inset: 0;
    width: 100%t;
    width: 100%;
    padding: 8px;
    background-color: #DB30F5;
    z-index: 2;
    transform: translateX(-100%);
}

.primary_btn{
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    background-color: #000;
    padding: 16px 20px;
    width: fit-content;
    border-radius: 4px;
    text-decoration: none;
    transition: padding .2s ease-out;
}

.primary_btn:hover{
    padding: 16px 40px;
}

/* Portfolio */

.portfolio_header{
    font-family: "GT Walsheim";
    text-align: end;
    color: #363636;
    text-transform: uppercase;
    font-size: 150px;
    font-weight: 600;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    overflow: hidden;
}

.portfolio_container{
    position: relative;
    display: flex;
    gap: 56px;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 60px;
    margin: 0 auto;
    width: 1460px;
}

.card_container{
    display: flex;
    gap: 56px;
}

.n-device-portfolio {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s-device-portfolio{
    display: none;
}

.portfolio_container_bg{
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: rgba(0, 0, 0, 0.04);
    letter-spacing: 10px;
    font-family: "EuropaNuova";
    font-size: 120px;
}


.portfolio_card{
    display: flex;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    height: 396px;
    width: 316px;
    background-color: #000;
}

.portfolio_btn{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    height: 396px;
    width: 316px;
    background-color: #363636;
    color: #fff;
    justify-content: center;
    padding: 0px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio_card_image{
    height: 396px;
    transition: transform .4s ease-out;
    opacity: .72;
    border-radius: 10px;
}

.portfolio_type{
    display: flex;
    flex-direction: column;
    font-family: "EuropaNuova";
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.portfolio_type span:nth-child(1){
    font-size: 24px;
    color: #ffffff;
}

.portfolio_card:hover .portfolio_card_image{
    transform: scale(1.04);
    cursor: pointer;
}

/* Review */

.review_container{
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
    width: 1460px;
    padding: 0 0 60px 0;
}

.review_header{
    width: 100%;
    display: flex;
    justify-content: end;
    overflow: hidden;
}

.reveal_container{
    width: 640px;
    font-family: "GT Walsheim";
    font-size: 64px;
    color: #363636;
    line-height: 0.9;
    font-weight: bold;
}

.review_reveal{
    display: inline-block;
    overflow: hidden;
    height: fit-content;
    opacity: 0;
    transform: translateY(-20%);
}

.review_slider{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.review_author{
    display: flex;
    flex-direction: column;
    font-family: "Inter";
    font-weight: 500;
    justify-content: end;
}

.review_author span:nth-child(1){
    color: #363636;
    font-size: 28px;
}

.review_author span:nth-child(2){
    color: #5E5E5E;
    font-size: 22px;
}

.review_quote_wrap{
    width: 640px;
    display: flex;
    gap: 16px;
    align-items: start;
    overflow: hidden;
}

.review_text{
    font-size: 24px;
    font-family: "EuropaNuova";
    color: #363636;
    text-align: justify;
}

.review_slider_layout{
    width: 100%;
    display: flex;
    justify-content: end;
}

.review_slider_btn{
    width: 588px;
    display: flex;
    gap: 16px;
    justify-content: start;
}

.swiper_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #363636;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    transition: background-color .1s ease-out, transform .2s ease-out;
}

.swiper_btn.is_next{
    transform: rotate(180deg);
}

.swiper_btn:hover{
    background-color: #DB30F5;
    cursor: pointer;
}

.swiper_btn.is_prev:hover{
    transform: translateX(-12px);
}

.swiper_btn.is_next:hover{
    transform: rotate(180deg) translateX(-12px);
}

.review_slider_wrap {
    overflow: hidden;
    width: 100%;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
}

.review_slide {
    display: flex;
    justify-content: space-between;
}


/* Hiw */

.hiw{
    padding: 0px 20px 60px 20px;
    perspective: 1000px;
}

.hiw_container{
    margin: 0 auto;
    width: 1460px;
    background-color: #DB30F5;
    border-radius: 25px;
    padding: 40px 32px;
    display: flex;
    justify-content: center;
}

.hiw_header{
    color: #363636;
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hiw_header h1{
    font-family: "Bebas Neue";
    font-size: 160px;
    text-transform: uppercase;
}

.hiw_header p{
    font-family: "EuropaNuova";
    font-size: 24px;
    color: #fff;
}

.hiw_cards{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: fit-content;
}


.hiw_card{
    border-radius: 10px;
    width: 216px;
    height: 252px;
    background-color: #1e1e1e;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 12px 30px 0px #3636369c;
}

.hiw_card span{
    font-family: "Bebas Neue";
    font-weight: 600;
    color: #5E5E5E;
}

.hiw_card p{
    font-family: "Inter";
    font-weight: 500;
    color: #fff;
    letter-spacing: .8px;
    font-size: 20px;
    position: relative;
    color: transparent;
    overflow: hidden;
}

.hiw_card.first p::before{
    content: 'Entendo o tipo de evento e o que você deseja transmitir com as imagens';
    position: absolute;
    transform: translateY(100%);
    transition: transform .2s ease-out;
    color: #8e8e8e;
    left: 0;
    bottom: 0;
}

.hiw_card.first p::after{
    content: 'Contato & Alinhamento';
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    transition: transform .2s ease-out;
}

.hiw_card.second p::before{
    content: 'Ajusto o estilo e os detalhes do ensaio para que tudo aconteça';
    position: absolute;
    transform: translateY(100%);
    transition: transform .2s ease-out;
    color: #8e8e8e;
}

.hiw_card.second p::after{
    content: 'Planejamento Criativo';
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    transition: transform .2s ease-out;
}

.hiw_card.third p::before{
    content: 'O foco é registrar momentos reais, com atenção total';
    position: absolute;
    transform: translateY(100%);
    transition: transform .2s ease-out;
    color: #8e8e8e;
}

.hiw_card.third p::after{
    content: 'Fotografia & Experiência';
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    transition: transform .2s ease-out;
}

.hiw_card.fourth p::before{
    content: 'Seleciono as melhores imagens, entregando um material pensado para ser revivido';
    position: absolute;
    transform: translateY(100%);
    transition: transform .2s ease-out;
    color: #8e8e8e;
}

.hiw_card.fourth p::after{
    content: 'Curadoria & Entrega';
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    transition: transform .2s ease-out;
}

.hiw_card:hover p::before{
    transform: translateY(-2%);
}

.hiw_card:hover p::after{
    transform: translateY(-360%);
}


/* Footer */

.footer_cta{
    width: 100%;
    padding: 0px 32px;
}

.footer_cta_container{
    width: 100%;
    padding: 24px 0px;
    border-top: 4px solid #363636;
    border-bottom: 4px solid #363636;
    overflow-y: hidden;
    cursor: pointer;
    justify-content: space-between;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.footer_cta_container span{
    font-family: "DM Sans";
    font-size: 80px;
    font-weight: 500;
    position: relative;
    color: transparent;
    user-select: none;
}

.footer_cta_container span::after{
    content: 'Vamos criar juntos!!';
    position: absolute;
    left: 0;
    color: #363636;
    transition: transform .2s ease-out;
}

.footer_cta_container span::before{
    content: '12 98801-8637';
    position: absolute;
    transform: translateY(120%);
    color: #363636;
    transition: transform .2s ease-out;
}

.footer_cta_container:hover span::after{
    transform: translateY(-140%);
}

.footer_cta_container:hover span::before{
    transform: translateY(0%);
}

.cta_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #363636;
    border-radius: 120px;
    line-height: 1;
    padding: 8px 40px;
    font-size: 56px;
    font-family: "Inter";
    color: transparent;
    position: relative;
    transition: background-color .2s ease-out;
}

.footer_cta_container:hover .cta_btn{
    background-color: #DB30F5;
}

.cta_btn::after{
    content: '→';
    position: absolute;
    color: #fff;
    transition: transform .2s ease-out;
}

.cta_btn::before{
    content: '→';
    position: absolute;
    transform: translateX(-200%);
    color: #fff;
    transition: transform .2s ease-out;
}

.footer_cta_container:hover .cta_btn::after{
    transform: translateX(300%);
}

.footer_cta_container:hover .cta_btn::before{
    transform: translateX(0%);
}

.footer_content{
    padding: 44px 32px;
}

.footer_content_header{
    font-size: 50px;
    color: #363636;
    font-family: "ClashGrotesk";
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.footer_content_items{
    display: flex;
    justify-content: space-between;
}

.footer_left{
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #363636;
}

.footer_lead{
    width: 240px;
}

.footer_developer{
    display: flex;
    gap: 4px;
}

.footer_focus{
    font-weight: 600;
    padding: 0px 2px;
    position: relative;
    cursor: pointer;
    transition: color .2s ease-out;
    overflow: hidden;
}

.footer_focus::before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #DB30F5;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-110%);
    z-index: -1;
    transition: transform .2s ease-out;
}

.footer_focus:hover{
    color: #fff;
}

.footer_focus:hover::before{
    transform: translateY(0%);
}

.footer_copy{
    opacity: .9;
    font-size: 14px;
}

.footer_center ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.center_header{
    text-transform: uppercase;
    font-family: "Inter";
    font-weight: 600;
}

.nav_wrapper{
    display: flex;
    gap: 4px;
    color: #363636;
    font-family: "Inter";
    font-weight: 500;
    align-items: center;
}

.nav_wrapper svg{
    fill: #363636;
}

.nav_wrapper:hover{
    opacity: .9;
}

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

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

    to {
        transform: rotate(360deg);
    }
}

.contact_orbit {
    position: relative;
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: opacity .2s ease-out;
}

.contact_orbit svg {
    position: absolute;
    inset: center;
    animation: spin 12s linear infinite;
}

.contact_center {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #363636;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 22px;
    z-index: 2;
}

.contact_center svg{
    animation: unset;
}

.contact_orbit:hover{
    opacity: .9;
}

/* Páginas */

.container {
  display: flex;
  height: 80vh;
}

.fixed_column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    position: sticky;
    top: 0;
    margin-left: 40px;
    height: fit-content;
    overflow: hidden; 
    padding: 2rem;
}

.fixed_column h5{
    font-family: "Inter";
    letter-spacing: -2px;
    width: 100%;
    max-width: 100%;
    font-size: 52px;
}

.fixed_column p{
    font-size: 22px;
    opacity: .9;
    width: 80%;
    max-width: 100%;
}

.scroll_column {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    flex: 1;
    overflow-y: scroll;
    padding: 2rem;
}

.scroll_column::-webkit-scrollbar{
    display: none;
}

.images_page_header{
    display: flex;
    justify-content: space-between;
    padding: 32px 72px;
    align-items: center;
}

.home_btn{
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
}

.home_btn span:nth-child(1){
    color: #000;
    font-size: 28px;
    font-weight: 600;
}

.home_btn span:nth-child(2){
    color: #000;
    font-size: 32px;
    font-weight: 600;
}

.portfolio_page_image{
    height: 396px;
    border-radius: 10px;
}

/* Media Queries */

/*Extra large*/
@media (max-width: 1500px) {
    /* WIM */
    .wim_header {
        font-size: 182px;
    }

    .wim_content {
        width: 1200px;
    }

    .wim_lead .reveal {
        font-size: 18px;
    }

    .wim_content img {
        width: 552px;
    }

    .wim_lead {
        width: 374px;
    }

    .wim_content {
        width: 1200px;
        justify-content: space-evenly;
    }

    /* Portfolio */
    .portfolio_container {
        flex-wrap: wrap;
        width: 682px;
    }

    .card_container:nth-child(1){
        margin-bottom: 40px;
    }

    .card_container {
        flex-wrap: wrap;
        width: 692px;
    }

    .portfolio_header {
        font-size: 186px;
        gap: 22px;
        margin-top: 30px;
    }

    /*Review*/
    .review_header {
        justify-content: start;
    }

    .reveal_container {
        text-align: center;
        font-size: 62px;
        width: 1200px;
    }

    .review_slide {
        flex-direction: column;
        gap: 20px;
    }

    .review_author span:nth-child(1) {
        font-size: 20px;
    }

    .review_author span:nth-child(2) {
        font-size: 16px;
    }

    .review_author, .review_quote_wrap, .review_slider_layout {
        width: 1200px;
        padding: 0px 20px;
    }

    .review_slider_layout {
        justify-content: start;
    }

    .review_slider_btn {
        width: fit-content;
    }

    .review_text {
        text-align: start;
    }

    /* Footer */

    .footer_cta_container span{
        font-size: 20px;
        overflow: hidden;
    }

    .cta_btn {
        font-size: 12px;
    }

    .cta_btn::before {
        transform: translateX(-60px);
    }

    .footer_cta_container:hover .cta_btn::after{
        transform: translateX(500%);
    }    

    .footer_content_items {
        flex-direction: column;
        gap: 32px;
    }

    .footer_right {
        display: none;
    }

    /* HIW */

    .hiw {
        padding: 0px 0px 60px 0px;
    }

    .hiw_container {
        width: 1100px;
        align-items: center;
        padding: 20px;
    }

    .hiw_header {
        width: 580px;
        gap: 8px;
    }

    .hiw_header h1 {
        font-size: 90px;
    }

    .hiw_header p {
        font-size: 20px;
    }

    .hiw_cards {
        transform: scale(0.9);
    }

    /* pages */
    .container {
        flex-direction: column;
        align-items: center;
    }

    .scroll_column {
        justify-content: center;
    }

    .fixed_column p {
        width: 100%;
    }
}


/*Large*/
@media (max-width: 1200px) {
    .m-device {
        display: block;
    }

    .s-device {
        display: none;
    }

    .n-device {
        display: none;
    }

    .hero_images, .wim_content, .hiw, .review {
        width: 769px;
        margin: 0 auto;
    }

    .hero_image {
        width: 200px;
        height: auto;
        box-shadow: 0px 2px 72px -20px rgba(0, 0, 0, 0.32);
    }

    .hero_card:nth-child(1) {
        transform: translateX(-200px) rotate(20deg);
        z-index: 1;
    }
    
    .hero_card:nth-child(2) {
        transform: translateX(-80px) rotate(-16deg);
        z-index: 2;
    }
    
    .hero_card:nth-child(3) {
        transform: translateX(200px) rotate(8deg);
        z-index: 3;
    }
    
    .hero_card:nth-child(4) {
        transform: translateX(80px) rotate(4deg);
        z-index: 2;
    }

    /* WIM */
    .wim_header {
        font-size: 14vw;
    }

    .wim_content {
        width: 100vw;
    }

    .wim_lead .reveal {
        font-size: 18px;
    }

    .wim_content img {
        width: 60vw;
    }

    .wim_lead {
        width: 50%;
    }

    .wim_content {
        width: 98vw;
        justify-content: space-evenly;
    }

    /* Portfolio */
    .portfolio_container {
        flex-wrap: wrap;
        width: 700px;
    }

    .card_container:nth-child(1){
        margin-bottom: 40px;
    }

    .card_container {
        flex-wrap: wrap;
        width: 700px;
    }

    .portfolio_header {
        font-size: 96px;
        gap: 22px;
        margin-top: 30px;
    }

    /* Review */
    .review_header {
        justify-content: start;
    }

    .reveal_container {
        text-align: center;
        font-size: 32px;
        width: 769px;
    }

    .review_slide {
        flex-direction: column;
        gap: 20px;
    }

    .review_author span:nth-child(1) {
        font-size: 20px;
    }

    .review_author span:nth-child(2) {
        font-size: 16px;
    }

    .review_author, .review_quote_wrap, .review_slider_layout {
        width: 769px;
        padding: 0px 20px;
    }

    .review_slider_layout {
        justify-content: start;
    }

    .review_slider_btn {
        width: fit-content;
    }

    .review_text {
        text-align: start;
    }

    /* HIW */

    .hiw {
        padding: 0px 0px 60px 0px;
    }

    .hiw_container {
        width: 700px;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .hiw_header {
        width: 580px;
        gap: 8px;
    }

    .hiw_header h1 {
        font-size: 90px;
    }

    .hiw_header p {
        font-size: 20px;
    }

    .hiw_cards {
        transform: scale(0.9);
    }

    /* Footer */

    .footer_cta_container span{
        font-size: 20px;
        overflow: hidden;
    }

    .cta_btn {
        font-size: 12px;
    }

    .cta_btn::before {
        transform: translateX(-60px);
    }

    .footer_cta_container:hover .cta_btn::after{
        transform: translateX(500%);
    }    

    .footer_content_items {
        flex-direction: column;
        gap: 32px;
    }

    .footer_right {
        display: none;
    }
}

/* Telas pequenas / celulares grandes */
@media (max-width: 768px) {
    .m-device {
        display: none;
    }

    .s-device{
        display: block;
    }

    .n-device, .n-device-portfolio {
        display: none;
    }

    /* Hero */

    .hero_middle h1{
        font-size: 16vw;
    }

    .hero_middle h5{
        font-size: 8vw;
    }

    .hero_images, .wim_content, .hiw, .review {
        width: 100vw;
        margin: 0 auto;
    }

    .hero_image {
        width: 100px;
        height: auto;
        box-shadow: 0px 2px 72px -20px rgba(0, 0, 0, 0.32);
    }

    .hero_card:nth-child(1) {
        transform: translateX(-100px) rotate(10deg);
        z-index: 1;
    }
    
    .hero_card:nth-child(2) {
        transform: translateX(-40px) rotate(-8deg);
        z-index: 2;
    }
    
    .hero_card:nth-child(3) {
        transform: translateX(100px) rotate(4deg);
        z-index: 3;
    }
    
    .hero_card:nth-child(4) {
        transform: translateX(40px) rotate(2deg);
        z-index: 2;
    }

    /* WIM */

    .wim{
        padding: 80px 0px 20px 0px;
    }

    .wim_content {
        width: 100vw;
    }

    .wim_header {
        font-size: 14vw;
    }

    .wim_lead .reveal {
        font-size: 18px;
        width: fit-content;
    }

    .wim_content {
        margin: 0px auto;
    }

    .wim_content img {
        width: 80vw;
    }

    .wim_lead {
        width: 80vw;
    }
    
    .wim_content img:nth-child(2){
        display: none;
    }

    .wim_lead a {
        font-size: 3.5vw;
        padding: 2vw 2vw;
    }

    /* Review */
    .review_header {
        width: 100vw;
        justify-content: center;
    }

    .reveal_container {
        text-align: center;
        font-size: 9vw;
        width: 80vw;
    }

    .review_slide {
        flex-direction: column;
        gap: 20px;
    }

    .review_author span:nth-child(1) {
        font-size: 7vw;
    }

    .review_author span:nth-child(2) {
        font-size: 5vw;
    }

    .review_author, .review_quote_wrap, .review_slider_layout {
        width: 100vw;
        padding: 0px 20px;
    }

    .review_text {
        text-align: start;
    }

    /* HIW */

    .hiw {
        padding: 0px 0px 60px 0px;
    }

    .hiw_container {
        width: 100vw;
        flex-direction: column;
        padding: 20px;
    }

    .hiw_header {
        width: 80vw;
        gap: 8.1px;
    }

    .hiw_header h1 {
        font-size: 16vw;
    }

    .hiw_header p {
        font-size: 6vw;
    }

    .hiw_cards {
        transform: scale(.6);
    }

    /* Footer */
    .footer_cta_container span{
        font-size: 4vw;
        overflow: hidden;
    }

    .cta_btn {
        font-size: 12px;
    }

    .cta_btn::before {
        transform: translateX(-60px);
    }

    .footer_cta_container:hover .cta_btn::after{
        transform: translateX(500%);
    }    

    .footer_content_items {
        flex-direction: column;
        gap: 32px;
    }

    .footer_right {
        display: none;
    }

    /* Portfolio */

    .portfolio_container {
        width: 100%;
    }

    .portfolio_header {
        font-size: 12vw;
        gap: 4vw;
        margin-top: 30px;
    }

    .card_container{
        width: 100vw;
        justify-content: center;
        gap: 20px;
    }

    .s-device-portfolio{
        display: flex;
        flex-direction: column;
        width: 100vw;
        gap: 20px;
    }

    .portfolio_card {
        width: 80vw;
    }

    .portfolio_card_image {
        width: 100%;
        object-fit: cover;
    }

    .portfolio_type {
        left: 10px;
    }

    /* pages */
    .images_page_header {
        padding: 20px 0px;
        justify-content: space-evenly;
    }

    .home_btn span:nth-child(1) {
        font-size: 20px;
    }

    .home_btn span:nth-child(2) {
        font-size: 24px;
    }

    .images_page_header .primary_btn{
        font-size: 5vw;
        padding: 12px 16px;
    }
    
    .fixed_column {
        width: 100vw;
        padding: 0px 20px;
        margin-left: 0px;
        margin-top: 40px;
        flex: 1;
        overflow: visible;
        margin-bottom: 20px;
    }

    .fixed_column h5 {
        font-size: 12vw;
    }

    .fixed_column p {
        font-size: 5vw;
    }

    .portfolio_page_image {
        height: 60vw;
    }

    .scroll_column {
        padding: 0px;
    }
}