@import url("/styles/montserrat.css");

@font-face {
    font-family: "Huninn-Regular";
    src: url("/fonts/Huninn-Regular.ttf") format("truetype");
}

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

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat";
    font-size: 14px;
    margin: 0;
    height: 100%;
    scroll-behavior: smooth;
}

main {
    margin: 0 auto;
    max-width: 800px;
}

nav {
    background: black;
    padding: 0.8em;
}

video {
    max-width: 100%;
}

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

#menu-items {
    color: white;
    text-transform: uppercase;
    display: flex;
    gap: 2em;
}

#nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

#banner {
    display: flex;
    flex: none;
    overflow: auto;
    position: relative;
    color: white;
    text-align: center;
    scroll-snap-type: x mandatory;
}

.banner-item {
    display: flex;
    height: 300px;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    /* padding: 2em; */
    flex: none;
    scroll-snap-align: start;
}

.banner-img {
    position: absolute;
    z-index: -1;
    object-fit: cover;
}

.banner-title {
    font-size: 1.6em;
    text-transform: uppercase;
}

.banner-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    gap: 1em;
    padding: 1em;
    background: linear-gradient(0deg, #000a 0%, #0000 100%);
}

.button {
    display: inline-block;
    background-color: #000000aa;
    padding: 0.6em;
    border: 1px solid #f7cc23;
}

.main-section {
    padding: 0.6em;
    background: #efefef;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.text-section {
    line-height: 1.4;
    padding: 1.2em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    background: white;
    border: 1px solid #bebebe;
}

.text-title {
    text-align: center;
}

#contato {
    background: black;
    padding: 1em;
}

.area-contato {
    margin: 0 auto;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 0.6em;
}

.arrow {
    border: solid #ddd;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 4px;
    position: absolute;
    top: 50%;
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    left: 12px;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    right: 12px;
}

@media (min-width: 700px) {
    .column {
        flex-direction: row-reverse;
    }
    .column-fst {
        min-width: 50%;
        max-width: 50%;
    }
}
