/* =========================================================
   NOMA
   CATÁLOGO — PRODUTOS
========================================================= */



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

.page-hero {
    position: relative;

    min-height: 72vh;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background-image:
        url("assets/hero.jpg");

    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10, 10, 9, 0.24) 0%,
            rgba(10, 10, 9, 0.42) 42%,
            rgba(10, 10, 9, 0.90) 100%
        );
}

.page-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;

    padding-top: 180px;
    padding-bottom: 105px;

    color: #f2efe9;
}

.page-hero-content .eyebrow {
    margin-bottom: 28px;

    font-family: var(--mono);
    font-size: 9px;
    font-weight: 400;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: rgba(242, 239, 233, 0.62);
}

.page-hero-content h1 {
    max-width: 800px;

    margin: 0;

    font-family: var(--serif);
    font-size: clamp(68px, 9vw, 128px);
    font-weight: 400;

    line-height: 0.88;
    letter-spacing: -0.06em;

    color: #f2efe9;
}

.page-hero-content p:last-child {
    max-width: 440px;

    margin-top: 38px;

    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;

    line-height: 1.8;

    color: rgba(242, 239, 233, 0.68);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .page-hero {
        min-height: 65vh;
    }

    .page-hero-content {
        padding-top: 160px;
        padding-bottom: 85px;
    }

    .page-hero-content h1 {
        font-size: clamp(62px, 10vw, 100px);
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .page-hero {
        min-height: 72vh;

        background-position: center;
    }

    .page-hero-content {
        padding-top: 150px;
        padding-bottom: 68px;
    }

    .page-hero-content .eyebrow {
        margin-bottom: 21px;

        font-size: 8px;

        letter-spacing: 0.16em;
    }

    .page-hero-content h1 {
        max-width: 340px;

        font-size: clamp(56px, 16vw, 78px);

        line-height: 0.9;
        letter-spacing: -0.06em;
    }

    .page-hero-content p:last-child {
        max-width: 310px;

        margin-top: 27px;

        font-size: 12px;
        line-height: 1.75;
    }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 420px) {

    .page-hero-content {
        padding-bottom: 55px;
    }

    .page-hero-content h1 {
        font-size: 54px;
    }

}



/* =========================================================
   CATALOG
========================================================= */

.catalog {
    padding: 150px 0 170px;

    background: var(--bg);
}

.catalog-heading {
    display: grid;

    grid-template-columns:
        minmax(180px, 0.65fr)
        1fr;

    gap: 80px;

    padding-bottom: 70px;

    border-bottom: 1px solid var(--line);
}

.catalog-heading .section-label {
    align-self: start;
}

.catalog-heading p {
    max-width: 560px;

    margin: 0;

    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.9;

    color: var(--muted);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.catalog .product-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 44px;
    row-gap: 100px;

    margin-top: 90px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.catalog .product-card {
    min-width: 0;

    margin-top: 0;

    transform: none;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.catalog .product-image {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: var(--bg-soft);
}

.catalog .product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s ease;
}

.catalog .product-card:hover .product-image img {
    transform: scale(1.035);
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.catalog .product-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;

    padding-top: 24px;
}

.catalog .product-category {
    display: block;

    margin-bottom: 9px;

    font-family: var(--mono);
    font-size: 8px;
    font-weight: 400;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: var(--accent);
}

.catalog .product-info h3 {
    margin: 0;

    font-family: var(--serif);
    font-size: clamp(23px, 2.3vw, 31px);
    font-weight: 400;

    line-height: 1.1;
    letter-spacing: -0.025em;

    color: var(--dark);
}

.catalog .product-info p {
    margin: 10px 0 0;

    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;

    color: var(--muted);
}


/* =========================================================
   PRODUCT BUTTON
========================================================= */

.catalog .product-button {
    flex-shrink: 0;

    margin-top: 4px;
    padding: 11px 0;

    border: 0;
    border-bottom:
        1px solid rgba(23, 23, 21, 0.3);

    background: transparent;

    font-family: var(--mono);
    font-size: 8px;
    font-weight: 400;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--dark);

    cursor: pointer;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.catalog .product-button:hover {
    color: var(--accent);

    border-color: var(--accent);
}


/* =========================================================
   CATALOG CONTACT
========================================================= */

.catalog-contact {
    position: relative;

    padding: 150px 0 170px;

    overflow: hidden;

    background: var(--dark);

    color: var(--bg);
}

.catalog-contact::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -260px;
    right: -120px;

    border:
        1px solid rgba(242, 239, 233, 0.08);

    border-radius: 50%;
}

.catalog-contact::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    bottom: -500px;
    left: -250px;

    border:
        1px solid rgba(242, 239, 233, 0.05);

    border-radius: 50%;
}

.catalog-contact .container {
    position: relative;
    z-index: 2;
}

.catalog-contact .section-label {
    margin-bottom: 48px;

    color: rgba(242, 239, 233, 0.42);
}

.catalog-contact h2 {
    max-width: 850px;

    margin: 0;

    font-family: var(--serif);
    font-size: clamp(56px, 8vw, 112px);
    font-weight: 400;

    line-height: 0.92;
    letter-spacing: -0.055em;

    color: var(--bg);
}

.catalog-contact p {
    max-width: 470px;

    margin: 42px 0 0;

    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.9;

    color: rgba(242, 239, 233, 0.62);
}

.catalog-contact .contact-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 45px;
    padding: 16px 0;

    border-bottom:
        1px solid rgba(242, 239, 233, 0.45);

    font-family: var(--mono);
    font-size: 9px;
    font-weight: 400;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--bg);

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        gap 0.3s ease;
}

.catalog-contact .contact-button span {
    font-size: 15px;

    transition: transform 0.3s ease;
}

.catalog-contact .contact-button:hover {
    gap: 24px;

    color: var(--accent-light);

    border-color: var(--accent-light);
}

.catalog-contact .contact-button:hover span {
    transform: translate(3px, -3px);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .page-hero {
        min-height: 65vh;
    }

    .page-hero-content {
        padding-top: 160px;
        padding-bottom: 80px;
    }

    .catalog {
        padding: 110px 0 140px;
    }

    .catalog-heading {
        grid-template-columns: 1fr;

        gap: 30px;

        padding-bottom: 50px;
    }

    .catalog .product-grid {
        column-gap: 28px;
        row-gap: 75px;

        margin-top: 65px;
    }

    .catalog .product-card {
        margin-top: 0;
        transform: none;
    }

    .catalog-contact {
        padding: 120px 0 140px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .page-hero {
        min-height: 72vh;

        background-position: center;
    }

    .page-hero-content {
        padding-top: 150px;
        padding-bottom: 65px;
    }

    .page-hero-content .eyebrow {
        margin-bottom: 20px;

        font-size: 8px;
    }

    .page-hero-content h1 {
        font-size: clamp(52px, 15vw, 76px);

        letter-spacing: -0.06em;
    }

    .page-hero-content p:last-child {
        max-width: 300px;

        margin-top: 25px;

        font-size: 12px;
        line-height: 1.7;
    }


    /* CATALOG */

    .catalog {
        padding: 90px 0 110px;
    }

    .catalog-heading {
        gap: 25px;

        padding-bottom: 40px;
    }

    .catalog-heading p {
        max-width: 330px;

        font-size: 13px;
        line-height: 1.8;
    }


    /* PRODUCTS */

    .catalog .product-grid {
        grid-template-columns: 1fr;

        gap: 65px;

        margin-top: 55px;
    }

    .catalog .product-card {
        margin-top: 0;
        transform: none;
    }

    .catalog .product-image {
        aspect-ratio: 4 / 5;
    }

    .catalog .product-info {
        flex-direction: column;

        gap: 22px;

        padding-top: 20px;
    }

    .catalog .product-info h3 {
        font-size: 27px;
    }

    .catalog .product-info p {
        margin-top: 8px;

        font-size: 12px;
    }

    .catalog .product-button {
        align-self: flex-start;

        margin-top: 0;
    }


    


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 420px) {

    .page-hero-content {
        padding-bottom: 50px;
    }

    .page-hero-content h1 {
        font-size: 52px;
    }

    .catalog {
        padding-top: 75px;
    }

    .catalog .product-grid {
        gap: 55px;
    }

    .catalog .product-info h3 {
        font-size: 25px;
    }

    .catalog-contact h2 {
        font-size: 49px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .catalog .product-image img,
    .catalog .product-button,
    .catalog-contact .contact-button,
    .catalog-contact .contact-button span {
        transition: none;
    }

}
}