@font-face {
    font-family: 'BB Modern';
    src: url('../fonts/BBModernPro-SemiCondensed.woff2') format('woff2'),
        url('../fonts/BBModernPro-SemiCondensed.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lovers in New York Bold';
    src: url('../fonts/LoversinNewYorkBold-Regular.woff2') format('woff2'),
        url('../fonts/LoversinNewYorkBold-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --green: #7F9A89;
    --maroon: #541A12;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--green);
    font-family: 'BB Modern', serif;
    font-weight: 400;
    overscroll-behavior: none;
    color: var(--maroon);
}

body {
    min-height: 100vh;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 58px 10px;
}

.landing__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 24px;
}

.landing-link {
    color: var(--maroon);
    font-family: 'BB Modern', serif;
    font-size: 14.945px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.757px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
    letter-spacing: 0;
}

.landing-link--end {
    justify-self: end;
}

.landing__logo {
    width: min(190px, 34vw);
    justify-self: center;
}

.landing__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 1;
    width: 100%;
    margin: 80px 0 0;
    text-align: center;
}

.landing__message {
    max-width: 610px;
    margin: 0;
    color: var(--maroon);
    text-align: center;
    font-kerning: none;
    font-feature-settings: 'ss04' on, 'liga' off;
    font-family: 'Lovers in New York Bold', serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.landing__soon {
    margin: 0;
    color: var(--maroon);
    font-family: 'BB Modern', serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.landing__bottom {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.landing__gif {
    width: min(170px, 18vw);
    height: auto;
}

.landing__mobile-links {
    display: none;
}

@media (min-width: 768px) {
    .landing-link {
        font-size: 18px;
    }

    .landing__soon {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .landing {
        min-height: 100svh;
        padding: 80px 32px 150px;
        display: grid;
        grid-template-areas:
            'top'
            'content'
            'bottom'
            'links';
        grid-template-rows: auto 1fr auto auto;
        grid-template-columns: 1fr;
    }

    .landing__top {
        grid-area: top;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .landing__top .landing-link,
    .landing__top .landing-link--end {
        display: none;
    }

    .landing__logo {
        width: min(190px, 54vw);
    }

    .landing__content {
        grid-area: content;
        justify-content: center;
        gap: 22px;
        margin-top: 0;
        padding: 12px 0 8px;
    }

    .landing__message {
        margin-top: 60px;
        font-size: 16px;
        line-height: 28px;
    }

    .landing__bottom {
        grid-area: bottom;
        margin-top: 0;
        margin-bottom: 12px;
    }

    .landing__gif {
        width: min(182px, 38vw);
    }

    .landing__mobile-links {
        display: grid;
        grid-area: links;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: end;
        width: 100%;
    }

    .landing__mobile-links .landing-link:first-child {
        justify-self: start;
    }

    .landing__mobile-links .landing-link--end {
        justify-self: end;
    }
}

/* highlight color corporativo */
::-moz-selection {
    background-color: var(--maroon);
    color: var(--green);
}

::selection {
    background-color: var(--maroon);
    color: var(--green);

}
