* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: #f4f1eb;
    color: #111;

    font-family: "Montserrat", sans-serif;
}


a {
    color: inherit;
    text-decoration: none;
}


/* =========================================
   HEADER
========================================= */

.header {
    height: 76px;
    width: 100%;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5vw;

    background: rgba(244, 241, 235, 0.92);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}


.logo {
    font-family: "Cormorant Garamond", serif;

    font-size: 27px;

    font-weight: 600;
}


.header nav {
    display: flex;

    gap: 35px;
}


.header nav a {
    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition: 0.3s;
}


.header nav a:hover {
    opacity: 0.5;
}


.header-button {
    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    border: 1px solid #111;

    padding: 12px 18px;

    transition: 0.3s;
}


.header-button:hover {
    background: #111;

    color: #f4f1eb;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;

    padding: 110px 5vw 40px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    position: relative;

    overflow: hidden;
}


.hero::before {
    content: "";

    position: absolute;

    width: 65vw;
    height: 65vw;

    border: 1px solid rgba(0, 0, 0, 0.08);

    border-radius: 50%;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}


.hero::after {
    content: "";

    position: absolute;

    width: 48vw;
    height: 48vw;

    border: 1px solid rgba(0, 0, 0, 0.06);

    border-radius: 50%;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}


.hero-top,
.hero-bottom {
    display: flex;

    justify-content: space-between;

    font-size: 9px;

    letter-spacing: 3px;

    text-transform: uppercase;

    position: relative;

    z-index: 2;
}


.hero-center {
    position: relative;

    z-index: 2;

    text-align: center;

    margin-top: 20px;
}


.small-title {
    font-size: 9px;

    letter-spacing: 5px;

    margin-bottom: 35px;
}


.hero h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(75px, 14vw, 210px);

    line-height: 0.68;

    font-weight: 400;

    letter-spacing: -8px;

    display: flex;

    flex-direction: column;

    align-items: center;
}


.hero h1 b {
    font-weight: 300;

    font-size: 0.45em;

    line-height: 0.7;

    letter-spacing: 0;
}


.hero h1 span:last-child {
    font-style: italic;
}


.hero-line {
    width: 70px;

    height: 1px;

    background: #111;

    margin: 55px auto 25px;
}


.hero-text {
    max-width: 440px;

    margin: auto;

    font-size: 12px;

    line-height: 1.9;
}


.discover {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    margin-top: 30px;

    font-size: 9px;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.discover span {
    font-size: 18px;
}


/* =========================================
   STORY
========================================= */

.story {
    min-height: 90vh;

    background: #111;

    color: #f4f1eb;

    padding: 120px 10vw;

    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 8vw;
}


.section-number {
    font-size: 10px;

    letter-spacing: 3px;

    opacity: 0.5;
}


.story-content {
    max-width: 850px;
}


.label {
    font-size: 9px;

    letter-spacing: 4px;

    margin-bottom: 35px;

    text-transform: uppercase;

    opacity: 0.65;
}


.story h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(55px, 7vw, 110px);

    line-height: 0.9;

    font-weight: 400;
}


.story h2 em {
    display: block;

    font-style: italic;
}


.story-text {
    max-width: 540px;

    margin-top: 50px;

    font-size: 13px;

    line-height: 2;

    opacity: 0.7;
}


/* =========================================
   STATEMENT
========================================= */

.statement {
    min-height: 65vh;

    display: flex;

    align-items: center;

    padding: 100px 10vw;

    background: #ded8ce;
}


.statement-inner {
    width: 100%;
}


.statement-inner > span {
    font-size: 10px;

    letter-spacing: 3px;
}


.statement h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(45px, 7vw, 105px);

    font-weight: 400;

    line-height: 0.95;

    margin-top: 50px;
}


.statement h2 em {
    font-style: italic;
}


/* =========================================
   GALERIA
========================================= */

.gallery-section {
    padding: 130px 7vw;
}


.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 70px;
}


.section-heading h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(55px, 8vw, 120px);

    font-weight: 400;

    line-height: 0.8;
}


.section-heading h2 em {
    font-style: italic;
}


.section-heading > p {
    max-width: 300px;

    font-size: 11px;

    line-height: 1.8;

    opacity: 0.6;
}


.gallery {
    min-height: 400px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}


.empty-gallery {
    min-height: 400px;

    grid-column: 1 / -1;

    border: 1px solid rgba(0, 0, 0, 0.15);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 40px;
}


.empty-icon {
    font-family: "Cormorant Garamond", serif;

    font-size: 60px;

    margin-bottom: 20px;
}


.empty-gallery h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 30px;

    font-weight: 400;
}


.empty-gallery p {
    max-width: 400px;

    margin: 15px 0 25px;

    font-size: 11px;

    line-height: 1.8;

    opacity: 0.6;
}


.empty-gallery a {
    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;

    border-bottom: 1px solid #111;

    padding-bottom: 7px;
}


/* =========================================
   FOTOS DA GALERIA
========================================= */

.gallery-photo {
    position: relative;

    overflow: hidden;

    aspect-ratio: 1 / 1;

    background: #ddd;
}


.gallery-photo img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


.gallery-photo:hover img {
    transform: scale(1.04);
}


.download-button {
    position: absolute;

    right: 12px;

    bottom: 12px;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #111;

    color: #fff;

    font-size: 18px;

    opacity: 0;

    transition: 0.3s;
}


.gallery-photo:hover .download-button {
    opacity: 1;
}


/* =========================================
   COMPARTILHAR
========================================= */

.share-section {
    background: #111;

    color: #f4f1eb;

    padding: 130px 10vw;

    display: grid;

    grid-template-columns: 1fr 3fr;

    gap: 5vw;
}


.share-content {
    max-width: 900px;
}


.share-section .label {
    opacity: 0.5;
}


.share-section h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(55px, 7vw, 110px);

    font-weight: 400;

    line-height: 0.9;
}


.share-section h2 em {
    font-style: italic;
}


.share-description {
    max-width: 480px;

    margin-top: 40px;

    font-size: 12px;

    line-height: 2;

    opacity: 0.65;
}


/* =========================================
   UPLOAD
========================================= */

.upload-box {
    margin-top: 50px;
}


.upload-label {
    min-height: 190px;

    border: 1px dashed rgba(244, 241, 235, 0.35);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: 0.3s;
}


.upload-label:hover {
    border-color: #f4f1eb;

    background: rgba(255, 255, 255, 0.04);
}


.upload-plus {
    font-family: "Cormorant Garamond", serif;

    font-size: 45px;

    margin-bottom: 15px;
}


.upload-label strong {
    font-size: 10px;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.upload-label small {
    margin-top: 10px;

    font-size: 9px;

    opacity: 0.5;
}


/* =========================================
   PREVIEW
========================================= */

.preview {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

    margin-top: 20px;
}


.preview-item {
    position: relative;

    aspect-ratio: 1;

    overflow: hidden;
}


.preview-item img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}


.remove-photo {
    position: absolute;

    top: 7px;

    right: 7px;

    width: 25px;

    height: 25px;

    border: none;

    border-radius: 50%;

    background: #111;

    color: #fff;

    cursor: pointer;
}


/* =========================================
   BOTÃO ENVIAR
========================================= */

.send-button {
    width: 100%;

    margin-top: 20px;

    padding: 18px;

    border: 1px solid #f4f1eb;

    background: transparent;

    color: #f4f1eb;

    font-family: "Montserrat", sans-serif;

    font-size: 9px;

    letter-spacing: 3px;

    text-transform: uppercase;

    cursor: pointer;

    transition: 0.3s;
}


.send-button:not(:disabled):hover {
    background: #f4f1eb;

    color: #111;
}


.send-button:disabled {
    opacity: 0.3;

    cursor: not-allowed;
}


.status {
    text-align: center;

    margin-top: 15px;

    font-size: 10px;

    opacity: 0.6;
}


/* =========================================
   COMO FUNCIONA
========================================= */

.steps {
    padding: 130px 7vw;
}


.steps-title h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(60px, 8vw, 120px);

    font-weight: 400;
}


.steps-grid {
    margin-top: 90px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(0, 0, 0, 0.2);
}


.step {
    padding: 35px 25px 20px 0;

    border-right: 1px solid rgba(0, 0, 0, 0.15);
}


.step:not(:first-child) {
    padding-left: 25px;
}


.step:last-child {
    border-right: none;
}


.step span {
    font-size: 9px;

    letter-spacing: 2px;

    opacity: 0.5;
}


.step h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 35px;

    font-weight: 400;

    margin: 30px 0 15px;
}


.step p {
    max-width: 200px;

    font-size: 10px;

    line-height: 1.8;

    opacity: 0.6;
}


/* =========================================
   FINAL
========================================= */

.final-section {
    min-height: 75vh;

    padding: 120px 7vw;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.final-section > p {
    font-size: 9px;

    letter-spacing: 4px;

    margin-bottom: 50px;
}


.final-section h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(65px, 10vw, 150px);

    line-height: 0.8;

    font-weight: 400;
}


.final-section h2 em {
    font-style: italic;
}


/* =========================================
   FOOTER
========================================= */

footer {
    background: #111;

    color: #f4f1eb;

    padding: 25px 5vw;

    display: flex;

    justify-content: space-between;

    font-size: 8px;

    letter-spacing: 3px;

    opacity: 0.8;
}


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 850px) {

    .header nav {
        display: none;
    }


    .hero h1 {
        font-size: clamp(65px, 18vw, 130px);

        letter-spacing: -5px;
    }


    .story {
        grid-template-columns: 1fr;

        padding: 100px 8vw;
    }


    .section-number {
        margin-bottom: 30px;
    }


    .section-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 35px;
    }


    .share-section {
        grid-template-columns: 1fr;

        padding: 100px 8vw;
    }


    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }


    .step:nth-child(2) {
        border-right: none;
    }


    .step:nth-child(3),
    .step:nth-child(4) {
        border-top: 1px solid rgba(0, 0, 0, 0.15);
    }

}


@media (max-width: 500px) {

    .header {
        padding: 0 20px;
    }


    .header-button {
        padding: 10px;
    }


    .hero {
        padding: 100px 20px 30px;
    }


    .hero-top,
    .hero-bottom {
        font-size: 7px;

        letter-spacing: 2px;
    }


    .hero h1 {
        font-size: 70px;
    }


    .hero-text {
        font-size: 11px;
    }


    .gallery-section,
    .steps,
    .final-section {
        padding-left: 25px;

        padding-right: 25px;
    }


    .gallery {
        grid-template-columns: 1fr;
    }


    .preview {
        grid-template-columns: repeat(2, 1fr);
    }


    .steps-grid {
        grid-template-columns: 1fr;
    }


    .step,
    .step:not(:first-child) {
        border-right: none;

        border-bottom: 1px solid rgba(0, 0, 0, 0.15);

        padding: 30px 0;
    }


    .step:last-child {
        border-bottom: none;
    }


    footer {
        flex-direction: column;

        gap: 12px;
    }

}