/* sugestão 1 */

/* main */

.home {
    background-color: #0A024D;
    padding: 2% 0;
    color: #fafafa;
}

.home-text {
    padding: 1rem;
}

.home .home-text h2 {
    font-weight: 600;
    font-size: 40px;
}

.home .home-text p {
    line-height: 2em;
    padding-right: 8%;
}

.btn-home {
    color: #fafafa;
    background-color: #333391;
    border-color: #333391;
    border: 2px solid #333391;
    padding: 10px 32px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.33333;
    border-radius: 25px;
}

.btn-home:hover {
    background-color: #262674;
    border-color: #262674;
    color: #ffffff;
    cursor: pointer;
}

.form__home {
    display: flex;
}

.home-illustration {
    margin-top: 6%;
    max-height: 400px;
}

/* relatos */

.ns__form-control {
    outline: none;
    background-color: #fff;
    border: none;
    border-radius: .5rem;
    width: 100%;
    padding: .75rem .75rem;
    box-shadow: 0 4px 10px -2px rgba(10, 2, 77, .1);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.relatos {
    background-color: #fafafa;
}

.relatos__container {
    overflow: hidden;
}

.relato__miniatura {
    display: block;
    color: #fafafa;
    border-radius: 1rem;
    min-height: 16rem;
    line-height: 1.5em;
    background: rgba(10, 2, 77) center / cover no-repeat;
    box-shadow: 0 4px 5px 0px rgba(10, 2, 77, .5);
    transition: box-shadow .3s ease;
    transition: height .3s linear;
}

/* .relato__miniatura:hover {
    box-shadow: 0 0 5px 4px rgba(10, 2, 77, .3);
    cursor: pointer;
} */

.relato__miniatura--conteudo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 16rem;
    padding: 15px;
    border-radius: 1rem;
    background-color: rgba(10, 2, 77, .9);
}

.relato__miniatura--titulo {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.relato__miniatura--desc {
    margin: 0.1em 0 0 0;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre-line;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.relato__miniatura--autor {
    margin: 0.1rem 0 1rem 0;
    font-size: 14px;
    text-align: right;
}

.relato__miniatura a {
    color: inherit;
    text-decoration: none;
    text-align: right;
}

.modal-content {
    border: none;
    border-radius: 1rem;
}

.relato__modal {
    display: flex;
    align-items: stretch;
}

.relato__modal--fechar {
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.relato__modal--foto {
    width: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem 0 0 1rem;
}

.relato__modal--desc {
    padding: 2rem 2rem;
    width: 100%;
    border-radius: 0 1rem 1rem 0;
    box-shadow: -4px 0 10px 2px rgba(0, 0, 0, .2);
}

.relato__modal--desc p {
    white-space: pre-line;
}

@media (max-width: 768px) {
    .relato__modal .relato__modal--foto {
        display: none;
    }
}

/* monitoramento */

.monitoreNossoDesempenho h2 {
    color: #666666;
}

.monitoreNossoDesempenho p {
    font-size: 18px;
    line-height: 1.8em;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #afafaf;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}