@charset "UTF-8";

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: justify;
    line-height: 1.5em;
    min-width: 320px;
    max-width: 980px;
    margin: auto;
    margin-bottom: 20px;
}

footer {
    text-align: center;
}

section {
    margin-top: 90px;
}

hr {
    border: none;
    background-color: #dcdcdc;
    height: 1px;
}

h1 {
    font-weight: 600;
}

h2 {
    margin: 40px 0 0 0;
    font-weight: 600;
}

h2 a:hover {
    text-decoration: none;
}

ul {
    display:inline-block;
    vertical-align: top;
    margin-right: 20px;
    padding-inline-start: 20px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color:#5c5cf1;
}

div.screenshot-legenda {
    position: relative;
    border: 8px solid white;
    box-shadow: 1px 1px 4px black;
}

.setas {
    background-color: rgba(0,0,0,.2);
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
    width: 40px;
    height: 60px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    display: inline-block;
    border-radius: 25%;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

/*
.setas:hover {
    background-color: #777;
}*/

.seta-direita {
    background-image: url("./images/right-arrow.png");
    right: 1%;
}

.seta-esquerda {
    background-image: url("./images/left-arrow.png");
    left: 1%;
}

.gh-foto {
    display: block;
    margin: auto;
}

.screenshot {
    width: 100%;
    height: 100%;
}

.icone {
    float: right;
    margin: -30px 0 0 20px;
}

.fade {
    animation-name: fade;
    animation-duration: 1.3s;
}

@keyframes fade {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}

.indicador {
    cursor: pointer;
    height: 15px;
    width: 30px;
    background-color: #bbb;
    border-radius: 25%;
    display: inline-block;
    margin-right: 20px;
    transition: background-color 0.5s ease;
}

.ativo, .indicador:hover {
    background-color: #777;
}

.menu-indicadores {
    margin-top: 10px;
    text-align: center;
}

.textoSlide {
    color: #fff;
    padding: 5px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(0,0,0,.4);
    font-weight: bold;
}

.slide {
    border: 1px solid gray;
}