@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


/* HEADER */

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
}

.cabecalho {
    color: white;
    background-image: url("../../img/criciuma01.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;

    font-family: "Mulish";
    
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-row-start: 1;
    grid-column-start: 1;
    margin-bottom: 0px;
    border-radius: 0px;
}

main{
    margin-block: 60px;
    display: flex;
    gap: 60px;
}

.trilha-de-navegacao{
    padding-inline: 40px;
    max-width: 100%;
}

.trilha-de-navegacao ol{
    display: flex;

    width: 100%;

    padding-inline: 24px;
    padding-block: 8px;
    border: 1px solid #9bbbdd;
    border-radius: 100px;
    
    background: linear-gradient(135deg, rgba(231, 237, 243, 1) 0%, rgba(226, 241, 255, 1) 100%);
}

.trilha-de-navegacao ol li.active{
    overflow: hidden;
}

.trilha-de-navegacao ol li p{
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.menu-item.active, .menu-item.active:focus-visible {
    background-color: #486E99 ;
}

nav .breadcrumb .active{
    color: #5d5d5d;
}


.box-info{
    padding-inline: 20%;
    padding-top: 10%;
    font-size: 1.5rem;
}


.box-info h1{
    color:white;
    font-family: "Inter";
    font-weight: bolder;
    
    margin: 0px 0 20px;
}


.linha{
    width: 100%;
    margin: 0;
    opacity: 1;
    background-color: #fff;
}

.box-info p{
    font-size: 17px;
    color: white;
    margin: 20px 0;
    position: relative;
    top: 0;
    opacity: 1;
    animation: aparecer 1.5s ease-out;
}

@keyframes aparecer {
    0%{
        top: -50px;
        opacity: 0;
    }
    100%{
        top: 0;
        opacity: 1;
    }
}

/* aba */

.abas{
    display: block;
    margin-block: 30px;
    padding: 0;

    
    border-radius: 15px;
    border-block: 1px solid #9bbbdd;
    overflow: hidden;
}




.aba a:hover, .aba a:focus-visible{
    background: #3e6b9b9a;
    backdrop-filter: blur(2px);
}
.icone-link-externo{
    width: 10px;
    opacity: 0;
    transition: 250ms;
}

a:hover .icone-link-externo, a:focus-visible .icone-link-externo, a:focus .icone-link-externo{
    margin-left: 10px;
    opacity: 1;
}

.icon{
    width: 50px;
    height: 48px;
    margin-top: 10px;
    margin-bottom: 10px;
}


.aba a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    font-size: 1.3rem;
    text-align: center;
    color: white!important;
    text-decoration: none !important;
    outline: none;
    
    border-inline: 1px solid #9bbbdd;
    border:none;
    padding: 10px 0;
    
    width: 100%;
    
    background: #5d87b4d9;
    
    cursor: pointer;
    transition: 250ms;
}

main h2{
    font-weight: 300;
    text-align: center;
    font-size: 3rem;
    color: #5E87B6;
    margin-bottom: 30px;
}

/* FOOTER */

#rodape{
    font-size: 16px;
    font-family: "Open Sans";

    margin: 0;
    width: 100%;
    max-width: none;
}

.contato h2{
    font-size: 3rem;
    font-weight: 800;
    color: #5E87B6;
}

#info{
    display: flex;
    justify-content: space-around;
    align-items: center;
    
    margin-block: 30px;
    padding-inline: 50px;
}


.contato{
    width: 400px;
}

.contato p{
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 300;
    text-overflow: ellipsis;
    overflow: hidden;
}

.endereco a{
    color: rgb(119, 119, 119);
    transition: 250ms;
}
.endereco a:hover{
    text-decoration: none;
    color: rgb(37, 37, 37);
}

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

.logo img{
    width: 130px;
    user-select: none;
}

.autoria p{
    display: flex;
    justify-content: center;
}
.autoria a{
    text-decoration: none;
    color: black;
}

/* MEDIA QUERIES */

@media (max-width: 860px){
    .navegacao{
        justify-content: normal;
    }
    .cabecalho{
        grid-template-columns: 1fr;
    }
    .box-info{
        background: linear-gradient(90deg, rgba(82, 124, 172, 0.90) 0%, rgba(82, 124, 172, 0.67) 47.53%, rgba(82, 124, 172, 0.45) 73%, rgba(82, 124, 172, 0.22) 88.5%, rgba(82, 124, 172, 0.00) 100%);
    }
    .box-info p{
        backdrop-filter: blur(2px);
    }
}
        
@media (max-width: 576px){

    .box-info{
        padding-inline: 10%;
    }

    .rodape{
        gap: 40px;
    }

    #rodape{
        text-align: center;
    }
    .contato h2{
        font-size: 2rem;
        font-weight: 400;
    }
}