/* FONTE GERAL E TÍTULOS */
h1, h2, h3, h4 {
    font-family: "Quicksand", sans-serif, Arial, Helvetica Neue, Helvetica;
    color: indianred;
    font-weight: 700;
    font-style: normal;
    font-optical-sizing: auto;
}

/* ESTILOS PARA LINKS */
a:link,
a:visited {
    color: #9e0b0f;
    text-decoration: none;
}

a:hover {
    color: #9e0b0f;
    text-decoration: underline;
}

a:active {
    color: #9e0b0f;
    text-decoration: none;
}

h2.titulo {
    text-align: center;
}

/* ESTILO GERAL DO BODY */
body {
    background-color: yellow;
    margin: 0;
    padding: 0;

    display: flex;
}

/* LOGO HOME */
.logo-home {
    z-index: 11;
    position: absolute;
    top: -140px;
    left: 60px;
    width: 140px;
    height: 140px;
    transform: translateX(-50%);
    display: block;
    background-image: url('../images/logos/logo-clac.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.logo-home:hover {
    background-image: url('../images/logos/logo-clac.png');
    cursor: pointer;
}

/* CAIXA SUPERIOR */
.box {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 130px;
    transform: translateX(-50%);
    display: block;
    background-color: #9e0b0f;
}

/* TEXTO PRINCIPAL */
@media (min-width: 1281px) and (max-width: 1920px) {
    .texto {
        z-index: 1;
        position: absolute;
        top: 200px;
        left: 50%;
        height: 100vh;
        width: 60%;
        transform: translateX(-50%);
        color: #9e0b0f;
        text-align: justify;
        font-size: 12px;
        line-height: 14px;
    }	
}

@media (min-width: 801px) and (max-width: 1280px) {
    .texto {
        position: relative;
        top: 200px;
        left: 0;
        width: 80%;
        margin: 0 auto;
        font-size: 14px;
        line-height: 16px;
        text-align: justify;
    }
}

@media (min-width: 340px) and (max-width: 800px) {
    .texto {
        position: relative;
        top: 200px;
        left: 0;
        width: 90%;
        margin: 0 auto;
        font-size: 16px;
        line-height: 18px;
        text-align: justify;
    }
}

/* BOTÃO VOLTAR HOME */
.voltar-home {	
	
	left: 50%;
    transform: translateX(-50%);
	
    position: absolute;
    text-align: center;
    color: #9e0b0f;
	}

/* VERSÃO DO DOCUMENTO */
.versao {
    font-family: "Quicksand", sans-serif, Arial, Helvetica Neue, Helvetica;
    color: #9e0b0f;
    text-align: right;
    font-size: 10px;	
	}

