/* =========================================================
    RENATO AQUINO FOTO & FILME
   STYLE.CSS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --night: #050a10;
    --night-deep: #02060b;
    --night-soft: #0b141d;
    --ice: #eaf8ff;
    --cyan: #00c8ff;
    --cyan-bright: #55d7ff;
    --blue-line: #234554;
    --text-base: 17px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--night);
    color: var(--ice);
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    overflow-x: hidden;
}

::selection {
    background: var(--cyan);
    color: var(--night-deep);
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}



/* =========================================================
   BARRA DE ROLAGEM
========================================================= */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--night-deep);
}

::-webkit-scrollbar-thumb {
    background: #007fa6;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan-bright);
}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #000;

    transition:
        opacity 1.1s cubic-bezier(.16, 1, .3, 1),
        visibility 1.1s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: #fff;

    animation:
        preloaderEnter 1.5s cubic-bezier(.16, 1, .3, 1) forwards;
}

.preloader-logo {
    display: block;

    width: min(58vw, 420px);
    height: auto;
    margin: 0 auto;

    object-fit: contain;

    mix-blend-mode: screen;

    -webkit-mask-image: radial-gradient(
        ellipse at center,
        #000 42%,
        rgba(0, 0, 0, .92) 58%,
        transparent 76%
    );

    mask-image: radial-gradient(
        ellipse at center,
        #000 42%,
        rgba(0, 0, 0, .92) 58%,
        transparent 76%
    );

    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;

    filter:
        drop-shadow(0 0 22px rgba(0, 171, 255, .14));
}

.preloader-content p {
    margin-top: 12px;

    font-size: 14px;
    letter-spacing: 6px;

    opacity: .58;
}

.preloader-content::after {
    content: "";

    display: block;

    width: 0;
    height: 1px;

    margin: 24px auto 0;

    background: linear-gradient(90deg, transparent, var(--cyan-bright), transparent);

    animation:
        preloaderLine 1.8s ease forwards;
}

@keyframes preloaderEnter {

    from {
        opacity: 0;
        transform: translateY(40px) scale(.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

@keyframes preloaderLine {

    from {
        width: 0;
    }

    to {
        width: 100px;
    }

}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    padding: 30px 5vw;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color: #fff;

    z-index: 5000;

    transition:
        padding .6s ease,
        background .6s ease,
        backdrop-filter .6s ease;
}

.header::after {
    content: "";

    position: absolute;

    left: 5vw;
    right: 5vw;
    bottom: 0;

    height: 1px;

    background: rgba(255, 255, 255, .12);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 1s ease;
}

.header.scrolled {
    padding-top: 17px;
    padding-bottom: 17px;

    background: rgba(3, 10, 16, .9);

    backdrop-filter: blur(18px);
}

.header.scrolled::after {
    transform: scaleX(1);
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    position: relative;

    display: flex;
    flex-direction: column;

    z-index: 2;
}

.logo span {
    font-family: "Cormorant Garamond", serif;

    font-size: 31px;
    font-weight: 400;

    line-height: .8;

    letter-spacing: -2px;
}

.logo small {
    margin-top: 7px;

    font-size: 12px;

    letter-spacing: 4px;

    opacity: .65;
}


/* =========================================================
   NAV
========================================================= */

.nav {
    display: flex;

    align-items: center;

    gap: 40px;
}

.nav a {
    position: relative;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 2px;

    opacity: .7;

    transition: opacity .35s ease;
}

.nav a:hover {
    opacity: 1;
}

.nav a::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 1px;

    background: #fff;

    transform: scaleX(0);

    transform-origin: right;

    transition:
        transform .45s cubic-bezier(.16, 1, .3, 1);
}

.nav a:hover::before {
    transform: scaleX(1);

    transform-origin: left;
}


/* =========================================================
   HEADER BUTTON
========================================================= */

.header-button {
    position: relative;

    overflow: hidden;

    padding: 13px 20px;

    border: 1px solid rgba(255, 255, 255, .4);

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: color .4s ease;
}

.header-button::before {
    content: "";

    position: absolute;

    inset: 0;

    background: #fff;

    transform: translateY(101%);

    transition:
        transform .5s cubic-bezier(.16, 1, .3, 1);

    z-index: -1;
}

.header-button:hover {
    color: var(--night-deep);
}

.header-button:hover::before {
    transform: translateY(0);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.menu-button {
    display: none;

    width: 40px;
    height: 40px;

    border: none;

    background: transparent;

    cursor: pointer;

    z-index: 10;
}

.menu-button span {
    display: block;

    width: 27px;
    height: 1px;

    margin: 7px auto;

    background: #fff;

    transition:
        transform .5s cubic-bezier(.16, 1, .3, 1);
}

.menu-button.active span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-button.active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;

    min-height: 720px;

    overflow: hidden;

    background: #111;
}


/* =========================================================
   SLIDESHOW
========================================================= */

.hero-slideshow {
    position: absolute;

    inset: 0;

    overflow: hidden;
}

.hero-slide {
    position: absolute;

    inset: -3%;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    opacity: 0;

    transform: scale(1.12);

    animation:
        cinematicSlide 32s cubic-bezier(.2, .7, .2, 1) infinite;

    will-change:
        opacity,
        transform;
}


/* =========================================================
   IMAGENS DO FUNDO
========================================================= */

.slide-1 {
    background-image: url("img/img01.jpeg");
    animation-delay: 0s;
}

.slide-2 {
    background-image: url("img/img02.jpeg");
    animation-delay: 8s;
}

.slide-3 {
    background-image: url("img/img03.jpeg");
    animation-delay: 16s;
}

.slide-4 {
    background-image: url("img/img04.jpeg");
    animation-delay: 24s;
}


@keyframes cinematicSlide {

    0% {
        opacity: 0;
        transform: scale(1.12);
    }

    5% {
        opacity: 1;
    }

    24% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        transform: scale(1.01);
    }

    100% {
        opacity: 0;
        transform: scale(1.12);
    }

}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .12),
            rgba(0, 0, 0, .3)
        );
}

.hero-overlay::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, .4),
            transparent 35%,
            rgba(0, 0, 0, .75)
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    padding: 130px 5vw 40px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    color: #fff;
}

.hero-top {
    display: flex;

    justify-content: space-between;

    font-size: 7px;

    letter-spacing: 3px;

    opacity: .65;

    animation:
        heroTopIn 1.5s .5s both;
}

@keyframes heroTopIn {

    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: .65;
        transform: translateY(0);
    }

}

.hero-center {
    max-width: 900px;
}

.eyebrow {
    margin-bottom: 20px;

    font-size: 14px;

    letter-spacing: 5px;

    text-transform: uppercase;

    opacity: .7;

    animation:
        textReveal 1.2s .5s both;
}

.hero h1 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(90px, 13vw, 190px);

    font-weight: 300;

    line-height: .72;

    letter-spacing: -8px;

    overflow: hidden;

    animation:
        titleReveal 1.5s .7s cubic-bezier(.16, 1, .3, 1) both;
}

.hero h1 i {
    font-style: italic;

    font-weight: 300;
}

.hero-description {
    max-width: 520px;

    margin-top: 45px;

    font-size: 18px;

    line-height: 1.9;

    opacity: .78;

    animation:
        textReveal 1.2s 1.2s both;
}

.hero-link {
    display: inline-flex;

    align-items: center;

    gap: 20px;

    margin-top: 35px;

    padding-bottom: 10px;

    border-bottom:
        1px solid rgba(255, 255, 255, .5);

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 2px;

    animation:
        textReveal 1.2s 1.4s both;

    transition:
        gap .4s ease;
}

.hero-link:hover {
    gap: 30px;
}

.hero-link strong {
    font-size: 18px;

    font-weight: 300;
}


@keyframes titleReveal {

    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes textReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.hero-bottom {
    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 7px;

    letter-spacing: 3px;

    opacity: .6;
}

.hero-bottom span:nth-child(2) {
    animation:
        linePulse 2s ease infinite;
}

@keyframes linePulse {

    0%,
    100% {
        opacity: .2;
    }

    50% {
        opacity: 1;
    }

}


/* =========================================================
   STATEMENT
========================================================= */

.statement {
    position: relative;

    padding: 190px 12vw;

    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 70px;
}

.statement::before {
    content: "";

    position: absolute;

    top: 0;
    left: 12vw;

    width: 1px;
    height: 100px;

    background: var(--cyan);

    transform: scaleY(0);

    transform-origin: top;

    transition:
        transform 1.5s ease;
}

.statement:hover::before {
    transform: scaleY(1);
}

.statement-number {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 17px;

    opacity: .4;
}

.statement h2 {
    max-width: 950px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(55px, 7vw, 105px);

    font-weight: 300;

    line-height: .9;

    letter-spacing: -4px;
}

.statement h2 em {
    font-style: italic;
}

.statement-content > p:last-child {
    max-width: 560px;

    margin-top: 65px;
    margin-left: auto;

    font-size: 18px;

    line-height: 2;

    opacity: .65;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.section-label {
    margin-bottom: 30px;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 3px;

    opacity: .5;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    display: grid;

    grid-template-columns: 52% 48%;

    min-height: 850px;
}

.about-image {
    position: relative;

    overflow: hidden;

    background: var(--night-soft);
}

.about-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(0, 0, 0, .3)
        );

    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1.8s cubic-bezier(.16, 1, .3, 1);
}

.about-image:hover img {
    transform: scale(1.06);
}

.about-content {
    padding: 120px 10vw;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.about-content h2 {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(70px, 8vw, 120px);

    font-weight: 300;

    line-height: .78;

    letter-spacing: -5px;
}

.about-content h2 em {
    font-style: italic;
}

.about-content p:not(.section-label) {
    max-width: 580px;

    margin-top: 40px;

    font-size: 18px;

    line-height: 1.95;

    opacity: .7;
}

.text-link {
    display: flex;

    align-items: center;

    gap: 20px;

    width: fit-content;

    margin-top: 50px;

    padding-bottom: 10px;

    border-bottom:
        1px solid var(--blue-line);

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 2px;

    transition:
        gap .4s ease;
}

.text-link:hover {
    gap: 30px;
}


/* =========================================================
   PORTFÓLIO
========================================================= */

.portfolio {
    position: relative;

    padding: 190px 5vw;
}

.portfolio::before {
    content: "";

    position: absolute;

    top: 0;
    right: 5vw;

    width: 34vw;
    height: 1px;

    background: linear-gradient(90deg, transparent, var(--cyan));

    opacity: .7;
}

.portfolio-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 100px;
}

.portfolio-heading h2 {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(70px, 8vw, 125px);

    font-weight: 300;

    line-height: .78;

    letter-spacing: -6px;
}

.portfolio-heading h2 em {
    font-style: italic;
}

.portfolio-intro {
    max-width: 390px;

    font-size: 17px;

    line-height: 1.9;

    opacity: .6;
}


/* =========================================================
   TOPICS
========================================================= */

.topics {
    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr) minmax(0, .88fr);

    align-items: start;

    gap: clamp(25px, 5vw, 80px);
}

.topic:nth-child(2) {
    margin-top: 140px;
}

.topic {
    position: relative;

    display: block;

    width: 100%;

    padding: 0;

    border: none;

    background: transparent;

    text-align: left;

    cursor: pointer;

    overflow: hidden;
}

.topic-image {
    position: relative;

    height: 650px;

    overflow: hidden;

    background: var(--night-soft);

    border: 1px solid rgba(85, 215, 255, .16);
}

.topic:first-child .topic-image {
    height: 700px;
}

.topic:nth-child(2) .topic-image {
    height: 570px;
}

.topic-image::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    border:
        1px solid rgba(255, 255, 255, 0);

    transition:
        border .6s ease;
}

.topic:hover .topic-image::before {
    border:
        1px solid rgba(255, 255, 255, .3);
}

.topic-image::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .8),
            transparent 60%
        );

    transition:
        opacity .7s ease;
}

.topic:hover .topic-image::after {
    opacity: .85;
}

.topic-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1.6s cubic-bezier(.16, 1, .3, 1),
        filter 1s ease;
}

.topic:hover .topic-image img {
    transform: scale(1.09);

    filter: brightness(.78) saturate(1.08);
}


/* =========================================================
   TOPIC INFO
========================================================= */

.topic-info {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 28px;

    z-index: 5;

    display: flex;

    align-items: center;

    color: #fff;
}

.topic-info span {
    width: 45px;

    font-size: 8px;

    letter-spacing: 2px;

    opacity: .6;
}

.topic-info h3 {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 56px;

    font-weight: 300;

    line-height: 1;

    transform: translateY(10px);

    transition:
        transform .6s cubic-bezier(.16, 1, .3, 1);
}

.topic:hover .topic-info h3 {
    transform: translateY(0);
}

.topic-info strong {
    margin-left: auto;

    font-size: 25px;

    font-weight: 300;

    opacity: .8;

    transform: translateX(-10px);

    transition:
        transform .6s cubic-bezier(.16, 1, .3, 1),
        opacity .4s ease;
}

.topic:hover .topic-info strong {
    transform: translateX(0);

    opacity: 1;
}


/* =========================================================
   FILME EM DESTAQUE
========================================================= */

.featured-film {
    position: relative;

    padding: 60px 5vw 190px;
}

.featured-film-second {
    padding-top: 0;
}

.film-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.film-heading .section-label {
    margin-bottom: 0;
}

.film-heading > span {
    color: var(--cyan-bright);

    font-size: 8px;
    letter-spacing: 3px;
}

.film-frame {
    position: relative;

    min-height: min(62vw, 780px);

    overflow: hidden;

    background: var(--night-deep);
    border: 1px solid rgba(85, 215, 255, .25);

    box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

.film-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    background: #000;

    filter: saturate(.9) contrast(1.08);
}

.film-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg, rgba(2, 6, 11, .72), transparent 65%),
        linear-gradient(0deg, rgba(2, 6, 11, .68), transparent 48%);

    pointer-events: none;
}

.film-caption {
    position: absolute;
    left: clamp(24px, 5vw, 78px);
    bottom: clamp(30px, 5vw, 72px);

    display: flex;
    align-items: flex-start;
    gap: 25px;

    color: #fff;
}

.film-caption-number {
    padding-top: 9px;

    color: var(--cyan-bright);

    font-size: 8px;
    letter-spacing: 3px;
}

.film-caption p {
    margin-bottom: 16px;

    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.film-caption h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(55px, 7vw, 108px);
    font-weight: 300;
    line-height: .78;
    letter-spacing: -4px;
}

.film-caption h2 em {
    font-style: italic;
}

.film-sound {
    position: absolute;
    right: clamp(24px, 4vw, 60px);
    bottom: clamp(28px, 4vw, 58px);

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 12px 16px;

    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(2, 6, 11, .28);
    color: #fff;

    font-family: inherit;
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background .35s ease, border-color .35s ease, color .35s ease;
}

.film-sound:hover,
.film-sound[aria-pressed="true"] {
    border-color: var(--cyan-bright);
    background: var(--cyan);
    color: var(--night-deep);
}

.film-fullscreen {
    position: absolute;
    right: clamp(24px, 4vw, 60px);
    bottom: clamp(82px, 10vw, 118px);

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 12px 16px;

    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(2, 6, 11, .28);
    color: #fff;

    font-family: inherit;
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background .35s ease, border-color .35s ease, color .35s ease;
}

.film-fullscreen:hover {
    border-color: var(--cyan-bright);
    background: var(--cyan);
    color: var(--night-deep);
}

.sound-icon {
    font-size: 18px;
    line-height: .6;
}

.fullscreen-icon {
    font-size: 17px;
    line-height: .6;
}

.film-corner-label {
    position: absolute;
    top: 28px;
    right: 30px;

    color: rgba(255, 255, 255, .7);

    font-size: 7px;
    line-height: 1.7;
    letter-spacing: 2px;
    text-align: right;
    text-transform: uppercase;
}


/* =========================================================
   GALERIA MODAL
========================================================= */

.gallery-modal {
    position: fixed;

    inset: 0;

    z-index: 99990;

    padding: 55px 6vw 80px;

    background: var(--night-deep);

    color: #fff;

    overflow-y: auto;

    opacity: 0;

    visibility: hidden;

    transform: translateY(40px);

    transition:
        opacity .6s ease,
        visibility .6s ease,
        transform .8s cubic-bezier(.16, 1, .3, 1);
}

.gallery-modal.active {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* =========================================================
   FECHAR GALERIA
========================================================= */

.gallery-close {
    position: fixed;

    top: 25px;
    right: 35px;

    z-index: 20;

    width: 55px;
    height: 55px;

    border:
        1px solid rgba(255, 255, 255, .35);

    background: transparent;

    color: #fff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 38px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background .4s ease,
        color .4s ease,
        transform .4s ease;
}

.gallery-close:hover {
    background: #fff;

    color: var(--night-deep);

    transform: rotate(90deg);
}


/* =========================================================
   GALERIA HEADER
========================================================= */

.gallery-modal-header {
    display: flex;

    align-items: flex-end;

    gap: 30px;

    margin-bottom: 80px;

    padding-top: 50px;
}

.gallery-modal-header span {
    font-size: 8px;

    letter-spacing: 3px;

    opacity: .45;
}

.gallery-modal-header h2 {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(70px, 9vw, 135px);

    font-weight: 300;

    line-height: .75;

    letter-spacing: -6px;
}


/* =========================================================
   GRID GALERIA
========================================================= */

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.gallery-photo {
    position: relative;

    overflow: hidden;

    background: var(--night-soft);

    animation:
        galleryPhotoReveal .9s cubic-bezier(.16, 1, .3, 1) both;
}

.gallery-photo {
    grid-column:
        span 1;
}

.gallery-photo img {
    width: 100%;

    height: 580px;

    object-fit: contain;

    background:
        var(--night-soft);

    transition:
        filter .8s ease;
}

.gallery-photo:hover img {
    filter: brightness(.72);
}

.gallery-photo::after {
    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid rgba(255, 255, 255, 0);

    pointer-events: none;

    transition:
        border .5s ease;
}

.gallery-photo:hover::after {
    border:
        1px solid rgba(255, 255, 255, .35);
}

@keyframes galleryPhotoReveal {

    from {
        opacity: 0;

        transform:
            translateY(60px) scale(.97);
    }

    to {
        opacity: 1;

        transform:
            translateY(0) scale(1);
    }

}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience {
    padding:
        170px 8vw 190px;

    background:
        var(--night-soft);
}

.experience-header {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: end;

    margin-bottom:
        75px;
}

.experience-header h2 {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(70px, 8vw, 125px);

    font-weight: 300;

    line-height: .78;

    letter-spacing: -6px;
}

.experience-header h2 em {
    font-style: italic;
}

.experience-list {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap:
        1px;

    background:
        var(--blue-line);
}

.experience-item {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-height:
        280px;

    padding:
        35px;

    background:
        var(--night);

    transition:
        transform .6s cubic-bezier(.16, 1, .3, 1),
        background .5s ease;
}

.experience-item::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        #0d2631;

    transform:
        scaleX(0);

    transform-origin:
        left;

    z-index: -1;

    transition:
        transform .7s cubic-bezier(.16, 1, .3, 1);
}

.experience-item:hover {
    transform:
        translateY(-8px);

    background:
        #0d2631;
}

.experience-item:hover::before {
    transform: none;
}

.experience-media {
    position: relative;

    height:
        230px;

    margin:
        -35px -35px 28px;

    overflow: hidden;

    background:
        #071018;

    isolation: isolate;
}

.experience-media::before {
    content: "";

    position: absolute;

    inset: -18px;

    z-index: -1;

    background-position: center;
    background-size: cover;

    filter:
        blur(16px)
        brightness(.5);
}

.experience-item:nth-child(1) .experience-media::before {
    background-image:
        url("casamento/1788208871250.jpeg");
}

.experience-item:nth-child(2) .experience-media::before {
    background-image:
        url("15 anos/Imagem -34.jpg");
}

.experience-item:nth-child(3) .experience-media::before {
    background-image:
        url("casamento/IMG_6692.jpg");
}

.experience-item:nth-child(4) .experience-media::before {
    background-image:
        url("15 anos/1788209339398.jpeg");
}

.experience-media img {
    position: relative;

    z-index: 1;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: .9;

    transition:
        opacity .5s ease;
}

.experience-item:hover .experience-media img {
    opacity: 1;
}

.experience-number {
    font-size: 9px;

    letter-spacing: 2px;

    opacity: .45;
}

.experience-title {
    margin-top:
        55px;
}

.experience-title h3 {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 47px;

    font-weight: 400;
}

.experience-description p {
    max-width: 390px;

    font-size: 17px;

    line-height: 1.9;

    opacity: .6;
}

.experience-arrow {
    text-align: right;

    align-self: flex-end;

    margin-top: -22px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 27px;

    transition:
        transform .5s cubic-bezier(.16, 1, .3, 1);
}

.experience-item:hover .experience-arrow {
    transform:
        translate(8px, -8px);
}


/* =========================================================
   BIG QUOTE
========================================================= */

.big-quote {
    position: relative;

    min-height:
        850px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    color: #fff;
}

.quote-background {
    position: absolute;

    inset: -6%;

    background:
        linear-gradient(
            rgba(0, 0, 0, .4),
            rgba(0, 0, 0, .65)
        ),
        url("casamento/1788209382830.jpeg");

    background-size:
        cover;

    background-position:
        center;

    transition:
        transform 2s cubic-bezier(.16, 1, .3, 1);
}

.big-quote:hover .quote-background {
    transform:
        scale(1.05);
}

.quote-content {
    position: relative;

    z-index: 2;

    text-align: center;
}

.quote-content > span {
    display: block;

    margin-bottom: 45px;

    font-size: 8px;

    letter-spacing: 4px;

    opacity: .65;
}

.quote-content h2 {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(75px, 10vw, 150px);

    font-weight: 300;

    line-height: .75;

    letter-spacing: -7px;
}

.quote-content em {
    font-style: italic;
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    padding:
        190px 8vw;
}

.process-title {
    margin-bottom:
        110px;
}

.process-title h2 {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(70px, 8vw, 125px);

    font-weight: 300;

    line-height: .78;

    letter-spacing: -6px;
}

.process-title h2 em {
    font-style: italic;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid var(--blue-line);
}

.process-card {
    position: relative;

    min-height:
        380px;

    padding:
        40px 30px;

    border-right:
        1px solid var(--blue-line);

    overflow: hidden;

    transition:
        color .5s ease;
}

.process-card:last-child {
    border-right:
        none;
}

.process-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        var(--night-soft);

    transform:
        translateY(101%);

    transition:
        transform .7s cubic-bezier(.16, 1, .3, 1);

    z-index: -1;
}

.process-card:hover {
    color: #fff;
}

.process-card:hover::before {
    transform:
        translateY(0);
}

.process-card > span {
    font-size: 11px;

    letter-spacing: 2px;

    opacity: .5;
}

.process-card h3 {
    margin-top:
        90px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 54px;

    font-weight: 400;
}

.process-card p {
    max-width: 270px;

    margin-top:
        25px;

    font-size: 15px;

    line-height: 1.9;

    opacity: .6;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    position: relative;

    min-height:
        850px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    color: #fff;
}

.contact-background {
    position: absolute;

    inset: -6%;

    background:
        linear-gradient(
            rgba(10, 9, 8, .5),
            rgba(10, 9, 8, .72)
        ),
        url("15 anos/Imagem -120.jpg");

    background-size:
        cover;

    background-position:
        center;

    transition:
        transform 2s cubic-bezier(.16, 1, .3, 1);
}

.contact:hover .contact-background {
    transform:
        scale(1.05);
}

.contact-content {
    position: relative;

    z-index: 2;

    width: 90%;

    max-width:
        1000px;

    text-align:
        center;
}

.contact-content h2 {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(80px, 11vw, 160px);

    font-weight: 300;

    line-height: .72;

    letter-spacing: -8px;
}

.contact-content h2 em {
    font-style: italic;
}

.contact-content > p:not(.section-label) {
    max-width:
        580px;

    margin:
        55px auto 0;

    font-size:
        18px;

    line-height:
        1.9;

    opacity:
        .7;
}

.contact-button {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 35px;

    margin-top:
        50px;

    padding:
        18px 28px;

    border:
        1px solid rgba(255, 255, 255, .45);

    overflow: hidden;

    font-size:
        8px;

    text-transform:
        uppercase;

    letter-spacing:
        2px;

    transition:
        color .5s ease;
}

.contact-button::before {
    content: "";

    position: absolute;

    inset: 0;

    background: #fff;

    transform:
        translateY(101%);

    transition:
        transform .6s cubic-bezier(.16, 1, .3, 1);

    z-index: -1;
}

.contact-button:hover {
    color:
        var(--night-deep);
}

.contact-button:hover::before {
    transform:
        translateY(0);
}

.contact-button strong {
    font-size:
        18px;

    font-weight:
        300;

    transition:
        transform .4s ease;
}

.contact-button:hover strong {
    transform:
        translate(5px, -5px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding:
        70px 5vw 25px;

    background:
        var(--night-deep);

    color:
        #fff;
}

.footer-top {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    padding-bottom:
        60px;

    border-bottom:
        1px solid rgba(255, 255, 255, .15);
}

.footer-brand {
    display:
        flex;

    align-items:
        center;

    gap:
        20px;
}

.footer-brand > span {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        55px;

    line-height:
        .7;

    letter-spacing:
        -4px;
}

.footer-brand div {
    display:
        flex;

    flex-direction:
        column;
}

.footer-brand strong {
    font-size:
        9px;

    letter-spacing:
        3px;
}

.footer-brand small {
    margin-top:
        6px;

    font-size:
        7px;

    letter-spacing:
        2px;

    opacity:
        .45;
}

.footer-social {
    display:
        flex;

    gap:
        35px;
}

.footer-social a {
    position:
        relative;

    font-size:
        7px;

    text-transform:
        uppercase;

    letter-spacing:
        2px;

    opacity:
        .6;

    transition:
        opacity .4s ease;
}

.footer-social a:hover {
    opacity:
        1;
}

.footer-bottom {
    display:
        flex;

    justify-content:
        space-between;

    padding-top:
        25px;

    font-size:
        7px;

    text-transform:
        uppercase;

    letter-spacing:
        1.5px;

    opacity:
        .35;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity:
        0;

    transform:
        translateY(70px);

    transition:
        opacity 1.2s ease,
        transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.reveal.show {
    opacity:
        1;

    transform:
        translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .nav {
        gap:
            20px;
    }

    .header-button {
        display:
            none;
    }

    .statement {
        padding:
            150px 8vw;

        grid-template-columns:
            60px 1fr;

        gap:
            40px;
    }

    .about-content {
        padding:
            100px 8vw;
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .process-card:nth-child(2) {
        border-right:
            none;
    }

    .process-card:nth-child(-n + 2) {
        border-bottom:
            1px solid var(--blue-line);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    body {
        cursor:
            auto;
    }


    /* HEADER */

    .header {
        padding:
            23px 6vw;
    }

    .header.scrolled {
        padding:
            17px 6vw;
    }

    .logo span {
        font-size:
            27px;
    }

    .logo small {
        font-size:
            6px;
    }

    .menu-button {
        display:
            block;
    }


    .nav {
        position:
            fixed;

        inset:
            0;

        width:
            100%;

        height:
            100vh;

        background:
            var(--night-deep);

        display:
            flex;

        flex-direction:
            column;

        align-items:
            center;

        justify-content:
            center;

        gap:
            28px;

        transform:
            translateY(-100%);

        transition:
            transform .8s cubic-bezier(.77, 0, .18, 1);

        z-index:
            -1;
    }

    .nav.active {
        transform:
            translateY(0);
    }

    .nav a {
        font-family:
            "Cormorant Garamond",
            serif;

        font-size:
            38px;

        letter-spacing:
            0;

        text-transform:
            none;

        opacity:
            1;
    }


    /* HERO */

    .hero {
        min-height:
            720px;
    }

    .hero-content {
        padding:
            115px 6vw 30px;
    }

    .hero h1 {
        font-size:
            82px;

        letter-spacing:
            -5px;
    }

    .hero-description {
        max-width:
            360px;

        margin-top:
            35px;

        font-size:
            16px;
    }

    .hero-top {
        font-size:
            6px;
    }


    /* STATEMENT */

    .statement {
        display:
            block;

        padding:
            120px 7vw;
    }

    .statement::before {
        left:
            7vw;
    }

    .statement-number {
        margin-bottom:
            50px;
    }

    .statement h2 {
        font-size:
            58px;

        letter-spacing:
            -3px;
    }

    .statement-content > p:last-child {
        margin-top:
            45px;

        font-size:
            16px;
    }


    /* ABOUT */

    .about {
        grid-template-columns:
            1fr;
    }

    .about-image {
        min-height:
            550px;
    }

    .about-content {
        padding:
            100px 7vw;
    }

    .about-content h2 {
        font-size:
            70px;

        letter-spacing:
            -4px;
    }


    /* PORTFÓLIO */

    .portfolio {
        padding:
            120px 6vw;
    }

    .portfolio-heading {
        display:
            block;

        margin-bottom:
            65px;
    }

    .portfolio-heading h2 {
        font-size:
            68px;
    }

    .portfolio-intro {
        margin-top:
            40px;
    }


    /* TOPICS */

    .topics {
        grid-template-columns:
            1fr;

        gap:
            15px;
    }

    .topic:nth-child(2) {
        margin-top:
            0;
    }

    .topic-image {
        height:
            530px;
    }

    .topic:first-child .topic-image,
    .topic:nth-child(2) .topic-image {
        height:
            530px;
    }

    .topic-info {
        left:
            22px;

        right:
            22px;

        bottom:
            22px;
    }

    .topic-info h3 {
        font-size:
            40px;
    }


    /* FILME EM DESTAQUE */

    .featured-film {
        padding:
            25px 6vw 120px;
    }

    .film-heading {
        align-items:
            flex-start;

        gap:
            18px;

        margin-bottom:
            20px;
    }

    .film-heading > span {
        padding-top:
            2px;

        font-size:
            7px;

        text-align:
            right;
    }

    .film-frame {
        min-height:
            620px;
    }

    .film-caption {
        left:
            22px;

        right:
            22px;

        bottom:
            105px;

        gap:
            14px;
    }

    .film-caption p {
        margin-bottom:
            12px;

        font-size:
            7px;

        letter-spacing:
            3px;
    }

    .film-caption h2 {
        font-size:
            57px;

        letter-spacing:
            -3px;
    }

    .film-sound {
        right:
            22px;

        bottom:
            28px;
    }

    .film-fullscreen {
        right:
            22px;

        bottom:
            78px;
    }

    .film-corner-label {
        top:
            22px;

        right:
            22px;
    }


    /* GALERIA */

    .gallery-modal {
        padding:
            80px 6vw 50px;
    }

    .gallery-close {
        top:
            18px;

        right:
            18px;

        width:
            48px;

        height:
            48px;
    }

    .gallery-modal-header {
        display:
            block;

        margin-bottom:
            55px;
    }

    .gallery-modal-header span {
        display:
            block;

        margin-bottom:
            20px;
    }

    .gallery-modal-header h2 {
        font-size:
            65px;

        letter-spacing:
            -4px;
    }

    .gallery-grid {
        display:
            block;
    }

    .gallery-photo {
        margin-bottom:
            15px;
    }

    .gallery-photo img {
        height:
            480px;
    }


    /* EXPERIENCE */

    .experience {
        padding:
            120px 7vw;
    }

    .experience-header {
        grid-template-columns:
            1fr;

        margin-bottom:
            70px;
    }

    .experience-header h2 {
        font-size:
            68px;

        letter-spacing:
            -4px;
    }

    .experience-list {
        grid-template-columns:
            1fr;
    }

    .experience-item {
        min-height:
            240px;

        padding:
            28px;
    }

    .experience-media {
        height:
            190px;

        margin:
            -28px -28px 24px;
    }

    .experience-title h3 {
        font-size:
            36px;
    }

    .experience-description {
        display:
            block;
    }


    /* QUOTE */

    .big-quote {
        min-height:
            600px;
    }

    .quote-content h2 {
        font-size:
            70px;

        letter-spacing:
            -4px;
    }


    /* PROCESS */

    .process {
        padding:
            120px 7vw;
    }

    .process-title {
        margin-bottom:
            70px;
    }

    .process-title h2 {
        font-size:
            68px;

        letter-spacing:
            -4px;
    }

    .process-grid {
        display:
            block;
    }

    .process-card {
        min-height:
            auto;

        padding:
            40px 0;

        border-right:
            none;

        border-bottom:
            1px solid var(--blue-line);
    }

    .process-card:nth-child(2) {
        border-right:
            none;
    }

    .process-card h3 {
        margin-top:
            50px;

        font-size:
            46px;
    }

    .process-card p {
        font-size:
            14px;
    }


    /* CONTACT */

    .contact {
        min-height:
            680px;
    }

    .contact-content h2 {
        font-size:
            75px;

        letter-spacing:
            -5px;
    }

    .contact-content > p:not(.section-label) {
        padding:
            0 15px;
    }


    /* FOOTER */

    .footer {
        padding:
            55px 7vw 25px;
    }

    .footer-top {
        display:
            block;
    }

    .footer-social {
        margin-top:
            40px;

        gap:
            20px;
    }

    .footer-bottom {
        display:
            block;
    }

    .footer-bottom span {
        display:
            block;

        margin-top:
            8px;
    }


}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

        scroll-behavior:
            auto !important;
    }

}

