
/* Carrossel --------------------------------------------------------------------------------------------------- */

BODY, HTML {
    overflow: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: default;
}

A,
A:hover,
A:active,
A:link,
A:visited {
    color: inherit;
    text-decoration: none;
}

.slideshow-container {
    position: relative;
    height: 100%;
}

.mySlides {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    opacity: 0;
    transition: opacity 2s;
}

.mySlides IMG {
    width: auto;
    height: 100%;
}

/* Logotipo e Unidades ----------------------------------------------------------------------------------------- */

.container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
}

.inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 512px;
    height: auto;
    max-height: 410px;
    margin: 10px;
    padding: 30px 0;
    border-radius: 20px;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.7);
    background-color: rgba(255, 255, 255, 0.7);
}

.logo {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo IMG {
    width: 100%;
    min-width: 216px;
    height: auto;
    margin: 0 35px;
    padding: 0;
}

.texto {
    margin: 45px 20px;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
}

.unidades {
    display: flex;
    justify-content: space-between;
    width: auto;
}

.unidades DIV {
    width: 11rem;
    margin: 0 10px;
    padding: 10px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    color: white;
    background-color: rgba(0, 0, 0, 1);
    cursor: pointer;
    transition: background-color 0.5s;
}

.resolucao {
    z-index: 10000;
    position: fixed;
    display: none;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 15px 15px;
    font-size: 10px;
    line-height: 0;
    color: black;
    background: rgba(255, 0, 0, 0.5);
    cursor: pointer;
}

/* Media Horizontal */

@media (max-width: 582px) {
    .unidades DIV {
        padding: 10px !important;
    }
}

@media (max-width: 450px) {
    .container {
        margin-top: 5px;
    }

    .inner {
        width: 95%;
        margin-top: 7px;
        padding: 30px 10px;
    }

    .unidades {
        flex-direction: column;
        width: auto;
        align-items: center;
    }

    .unidades DIV {
        margin: 10px !important;
        padding: 10px 10px !important;
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    .texto {
        margin: 35px 20px 40px 20px;
        text-align: center;
    }
}

/* Media Vertical */

@media (max-height: 779px) {
    .container {
        align-items: start;
    }
}

@media (max-height: 678px) {
    .inner {
        margin: 0;
        padding: 10px 0;
    }

    .logo IMG {
        max-width: 300px !important;
    }

    .texto {
        margin: 15px 20px;
        font-size: 20px;
    }

    .unidades DIV {
        width: 9rem;
        margin: 0 10px;
        padding: 10px 30px;
    }
}

@media (max-height: 300px) {
    .container {
        margin-top: 10px;
        align-items: start;
    }
}


