@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

body {
    height: 100vh;
    background-color: #eee;
    overflow: hidden;
}

.industria {
    background-color: #ff7300;
}

.distribuidora {
    background-color: #3377e5;
}

:root {
    font-family: 'helveticamedium';
    font-size: 18px;
}

::selection {
    background: #3377e5;
}

a {cursor: pointer;}

nav#menu {
    position: relative;
    top: 0;
    width: 100%;
    height: 12vh;
    box-sizing: border-box;
    display: flex;
    justify-content: stretch;
    z-index: 9;
    transition: .4s;
    overflow: hidden;
}

nav#menu div {
    width: 100%;
    height: 100%;
    background-color: #eee !important;
    display: flex;
    justify-content: center;
}

nav#menu div:first-child {
    border-right: 1px solid #ccc;
}

nav#menu img {
    width: 90px;
}

nav#menu span {
    font-size: 14px;
    color: #3377e5;
    text-transform: capitalize;
}

main#setores {
    width: 100%;
    height: 88vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: row-reverse;
}

main#setores section {
    width: 50%;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    cursor: pointer;
}

main#setores section:hover a {
    color: #fff;
    margin-top: -20px !important;
    transition: .3s;
}

main#setores section a {
    color: #eee;
    text-transform: uppercase;
    opacity: 0;
    transition: .3s;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}

div.tooltip {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 10%;
    background-color: #eee;
    display: flex;
    align-items: center;
    z-index: 9;
    transition: 2s;
}

div.tooltip span {
    font-size: 14px;
    color: #555;
}

div.tooltip span span {
    color: #000;
}

div.tooltip a {
    color: #3377e5;
    font-size: 14px;
    text-decoration: underline;
    margin-right: 55px;
    margin-left: 30px;
    transition: .2s
}

div.tooltip a:hover {
    color: #6196ea;
    transition: .2s
}

div.tooltip a:active {
    color: #ff7300 !important;
    transition: .2s;
}

div#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    z-index: 9999;
}

div#preloader main {
    display: flex;
    align-items: center;
    vertical-align: middle;
}

div#preloader img {
    width: 30px;
    height: 6px;
}

div#preloader p {
    color: #777;
    font-size: .95rem;
    margin-left: 10px;
}

div#preloader p span {
    color: #000;
}