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

}

body {
    background-color: #b5cfea;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 4px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 4px);
    background-size: 48px 48px;
}

.cabecalho {
    display: flex;
    height: 60px;
    background-color: #6BB6E8;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}

.name {
    font-size: 35px;
    text-transform: uppercase;
    font-weight: bolder;
    margin-left: 100px;
}

.oem {
    color: #000;
}

.tech {
    color: #20673a;
}

.descricao {
    text-transform: capitalize;
    position: absolute;
    right: 0;
    margin-right: 100px;
    font-size: 25px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo-link:hover .oem,
.logo-link:hover .tech {
    opacity: 0.85;
}
.home-editorial {
    position: fixed;
    display: block;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    width: 90%;
    padding: 30px;
    background: #6BB6E8;
    border-radius: 20px;
    text-align: center;
    z-index: -1;
    pointer-events: none;
}

.home-editorial h1 {
    font-size: 36px;
    margin-bottom: 5px;
}

.home-editorial h2 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 20px;
}

.home-editorial p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-transform: none;
}

.home-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}

.feature {
    background: rgba(255,255,255,0.35);
    padding: 15px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 15px;
}


.menu {
    display: flex;
    gap: 5px;
    justify-content: center;
}


button,
.btn {
    cursor: pointer;
}

.btn_Menu {
    width: 12vw;
    height: 48px;
    margin-top: 1vh;
    align-items: center;
    font-size: 16px;
    text-transform: capitalize;
    background-color: #88898a;
    font-size: 15px;
    /* azul/cinza claro */
    color: #000;
    font-weight: bold;
    /* texto escuro */
    border: 1px solid #9FBAD5;
    border-radius: 8px;
}

.btn_Menu:hover {
    background-color: #CFE0F2;
    border-color: #6BB6E8;
}

.btn_Menu:active {
    background-color: #1e88e5;
}

.subMenu,
.table,
.mobile {
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn_Sub {
    margin-top: 8px;
    width: 12vw;
    height: 7vh;
    text-align: left;
    padding-left: 18px;
    font-size: 14px;
    text-transform: capitalize;
    background-color: #aaabac;
    font-weight: bold;
}

.btn_Sub:hover {
    background-color: #c6c6c7;

}
.btn_Menu.ativo {
    background-color: #000;
    color: #fff;

}

section {
    width: 100%;
    display: flex;
    justify-content: center;
    /* horizontal */
    align-items: center;
    /* vertical */
}

.formulario legend,
.formularioTable legend {
    margin: 0 auto;
}

.formulario {
    width: 450px;
    height: auto;
    margin: 5rem auto;
    align-items: center;
    background-color: #88898a;
    text-align: center;
    border-radius: 9px;
    border: 2px solid #000;
    padding: 20px;
}

.formularioTable {
    width: 450px;
    height: 450px;
    margin: 5rem auto;
    align-items: center;
    background-color: #88898a;
    text-align: center;
    border-radius: 9px;
    border: 2px solid #000;
    padding: 20px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 8px;
}

.formularioTable::-webkit-scrollbar {
    width: 15px;
}

.formularioTable::-webkit-scrollbar-thumb {
    background-color: #1e88e5;
    border-radius: 6px;
}

.formularioTable::-webkit-scrollbar-track {
    background: #e0e0e0;
}

form legend {
    font-size: 26px;
    font-weight: bolder;
}

select {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    appearance: none;
    /* remove estilo nativo */
    -webkit-appearance: none;
    -moz-appearance: none;
}

form h4,
legend {
    padding: 10px;
    text-transform: capitalize;
}

input[type=text] {
    width: 80%;
    padding: 10px;
}

input[type=submit] {
    background-color: #6BB6E8;
    color: #fff;
    border: none;
}

input[type=reset] {
    background-color: #eee;
    color: #333;
    border: 1px solid #ccc;
}

.btn {
    margin-top: 20px;
    height: 52px;
    width: 140px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-transform: capitalize;
}

.btnLink {
    display: block;
    /* ocupa largura toda */
    width: 80%;
    text-align: center;
    background-color: #1e88e5;
    /* azul técnico */
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 16px;
    margin: 10px auto;
    border-radius: 8px;
    transition: background 0.2s, transform 0.1s;
}

.btnLink:hover {
    background-color: #1565c0;
}

/* feedback de clique */
.btnLink:active {
    transform: scale(0.97);
}

.table {
    height: 400px;
}

.rodape {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: #6BB6E8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 50;
}

.rodape small {
    color: #000;
    font-size: 14px;
    max-width: 90%;
}

.rodape a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.rodape a:hover {
    text-decoration: none;
}

.about-container {
    width: 50%;
    align-items: center;
    margin: 5vh auto 0 auto;
    height: auto;
    display: block;
    font-size: 20px;
    border: 2px solid black;
    padding: 30px;
}
.container {
    width: 100%;
    align-items: center;
}
.about-container h1 {
    text-align: center;
    padding-bottom: 20px;
}

.about-container p {
    text-indent: 30px;
}

@media (max-width: 768px) {
    body {
        width: 100vw;
        height: 100vh;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .cabecalho {
        display: block;
        padding: 20px;
        width: 100vw;
        height: 140px;
        text-align: center;
    }

    .name {
        margin: 0 auto;
        text-align: center;
        border-bottom: 3px solid black;
    }

    .descricao {
        margin: 0 auto;
        width: 90%;
        text-align: center;
        right: 0;
        left: 0;
    }
    .home-editorial {
        display: none;
    }
    .menu {
        margin: 0 auto;
        display: block;
        width: 100%;
        text-align: center;
    }

    .btn_Menu {
        border-radius: 10px;
    }

    .btn_Menu,
    .btn_Sub {
        width: 85%;
        text-align: center;
        font-size: 20px;
    }


    .btn_Sub {
        border-radius: 20px;
        width: 70%;
    }
    .formulario,
    .formularioTable {
        margin-top: 10px;
        width: 95vw;
    }

    .formularioTable {
        height: 250px;
    }

    .rodape {
        display: block;
        justify-items: center;
        bottom: 0;
    }

    .rodape small {
        font-size: 15px;
    }

    .about-container {
        width: 99%;
        margin-top: 10px;
    }

}