:root {
    --primary-gray-color: #666666;
    --secondary-gray-color: #222222;
    --accent-color: #d9852c;
    --text-color: #ffffff;
    --secondary-text-color: #999999;
    --input-background-color: #cccccc;
    --banner-background-color: rgba(0, 0, 0, 0.2);
    --form-input-bg-color: rgba(54, 54, 54, .5);

    --full-menu: 140px;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

/* ANIMAÇÃO DO TOAST */
@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

input,
select {
    padding: 5px;
    border-radius: 3px;
    border: 1px solid var(--secondary-text-color);
    outline-color: var(--secondary-text-color);
    background-color: var(--input-background-color) !important;
    /* transform: skewX(-10deg); */
    color: var(--secondary-gray-color);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    cursor: text;
    transition: all 0.2s ease-in-out;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-kerning: auto;
    margin: 0;
    padding: 0;
    background: #222222;
    height: 300vh;
    overflow-x: hidden;
}

header {
    display: grid;
    grid-template-columns: 1fr 3fr;
    position: fixed;
    align-items: center;
    height: 140px;
    width: 100%;
    background-color: #282828;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.6);
    padding: 0 20px;
    z-index: 100;
}

button {
    padding: 5px 10px;
    border-radius: 3px;
    border: none;
    background-color: var(--primary-gray-color);
    /* transform: skewX(-10deg); */
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

button:hover {
    background-color: #fc7100;
    border-radius: 3px;
    transition: all 0.2s ease-in-out;
}

a {
    text-decoration: none;
    color: inherit;
    padding: 5px 10px;
}

li>a:hover {
    transform: skewX(-10deg);
    border-bottom: 2px solid #fc7100;
    border-radius: 3px;
    transition: all 0.2s ease-in-out;
}

/* MASTERGRID */

.mastergrid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100vh calc(100vh - 140px) auto 630px 220px;
}

/* NAV */

nav {
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 0 40px;
    height: 100%;
    text-transform: uppercase;
}

#menusmall {
    display: none;
}

ul.menu {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 0 20px;
    margin: 0;
    color: var(--text-color);
    font-size: 1.3rem;
}

#logo {
    display: flex;
    justify-self: end;
    width: 280px;
    padding-right: 10px;
}

#hambmenu {
    anchor-name: --hambmenu;
}

#menuopen {
    position-anchor: --hambmenu;
    display: none;
    position: absolute;
    right: anchor(right);
    top: anchor(bottom);
    background-color: var(--primary-gray-color);
    opacity: 0.9;
    z-index: 100;
    padding: 20px;
    box-shadow: 0 0 10px 0 oklch(0% 0 0 / 0.6);
    border-radius: 2px;
    transition: all 0.2s ease-in-out;
    margin-top: 10px;
}

#menuopen ul {
    font-size: 1.5rem;
    list-style: none;
    line-height: 2;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

/* MAIN */

main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    height: 100vh;
}

#mainside {
    display: grid;
    position: relative;
    background-color: var(--primary-gray-color);
    opacity: 0.9;
    background-image: linear-gradient(0deg, #363636 50%, #303030 50%);
    background-size: 10px 10px;
    background-attachment: fixed;
    box-shadow: 0 0 10px 0 oklch(0% 0 0 / 0.6);
    z-index: 3;
    overflow: visible;
}

#mainsidetitle {
    position: absolute;
    background-color: oklch(25.197% 0.00003 271.152 / 0.68);
    justify-self: end;
    align-self: center;
    width: 16vw;
    padding: 2rem 1.5rem;
    top: calc(var(--full-menu) * 4.5);
    z-index: 10;
    overflow: hidden;
    text-transform: uppercase;
}

#mainsidetitle h1 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

#mainsidetitle p {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

#mainsidebg {
    position: absolute;
    justify-self: flex-end;
    align-self: top;
    top: var(--full-menu);
    /* background-color: oklch(80.152% 0.00009 271.152 / 0.98); */
    background-image: url("img/bg/mainsidebg.png");
    background-size: auto;
    background-position: top right;
    background-repeat: no-repeat;
    height: 45%;
    width: 100%;
    z-index: 10;
    overflow: visible;
}

#msslides {
    display: flex;
    position: absolute;
    justify-self: center;
    justify-content: center;
    align-self: top;
    top: var(--full-menu);
    height: 45%;
    width: 94%;
    z-index: 10;
    overflow: visible;
}

/* Cada slide ocupa exatamente o mesmo espaço */
#msslides .sideSlide {
    position: absolute;
    top: var(--full-menu);
    margin: 0 auto;
    max-height: 300px;
    max-width: 400px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* O primeiro slide começa visível */
#msslides .sideSlide:first-child {
    opacity: 1;
}

#msslides .sideSlide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#framelogo {
    height: 120vh;
    background-image: url("img/framelogo.svg");
    background-size: cover;
    background-position: 5% 75%;
    animation: parallax-v linear;
    animation-timeline: view(20vh);
    overflow: visible;
    background-repeat: no-repeat;
}

#maincontent {
    z-index: 2;
    position: relative;
    overflow: hidden;
}

#mainbg video {
    position: relative;
    opacity: 0.2;
    object-fit: cover;
    object-position: center;
    left: calc(var(--full-menu)* -2);
    z-index: -1;
    width: 100vw;
    height: 100vh;
    position: absolute;
}

#mainbottomlines {
    position: absolute;
    display: flex;
    box-sizing: border-box;
    flex-direction: row;
    top: 100vh;
    left: 0;
    width: 300px;
    height: 140px;
    overflow: hidden;
    padding-left: 15px;
    z-index: 10;
    animation: parallax-h linear;
    animation-timeline: view();
}

#mainbottomlines div {
    height: 65px;
    width: 10px;
    transform: skewX(-20deg);
    background-color: var(--accent-color);
    opacity: 0.9;
    margin: 0 10px 0 0;
}

/* ABOUT */

.about {
    display: grid;
    grid-template-columns: 1fr 3fr;
    background: var(--secondary-text-color);
    height: calc(100vh - 140px);
    width: 100%;
    z-index: 5;
    overflow: hidden;
}

.about #text {
    display: flex;
    justify-content: space-between;
    background-image: url("img/bg/aboutbg.jpg");
    background-size: cover;
    background-position: center;
    padding: 18%;
    color: var(--text-color);
    flex-direction: column;
    z-index: 7;
}

.about #text h1 {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.about #text p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.about #img {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-gray-color);
    background-image: linear-gradient(0deg, #363636 50%, #303030 50%);
    background-size: 10px 10px;
    background-attachment: fixed;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.6);
    z-index: 6;
    overflow: hidden;
}

/* CATALOG */

.catalog {
    background: var(--primary-gray-color);
    min-height: 100vh;
    padding: 0px;
    margin: 0px;
}

#catalogtitle {
    display: flex;
    align-items: center;
    color: var(--text-color);
    background-image: linear-gradient(90deg,
            rgba(36, 36, 36, 1) 0%,
            rgba(255, 255, 255, 0) 100%);
    font-size: 4rem;
    font-weight: 200;
    text-transform: uppercase;
    padding: 0 0 0 5%;
    height: 140px;
}

#catalogtitle_bg {
    background-color: var(--secondary-gray-color);
    opacity: 0.9;
    background-image:
        linear-gradient(30deg,
            #2f2f2f 12%,
            transparent 12.5%,
            transparent 87%,
            #2f2f2f 87.5%,
            #2f2f2f),
        linear-gradient(150deg,
            #2f2f2f 12%,
            transparent 12.5%,
            transparent 87%,
            #2f2f2f 87.5%,
            #2f2f2f),
        linear-gradient(30deg,
            #2f2f2f 12%,
            transparent 12.5%,
            transparent 87%,
            #2f2f2f 87.5%,
            #2f2f2f),
        linear-gradient(150deg,
            #2f2f2f 12%,
            transparent 12.5%,
            transparent 87%,
            #2f2f2f 87.5%,
            #2f2f2f),
        linear-gradient(60deg,
            #2f2f2f77 25%,
            transparent 25.5%,
            transparent 75%,
            #2f2f2f77 75%,
            #2f2f2f77),
        linear-gradient(60deg,
            #2f2f2f77 25%,
            transparent 25.5%,
            transparent 75%,
            #2f2f2f77 75%,
            #2f2f2f77);
    background-size: 14px 25px;
    background-position:
        0 0,
        0 0,
        7px 12px,
        7px 12px,
        0 0,
        7px 12px;
    height: 140px;
}

#catalogcontent {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    padding: 20px 20px 50px 20px;
}

#catalogfilter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0 4px 0;
}

#catalogfilter button {
    padding: 10px 20px;
    background-color: var(--primary-gray-color);
    color: var(--text-color);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: clamp(140px, 12vw, 440px);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    transform: skewX(-10deg);
}

#catalogfilter button.ativo {
    background-color: var(--accent-color);
    color: var(--text-color);
}

#produtos {
    background-color: var(--primary-gray-color);
    opacity: 0.9;
    background-image:
        linear-gradient(#ffffff 0.7000000000000001px,
            transparent 0.7000000000000001px),
        linear-gradient(to right,
            #ffffff 0.7000000000000001px,
            #eeeeee 0.7000000000000001px);
    background-size: 14px 14px;
    background-attachment: fixed;
}

div#emBreve {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    color: var(--secondary-gray-color);
    text-align: center;
    justify-self: center;
    align-self: center;
    padding: 20px;
    width: 100%;
}

/* CARD */

.card {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
    aspect-ratio: 1;
    background-color: var(--text-color);
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    padding: 20px;
    border: 0px solid #fc7100;

    /* transição suave */
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

/* estado escondido */
.card.escondido {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.card img {
    display: flex;
    justify-self: center;
    align-self: center;
    width: 94%;
    height: 94%;
    max-width: 320px;
    max-height: 225px;
    object-fit: contain;
    object-position: center;
    overflow: hidden;
}

.card p {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.card:hover {
    border: 5px solid #fc7100;
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

.cardtop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px inset var(--primary-gray-color);
}

.cardtop p {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.cardtag {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    min-width: 30px;
    transform: skewX(-10deg);
    min-height: 2rem;
}

/* CONTACTO */

#contacto {
    background-color: var(--secondary-gray-color);
    opacity: 0.9;
    padding: 0 5%;
    background-image: linear-gradient(0deg, #363636 50%, #303030 50%);
    background-size: 10px 10px;
    background-attachment: fixed;
    height: 630px;
}

#contactcontent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 0 1rem;
}

#contacttitles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

#contacttitles p {
    color: var(--primary-gray-color);
    font-size: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 0;
}

#contacto h1 {
    color: var(--text-color);
    font-size: 4rem;
    font-weight: 200;
    text-transform: uppercase;
}

#contactform {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

#contactform input,
#contactform textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    color: var(--text-color);
    background-color: var(--form-input-bg-color) !important;
    border: none;
    border-bottom: 2px solid var(--primary-gray-color);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: none !important;
}

#companyinfo {
    display: flex;
    flex-direction: column;
}

#companyinfo p {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    padding: 0 1rem;
    line-height: 1.5;
}

/* #companyinfo p:nth-child(1) {
    font-weight: bold;
} */

/* FOOTER */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    background: var(--secondary-gray-color);
    height: 220px;
    width: 100%;
}

/* SCROLL SNAP */

#sobre,
#produtos,
#contacto {
    scroll-margin-top: 140px;
}

dialog {
    border: none;
    border-radius: 3px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

/* DIALOG */

dialog::backdrop {
    background-color: #1f1f1f;
    opacity: 0.95;
    background-image:
        linear-gradient(30deg,
            #282828 12%,
            transparent 12.5%,
            transparent 87%,
            #282828 87.5%,
            #282828),
        linear-gradient(150deg,
            #282828 12%,
            transparent 12.5%,
            transparent 87%,
            #282828 87.5%,
            #282828),
        linear-gradient(30deg,
            #282828 12%,
            transparent 12.5%,
            transparent 87%,
            #282828 87.5%,
            #282828),
        linear-gradient(150deg,
            #282828 12%,
            transparent 12.5%,
            transparent 87%,
            #282828 87.5%,
            #282828),
        linear-gradient(60deg,
            #28282877 25%,
            transparent 25.5%,
            transparent 75%,
            #28282877 75%,
            #28282877),
        linear-gradient(60deg,
            #28282877 25%,
            transparent 25.5%,
            transparent 75%,
            #28282877 75%,
            #28282877);
    background-size: 16px 28px;
    background-position:
        0 0,
        0 0,
        8px 14px,
        8px 14px,
        0 0,
        8px 14px;
}

#adminPainel {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
}

#adminPainel h3 {
    text-align: center;
    padding: 0;
    margin: 0;
}

#adminLogin {
    aspect-ratio: 5/3;
    grid-template-rows: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
}

#adminLogin h3 {
    text-align: center;
    padding: 0;
    margin: 0;
}

#loginButtons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

#produtosForm {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--secondary-text-color);
    border-radius: 3px;
}

#produtosList {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--secondary-text-color);
    border-radius: 3px;
    max-height: 40vh;
    overflow-y: auto;
}

#listaProdutos {
    display: flex;
    flex-direction: column;
    /* cada produto em uma linha */
    gap: 8px;
    /* espaço entre produtos */
}

.produto-item {
    display: grid;
    grid-template-columns: 1fr repeat(2, auto);
    justify-content: space-between;
    /* texto à esquerda, botão à direita */
    align-items: center;
    /* centraliza verticalmente */
    gap: 10px;
    padding: 5px 10px;
    background: #f0f0f0;
    border-radius: 3px;
}

.produto-item button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: red;
    color: white;
    border: none;
    aspect-ratio: 1;
    padding: 0 3px;
    border-radius: 3px;
    cursor: pointer;
}

.produto-item button:hover {
    opacity: 0.8;
}

#adminButtons {
    display: flex;
    justify-content: end;
    margin-top: 10px;
    gap: 10px;
}

/* CONFIRM DIALOG */

#confirmDialog {
    padding: 20px;
    border-radius: 3px;
    width: 300px;
    text-align: center;
}

#confirmDialog button {
    padding: 5px 12px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

#confirmYes {
    background-color: red;
    color: white;
}

#confirmNo {
    background-color: gray;
    color: white;
}

/* ANIMAÇÕES */

@keyframes top_scroll {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

@keyframes parallax-v {
    0% {
        transform: translateY(30vh);
    }

    100% {
        transform: translateY(-30vh);
    }
}

@keyframes parallax-h {
    0% {
        transform: translateX(-20vw);
    }

    100% {
        transform: translateX(130vw);
    }
}

@keyframes bounce-h {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* CAROUSEL */

#carousel {
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 0px;
    margin: 0px;
    width: 70%;
    aspect-ratio: 16/11;
    background-color: var(--primary-gray-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
    anchor-name: --carousel;
    scroll-snap-type: x mandatory;
    /* clip-path: polygon(3% 0%, 100% 0, 100% 88%, 97% 100%, 0 100%, 0% 12%); */
    -webkit-mask-image: url("img/slidemask.svg");
    mask-image: url("img/slidemask.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
}

.slide {
    aspect-ratio: 16/11;
    scroll-snap-align: start;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

#carousel::scroll-button(right) {
    content: url("img/right.svg");
    color: var(--primary-text-color);
    background-color: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    position: fixed;
    position-anchor: --carousel;
    position-area: right center;
}

#carousel::scroll-button(left) {
    content: url("img/left.svg");
    color: var(--primary-text-color);
    background-color: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    position: fixed;
    position-anchor: --carousel;
    position-area: left center;
}

#carousel::-webkit-scrollbar {
    display: none;
}

/* BANNER */

#mainbanner {
    position: absolute;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    height: var(--full-menu);
    top: 136px;
    background-color: var(--banner-background-color);
    backdrop-filter: blur(10px);
    z-index: 0;
}

#banner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: end;
    align-items: center;
}

.banner-item {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(2, auto);
    color: var(--accent-color);
    height: calc(var(--full-menu) - 10px);
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 800;
    transform: translateX(100vw);
    /* começa à direita */
    transition: transform 1.2s ease;
}

.banner-item-img {
    position: relative;
    justify-self: right;
    justify-items: right;
    align-self: center;
    text-align: right;
    fill: var(--accent-color);
}

.banner-item-img img {
    height: 110px;
}

.banner-item-text {
    justify-self: left;
    align-self: center;
}

@media screen and (max-width: 768px) {
    .mastergrid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 70vh 120dvh auto 140dvh 220px;
    }

    header {
        height: 100px;
    }

    #menubig {
        display: none;
    }

    #menusmall {
        display: flex;
        justify-content: end;
    }

    #menusmall img {
        margin-right: 10px;
    }

    #mainbanner {
        top: 100px;
    }

    #mainbottomlines {
        top: 70vh;
    }

    .banner-item {
        font-size: 1.5rem;
    }

    main {
        display: grid;
        grid-template-columns: 1fr;
        height: 100vh;
    }

    #mainbg video {
        opacity: 0.2;
        object-fit: cover;
        object-position: center;
        left: 50%;
        z-index: -1;
        width: 100vw;
        height: 60vh;
        top: 100px;
        position: relative;
        transform: translateX(-50%);
    }

    div#mainside {
        display: none;
    }

    .about {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        background: var(--secondary-text-color);
        height: 120dvh;
        width: 100%;
        z-index: 5;
        overflow: hidden;
    }

    #catalogtitle {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
        background-image: linear-gradient(90deg,
                rgba(36, 36, 36, 1) 0%,
                rgba(255, 255, 255, 0) 100%);
        font-size: 4rem;
        font-weight: 200;
        text-transform: uppercase;
        padding: 0;
        height: 140px;
    }

    #catalogfilter {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(2, auto);
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin: 20px 0 4px 0;
    }

    #logo {
        display: flex;
        justify-self: end;
        width: 180px;
        padding-right: 10px;
    }

    #contacto {
        background-color: var(--secondary-gray-color);
        opacity: 0.9;
        padding: 0 5%;
        background-image: linear-gradient(0deg, #363636 50%, #303030 50%);
        background-size: 10px 10px;
        background-attachment: fixed;
        height: 140dvh;
    }

    #companyinfo {
        flex-wrap: wrap;
        justify-content: center;
    }

    #contactcontent {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 3rem;
        padding: 0 1rem;
    }

    #contacttitles {
        display: none;
    }

    #contacto h1 {
        color: var(--text-color);
        font-size: 4rem;
        font-weight: 200;
        text-transform: uppercase;
        text-align: center;
    }

    #contactmap {
        display: none;
    }

    #sobre,
    #produtos,
    #contacto {
        scroll-margin-top: 100px;
    }
}