/* ========================================
   RESET
======================================== */

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


html {
    scroll-behavior: smooth;
}


body {
    background: #050505;
    color: #f2f2f2;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


/* ========================================
   HEADER
======================================== */

.header {

    width: 100%;

    padding:
        24px
        6.5vw
        0;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    position: absolute;

    top: 0;
    left: 0;

    z-index: 20;

}


/* LOGO */

.brand {

    display: block;

    width: 410px;

}


.brand img {

    width: 100%;

    height: auto;

    display: block;

}


/* NAVEGAÇÃO */

.nav {

    display: flex;

    gap: 42px;

    padding-top: 22px;

}


.nav a {

    font-size: 10px;

    letter-spacing: 2px;

    color: #d6d6d6;

    transition:
        opacity .3s ease;

}


.nav a:hover {

    opacity: .5;

}


/* ========================================
   HERO
======================================== */

.hero {

    min-height: 100vh;

    width: 100%;

    display: grid;

    grid-template-columns:
        42%
        58%;

    position: relative;

    overflow: hidden;

}


/* ========================================
   HERO — LADO ESQUERDO
======================================== */

.hero-content {

    position: relative;

    z-index: 5;

    padding:

        215px

        0

        80px

        6.5vw;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


/* PRODUTORA AUDIOVISUAL */

.hero-brand-description {

    display: flex;

    gap: 28px;

    margin-bottom: 92px;

}


.hero-brand-description span {

    font-size: 28px;

    font-weight: 300;

    letter-spacing: -1.5px;

}


.hero-brand-description span:last-child {

    color: #777;

}


/* TÍTULO */

.hero h1 {

    font-size: clamp(
        70px,
        7vw,
        112px
    );

    line-height: .86;

    font-weight: 300;

    letter-spacing: -6px;

    margin-bottom: 45px;

}


.hero h1 span {

    color: #777;

}


/* TEXTO */

.hero-description {

    max-width: 440px;

    font-size: 15px;

    line-height: 1.7;

    color: #9a9a9a;

    margin-bottom: 38px;

}


/* ========================================
   BOTÃO
======================================== */

.button {

    width: 188px;

    height: 52px;

    border:

        1px solid

        rgba(
            255,
            255,
            255,
            .45
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 18px;

    font-size: 9px;

    letter-spacing: 2px;

    transition:

        background .3s ease,

        color .3s ease;

}


.button span {

    font-size: 20px;

}


.button:hover {

    background: #f2f2f2;

    color: #050505;

}


/* ========================================
   ASSINATURA
======================================== */

.hero-signature {

    position: absolute;

    bottom: 35px;

    left: 6.5vw;

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.signature-line {

    width: 1px;

    height: 40px;

    background: #ddd;

}


.hero-signature span:last-child {

    font-size: 9px;

    line-height: 1.8;

    letter-spacing: 3px;

    color: #888;

}


/* ========================================
   IMAGEM DO HERO
======================================== */

.hero-image {

    position: relative;

    height: 100vh;

    overflow: hidden;

}


/* FOTO */

.hero-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    filter:

        grayscale(100%)

        contrast(1.05)

        brightness(.72);

    transform: scale(1.02);

}


/* ========================================
   DEGRADÊ SOBRE A FOTO
======================================== */

.hero-image-overlay {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:

        linear-gradient(
            90deg,
            #050505 0%,
            rgba(5,5,5,.82) 5%,
            rgba(5,5,5,.30) 25%,
            rgba(5,5,5,.05) 60%,
            rgba(5,5,5,.18) 100%
        ),

        linear-gradient(
            0deg,
            rgba(0,0,0,.55),
            transparent 45%
        );

}


/* ========================================
   TEXTO LATERAL DA FOTO
======================================== */

.hero-image-label {

    position: absolute;

    right: 30px;

    top: 50%;

    transform:
        translateY(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 22px;

}


.hero-image-label span {

    writing-mode:
        vertical-rl;

    transform:
        rotate(180deg);

    font-size: 9px;

    letter-spacing: 4px;

    color: #ddd;

}


.hero-image-label i {

    display: block;

    width: 1px;

    height: 42px;

    background: #ddd;

}


/* ========================================
   PAGINAÇÃO
======================================== */

.hero-pagination {

    position: absolute;

    right: 55px;

    bottom: 55px;

    display: flex;

    align-items: center;

    gap: 14px;

}


.hero-pagination strong {

    font-size: 10px;

    font-weight: 400;

}


.hero-pagination small {

    font-size: 10px;

    color: #777;

}


.hero-pagination span {

    width: 30px;

    height: 1px;

    background: #ddd;

}


/* ========================================
   SEÇÕES
======================================== */

.section {

    padding:
        140px
        6.5vw;

}


/* ========================================
   EYEBROW
======================================== */

.eyebrow {

    font-size: 9px;

    letter-spacing: 3px;

    color: #777;

    margin-bottom: 28px;

}


/* ========================================
   SOBRE
======================================== */

.about {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 9vw;

    align-items: center;

}


.about-image {

    height: 550px;

}


.about-placeholder {

    width: 100%;

    height: 100%;

    background: #0b0b0b;

    border:
        1px solid
        #1c1c1c;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}


.about-placeholder span {

    font-size: 80px;

    font-weight: 200;

    letter-spacing: 10px;

    color: #171717;

}


.about-placeholder small {

    margin-top: 20px;

    font-size: 8px;

    letter-spacing: 3px;

    color: #444;

}


.about-content h2 {

    font-size: clamp(
        45px,
        5vw,
        78px
    );

    line-height: .95;

    font-weight: 300;

    letter-spacing: -3px;

    margin-bottom: 45px;

}


.about-content h2 span {

    color: #777;

}


.about-content > p:not(.eyebrow) {

    max-width: 530px;

    font-size: 15px;

    line-height: 1.8;

    color: #888;

    margin-bottom: 22px;

}


/* ========================================
   SERVIÇOS
======================================== */

.services {

    border-top:
        1px solid
        #151515;

}


.section-heading {

    margin-bottom: 70px;

}


.section-heading h2 {

    font-size: clamp(
        50px,
        6vw,
        90px
    );

    font-weight: 300;

    letter-spacing: -4px;

}


.service-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid
        #222;

}


.service {

    min-height: 320px;

    padding:
        35px
        25px;

    border-right:
        1px solid
        #222;

    position: relative;

}


.service:last-child {

    border-right: none;

}


.service-number {

    font-size: 9px;

    color: #666;

}


.service h3 {

    font-size: 22px;

    line-height: 1.05;

    font-weight: 300;

    margin-top: 100px;

}


.service p {

    max-width: 220px;

    font-size: 12px;

    line-height: 1.7;

    color: #777;

    margin-top: 25px;

}


/* ========================================
   PORTFÓLIO
======================================== */

.portfolio {

    min-height: 500px;

    display: flex;

    align-items: center;

    border-top:
        1px solid
        #151515;

}


.section-note {

    margin-top: 20px;

    color: #666;

    font-size: 13px;

}


/* ========================================
   CONTATO
======================================== */

.contact {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 10vw;

    border-top:
        1px solid
        #151515;

}


.contact-content h2 {

    font-size: 80px;

    font-weight: 300;

    letter-spacing: -4px;

}


.contact-content > p:last-child {

    margin-top: 30px;

    color: #777;

    line-height: 1.7;

}


.contact-links {

    display: flex;

    flex-direction: column;

}


.contact-link {

    min-height: 100px;

    border-bottom:
        1px solid
        #222;

    display: flex;

    align-items: center;

    gap: 25px;

    transition:
        padding .3s ease;

}


.contact-link:hover {

    padding-left: 15px;

}


.contact-icon {

    width: 40px;

    height: 40px;

    border:
        1px solid
        #333;

    display: flex;

    align-items: center;

    justify-content: center;

}


.contact-link strong {

    display: block;

    font-size: 10px;

    letter-spacing: 2px;

}


.contact-link small {

    display: block;

    color: #666;

    font-size: 11px;

    margin-top: 6px;

}


/* ========================================
   FOOTER
======================================== */

.footer {

    padding:
        50px 6.5vw;

    border-top:
        1px solid
        #151515;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #555;

    font-size: 10px;

}


.footer img {

    width: 100px;

    height: auto;

}


/* ========================================
   ANIMAÇÃO
======================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(30px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 900px) {


    .header {

        padding:
            20px
            5vw;

    }


    .brand {

        width: 220px;

    }


    .nav {

        gap: 18px;

    }


    .nav a {

        font-size: 8px;

    }


    .hero {

        grid-template-columns:
            1fr;

    }


    .hero-content {

        padding:
            170px
            5vw
            70px;

        min-height:
            100vh;

        justify-content:
            center;

    }


    .hero-image {

        height: 65vh;

    }


    .hero-image-overlay {

        background:

            linear-gradient(
                0deg,
                #050505 0%,
                rgba(5,5,5,.1) 50%,
                rgba(5,5,5,.3) 100%
            );

    }


    .about {

        grid-template-columns:
            1fr;

    }


    .service-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .service {

        border-bottom:
            1px solid
            #222;

    }


    .contact {

        grid-template-columns:
            1fr;

    }

}


@media (max-width: 600px) {


    .header {

        align-items: center;

    }


    .brand {

        width: 170px;

    }


    .nav {

        display: none;

    }


    .hero-content {

        padding-top: 140px;

    }


    .hero-brand-description {

        margin-bottom: 60px;

        gap: 15px;

    }


    .hero-brand-description span {

        font-size: 17px;

    }


    .hero h1 {

        font-size: 72px;

        letter-spacing: -4px;

    }


    .hero-image {

        height: 55vh;

    }


    .hero-image-label {

        right: 15px;

    }


    .hero-pagination {

        right: 25px;

        bottom: 25px;

    }


    .section {

        padding:
            90px 5vw;

    }


    .about-image {

        height: 350px;

    }


    .about-content h2 {

        font-size: 50px;

    }


    .service-grid {

        grid-template-columns:
            1fr;

    }


    .service {

        min-height: 250px;

        border-right: none;

    }


    .service h3 {

        margin-top: 70px;

    }


    .contact-content h2 {

        font-size: 60px;

    }


    .footer {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }

}
