/* CSS files add styling rules to your content */

:root{
    --principal: #99bed1;
    --principal-transparente: #292925;
    --texto: #192C46;
}

/*:root {*/
/*    --principal: #FF8000;*/
/*    --principal-transparente: #BF3900;*/
/*    --texto: #192C46;*/
/*}*/

html, body {
    margin: 0;
    padding: 0;
    background-color: #F5F6FF;
    color: var(--texto);
}

body {
    /*margin-left: 80px;*/
    padding-bottom: 100px;
}

body ::selection {
    color: #002333;
    background: var(--principal-transparente);
}

* {
    box-sizing: border-box;
}

.pagina img,
.texto-noticia img{
    display: inline-block;
}

#goUrl {
    display: none;
}

.container {
    margin: 0 auto;
    width: 90%;
}

a, a:hover {
    text-decoration: none;
}

a:hover {
    color: var(--principal);
}

#logo {
    width: 40px;
    height: 40px;
    animation: pulse 10s infinite;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.2s;
    image-rendering: pixelated;
}

#logo:hover {
    animation: heartBeat;
    animation-duration: 1s;
    background-image: url('/assets/img/logo_2.png');
}

#footer {
    font-size: 13px;
}

@media only screen and (max-width: 600px) {
    .desktop {
        display: none !important;
    }
}

@media only screen and (min-width: 601px) and (max-width: 991px) {
    .container {
        width: 600px;
    }
    .container-contraido {
        width: 600px;
    }
    .desktop {
        display: none !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .container {
        width: 850px;
    }
    .container-contraido {
        width: 800px;
    }
    .no-desktop {
        display: none !important;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        width: 1100px;
    }
    .container-contraido {
        width: 1000px;
    }
    .no-desktop {
        display: none !important;
    }
}

main ::-webkit-scrollbar {
    width: 10px;
    height: 0px;
    box-shadow: -1px 0 transparent;
}

main ::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 0 0 1px transparent;
    border-radius: 7px;
}

main .scroller {
    scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.grid-invert {
    grid-auto-flow: dense;
}

.icone {
    font-size: 20px;
}

.status {
    border: 3px solid white;
    background-color: #00D936;
    width: 20px;
    height: 20px;
    border-radius: 20px;
}

.dot {
    border: 2px solid white;
    background-color: #00D936;
    width: 15px;
    height: 15px;
    border-radius: 15px;
}

.titulo {
    font-size: 1.6em;
}

.inicio .titulo p {
    display: inline-block;
}

.paginacao {
    margin-top: 6px;
    float: right;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    font-size: larger;
}

.paginacao i {
    cursor: pointer;
}

.paginacao i:hover {
    color: var(--principal);
    /* animation: shakeX;
    animation-duration: 1s; */
}

.paginacao span {
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    width: 50px;
}

.paginacao span:hover:not(.pag-ativ) {
    font-weight: 600;
}

.paginacao .pag-ativ {
    font-weight: 800;
}

.contorno {
    filter: drop-shadow(2px 0 #FFFFFF) drop-shadow(-2px 0 #FFFFFF) drop-shadow(0 2px #FFFFFF) drop-shadow(0 -2px #FFFFFF) drop-shadow(0 2px rgba(0, 0, 0, 0.1));
}

/* PADRÃO DE CARDS COM HOVER LARANJA */

.card {
    /* alterar altura largura */
    min-width: 200px;
    max-width: 200px;
    height: 300px;
    display: inline-grid;
    grid-gap: 10px;
}

.card * {
    transition: all 0.2s ease;
    cursor: pointer !important;
}

.card:hover>.infos p, .card:hover>.infos p:nth-child(3) {
    color: var(--principal);
}

.card .imagem {
    border-radius: 10px;
    cursor: pointer;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.card .imagem .add {
    display: grid;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: var(--principal-transparente);
    align-content: center;
    box-sizing: border-box;
    padding-top: 100px;
}

.card .imagem .add {
    text-align: center;
    color: white;
    font-size: 1.1em;
    opacity: 0;
}

.card .imagem .add div {
    align-self: center;
}

.card .imagem .add div p {
    margin: 0;
}

.card:hover>.imagem .add {
    /*display: grid;*/
    padding-top: 0;
    opacity: 1;
}

.card .infos p {
    margin: 2px 0;
    font-weight: 500;
    cursor: default;
}

.card .infos p:first-child {
    font-weight: 800;
    font-size: 13px;
}

.card .infos p:nth-child(2) {
    font-weight: 600;
    font-size: 1em;
    color: #9DA6B5;
}

.card .infos p i {
    margin-right: 5px;
}

/* BARRA DE CARREGAMENTO */

.progress-line, .progress-line:before {
    height: 10px;
    width: 100%;
    margin: 0;
}

.progress-line {
    background-color: #fe9c0038;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
}

.progress-line:before {
    background-color: var(--principal);
    content: '';
    -webkit-animation: running-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation: running-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@-webkit-keyframes running-progress {
    0% {
        margin-left: 0px;
        margin-right: 100%;
    }
    50% {
        margin-left: 25%;
        margin-right: 0%;
    }
    100% {
        margin-left: 100%;
        margin-right: 0;
    }
}

@keyframes running-progress {
    0% {
        margin-left: 0px;
        margin-right: 100%;
    }
    50% {
        margin-left: 25%;
        margin-right: 0%;
    }
    100% {
        margin-left: 100%;
        margin-right: 0;
    }
}

.base {
    background-color: white;
    border-radius: 5px;
    padding: 10px 20px;
}

.mini-card {
    background-color: var(--principal);
    color: white;
    border-radius: 5px;
    padding: 7px 25px;
    margin-right: 10px;
    text-transform: uppercase;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #c1c1c185;
    z-index: 999;
    opacity: 0;
    /* -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in; */
    pointer-events: none;
    overflow-y: auto;
}

.modal:target {
    opacity: 1;
    pointer-events: auto;
}

.modal>div {
    width: 500px;
    min-height: 100px;
    position: relative;
    margin: 10vh auto;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 0px 20px 6px #d6d7ef91;
    padding: 20px;
}

.modal h3, .modal h5, .modal span {
    font-size: 16px;
    margin: 0;
}

.modal h5 {
    font-weight: 500;
}

.modal .topo {
    text-align: center;
}

.modal .botaoFechar {
    float: right;
    width: 20px;
    height: 20px;
    background-color: #fe0000;
    border-radius: 5px;
    color: white;
    text-align: center;
    font-weight: 800;
}

.modal form {
    margin: 15px 0;
}

.modal label {
    display: block;
    margin: 10px 0 5px 0;
}

.fechar {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}

.fechar:hover {
    background: #00d9ff;
}

button, .button {
    padding: 7px 14px;
    background-color: var(--principal);
    color: white;
    border: 1px solid var(--principal);
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"] {
    margin-top: 15px;
    width: 100%;
}

.input {
    display: block;
    padding: 10px 20px;
    /* background-color: var(--principal); */
    /* color: white; */
    border: 1px solid #8080804a;
    border-radius: 5px;
    width: 100%;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
}

.input:focus {
    border: 1px solid var(--principal);
    outline: none;
    color: var(--principal);
    font-weight: bolder;
}

.flat {
    background-color: white !important;
    color: var(--principal) !important;
}

#notificacao {
    box-shadow: 5px 0px 20px 0px #c7c7c7;
    min-width: 200px;
    max-width: 450px;
    min-height: 60px;
    border-radius: 5px;
    position: fixed;
    top: -1000px;
    right: -1000px;
    padding: 20px;
    pointer-events: none;
    z-index: 9999;
    text-align: center;
}

.notifica {
    top: 90px !important;
    right: 5vw !important;
    opacity: 1;
    animation: hide 0.5s 4s forwards;
    pointer-events: all;
}

.erro {
    background-color: #B00020;
    border-color: #CA646F;
    color: white;
}

.sucesso {
    background-color: #44B15E;
    border-color: #7FEC99;
    color: white;
}

.alerta {
    background-color: #FFDE03;
    border-color: #f5a300;
    color: rgba(0, 0, 0, 0.8);
}

.neutro {
    background-color: gray;
    border-color: rgb(70, 70, 70);
    color: white;
}

.unfollow {
    padding: 10px 14px;
    text-align: center;
    background-color: white !important;
    color: var(--principal) !important;
    border: 1px solid var(--principal);
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 400;
}

.unfollow:hover {
    font-weight: 800;
    color: var(--principal) !important;
}

.follow {
    padding: 10px 14px;
    text-align: center;
    background-color: var(--principal);
    color: white !important;
    border: 1px solid var(--principal);
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 400;
}

.follow:hover {
    font-weight: 800;
    color: white;
}

.separador {
    display: inline-block;
    align-self: center;
    height: 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.3);
}

hr {
    margin: 10px 0 5px;
    background-color: rgb(0 0 0 / 5%);
    align-self: center;
}

@keyframes hide {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

#embreve {
    position: absolute;
    backdrop-filter: blur(5px);
    border: 1px solid transparent;
    background-image: linear-gradient(to left, rgb(255 255 255 / 25%), rgb(255 255 255 / 10%));
    display: flex;
    flex-wrap: nowrap;
    place-content: center;
    align-items: center;
    font-weight: 800;
    font-size: x-large;
    margin-top: -277px;
    margin-left: -5px;
    width: 40vw;
    height: 40vh;
}

.fab, .fab2 {
    display: none;
}

@media only screen and(min-width: 990px) and(max-width: 1200px) {
    #embreve {
        width: 40vw;
        height: 50vh;
    }
}

@media only screen and (max-width: 990px) {
    #embreve {
        margin-top: -517px;
        margin-left: -20px;
        width: 282px;
        height: 517px;
    }
}

@media only screen and (max-width: 500px) {
    #embreve {
        margin-top: -500px;
        margin-left: -5px;
        width: 92vw;
        height: 500px;
    }
    .fab {
        display: block;
        position: fixed;
        bottom: 160px;
        right: 10px;
        z-index: 999;
    }
    .fab button {
        cursor: pointer;
        width: 48px;
        height: 48px;
        border-radius: 30px;
        background-color: #FFBA46;
        border: none;
        box-shadow: 0 1px 5px rgba(0, 0, 0, .4);
        font-size: 24px;
        color: white;
        -webkit-transition: .2s ease-out;
        -moz-transition: .2s ease-out;
        transition: .2s ease-out;
    }
    .fab button.main {
        position: absolute;
        width: 60px;
        height: 60px;
        border-radius: 30px;
        background-color: var(--principal);
        right: 0;
        bottom: 0;
        z-index: 20;
    }
    .fab ul {
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 0;
        padding-right: 5px;
        margin: 0;
        list-style: none;
        z-index: 10;
        -webkit-transition: .2s ease-out;
        -moz-transition: .2s ease-out;
        transition: .2s ease-out;
    }
    .fab ul li {
        display: flex;
        justify-content: flex-start;
        position: relative;
        margin-bottom: -10%;
        opacity: 0;
        -webkit-transition: .3s ease-out;
        -moz-transition: .3s ease-out;
        transition: .3s ease-out;
    }
    .fab ul li label {
        margin-right: 10px;
        white-space: nowrap;
        display: block;
        margin-top: 10px;
        padding: 5px 8px;
        background-color: white;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
        border-radius: 3px;
        height: 18px;
        font-size: 16px;
        pointer-events: none;
        opacity: 0;
        -webkit-transition: .2s ease-out;
        -moz-transition: .2s ease-out;
        transition: .2s ease-out;
    }
    .fab button.main:active, .fab button.main:focus {
        outline: none;
        background-color: var(--principal);
        box-shadow: 0 3px 8px rgba(0, 0, 0, .5);
    }
    .fab button.main:active+ul, .fab button.main:focus+ul {
        bottom: 70px;
    }
    .fab button.main:active+ul li, .fab button.main:focus+ul li {
        margin-bottom: 10px;
        opacity: 1;
    }
    .fab button.main:active+ul li:hover label, .fab button.main:focus+ul li:hover label {
        opacity: 1;
    }
    .fab2 {
        display: block;
        position: fixed;
        bottom: 90px;
        right: 10px;
        z-index: 999;
    }
    .fab2 button {
        cursor: pointer;
        width: 48px;
        height: 48px;
        border-radius: 30px;
        background-color: #FFBA46;
        border: none;
        box-shadow: 0 1px 5px rgba(0, 0, 0, .4);
        font-size: 24px;
        color: white;
        -webkit-transition: .2s ease-out;
        -moz-transition: .2s ease-out;
        transition: .2s ease-out;
    }
    .fab2 button.main2 {
        position: absolute;
        width: 60px;
        height: 60px;
        border-radius: 30px;
        background-color: var(--principal);
        right: 0;
        bottom: 0;
        z-index: 20;
    }
}

.fa-share-alt:hover {
    color: white;
}

.checkcloud {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0 0 0;
}