@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

@font-face {
    font-family: 'Blastimo';
    src: url('/font/Blastimo.ttf') format('truetype');
  }


:root{
    --prefprimary:#329AC6;
    --prefmenu:#25779B;
    --border-radius: 15px;
    --prefsecondary:rgb(45, 45, 45) ;
}

* {
    padding:0;
    margin:0;
    vertical-align:baseline;
    list-style:none;
    border:0;
    font-family: 'Montserrat', sans-serif;
}


a[role="link"]:focus {
    outline: 2px solid black;
    border-radius: 2px;
  }



.font-blastimo{
    font-family: 'Blastimo', sans-serif;
}

.grid-main{
    padding: 0% 17%;
}

@media (max-width:1025px){
    .grid-main{
        padding: 0% 10%;
    }
}

@media (max-width:800px){
    .grid-main{
        padding: 0% 5%;
    }
}

.p-navbar{
    padding: 0% 12%;
}

@media (max-width:1026px){
    .p-navbar{
        padding: 0% 2%;
    }
}

@media (max-width:800px){
    .p-navbar{
        padding: 0% 5%;
    }
}

.navbar-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85em;
    /*padding: 0% 8%;*/

    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 1000;
}


.navbar-main ul{
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-main li{
    list-style: none;
    position: relative;
}

.navbar-main li a{
    text-decoration: none !important;
    padding: 0.5rem 1rem;
    display: block;
    color:var(--prefprimary) ;
    text-decoration: none;
    line-height: 1em;
}
.navbar-main .item::after{
    content:'';
    position: relative;
    display: flex;
    bottom: 0px;
    width: 0%;
    height: 1.65px;
    transition: 0.3s;
}

.navbar-main .item:hover::after{
    content:'';
    position: relative;
    display: flex;
    bottom: 0px;
    width: 100%;
    height: 1.65px;
    background-color: var(--prefprimary);

}

.navbar-main li::after:hover{
    background-color:var(--prefprimary) ;
}

.navbar-main li a:hover{
    cursor: pointer;
}

.t-eixos{
    margin-top: 0.8em;
    padding: 0.5rem 1rem;
    font-weight: 600;
    display: block;
    color:var(--prefprimary) ;
    text-decoration: none;
    line-height: 1em;
}

.a-eixos::before{
    content: "•";
    padding-left: 0.2em;
    padding-right: 0.1em;
}

.dropdown-toggle::before{
        content:'';
        position: relative;
        display: flex;
        bottom: -24px;
        width: 0%;
        height: 1.65px;
        transition: 0.3s;
}

.dropdown-toggle:hover::before{
    content:'';
    position: relative;
    bottom: -24px;
    display: flex;
    width: 100%;
    height: 1px !important;
    background-color: var(--prefprimary);

}


.toggle-button{
    position: absolute;
    right: 1rem;
    top: 22px;
    display: none ;
    width: 30px;
    text-decoration: none;
    color: black;
}

.dropdown-menu a{
    color: var(--prefprimary) !important;
    padding: 0.5em;
    font-weight: normal !important;
    text-align: left !important;
    border: 1px solid rgb(247, 247, 247);
    min-width: 200px;
}

.dropdown-menu a:hover{
 background-color: #f1f1f1;
}

/*

.dropdown-content{
    display: none !important;
    background-color: white;
    border: 1px solid rgb(240, 240, 240);
    box-shadow: rgba(99, 99, 99, 0.089) 0px 2px 8px 0px;
    z-index: 100 !important;
}

.dropdown-content li a{
    color: gray;
    padding: 0.5em;
    font-weight: 600;
    text-align: left !important;
    border: 1px solid rgb(247, 247, 247);
    min-width: 200px;
}

.dropdown-content.active{
    display: block !important;
    position: absolute;
    top: 25px;
    margin: auto;
}

*/

.grid-logos{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    justify-items: stretch;
}

.footer-logo{
    height: 90px;
}

@media (max-width:800px) {
    .grid-logos{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        justify-items: center;
        gap: 40px;
    }

    .footer-logo{
        height: 75px;
    }

}

.grid-footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    color: white !important;
    gap: 30px;
    font-size: 0.8rem;
    padding: 3rem 0rem;
    width: 100%;
}

@media (max-width:800px) {
    .grid-footer{
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        color: white !important;
        gap: 30px;
        font-size: 0.8rem;
        padding: 3rem 0rem;
    }

}


.grid-footer div{
    display: flex;
    flex-direction: column;
}

.grid-footer a{
    color: white;
    font-weight: normal;
    padding-top: 0.2rem;
}

.grid-footer .material-icons{
    font-size: 1em;
    margin-top: 1em;
}

.grid-footer strong{
    margin-bottom: 0.2rem;
}

.footer-extra a{
    color: white;
    font-weight: normal;
    font-size: 0.8em;
}

.footer-end{
    display: flex;
    flex-direction: none !important;
}

.footer-end strong{
    font-size: 0.8rem !important;
}


.img-logo{
    /*
    object-fit: cover;
    -o-object-fit: cover; */
    margin: auto 0;
    padding: 1em;
}

.dropdown-menu{
    color: var(--prefmenu) !important;
}

@media (max-width:800px) {
    .toggle-button{
     display: block;
    }

    .navbar-main{
        flex-direction: column;
        align-items: flex-start;
        padding: 0% 1%;
    }

    .navbar-content{
        display: none !important;
        flex-direction: column;
        width: 100%;
    }

    .navbar-content.active{
        display: flex !important;
    }

    .navbar-main li{
        width: 100% !important;
        text-align: center;
        padding: .5rem 1rem;
    }

    .dropdown-content li a{
        padding: 0.3em;
        font-weight: 500;
        text-align: left !important;
    }

    .dropdown-content.active{
        display: block !important;
        margin: auto;
        position:relative;
        display: flex;
        top: 0px;
        background: white;
        border: none;
        box-shadow: none;

    }
    .dropdown-content li a{
        border: none;
        margin: none;
    }
    .dropdown-content li {
        border-bottom:  1px  solid rgb(226, 226, 226);

    }
}

/*desktop P*/
@media (max-width: 1400px) {

    .header-mobile h5{
        display: block;
        padding: 0.5em;
        font-size: 2em;
        z-index: 2;
    }

    .header-open{
        margin: 4rem 0rem;
    }

    .header-open h1{
        font-size: 0.8em !important;
    }


    .blastimo-title{
        margin: 2rem 0rem !important;
        font-size: 4em !important;
        line-height: 3.5rem !important;
    }

    .header-open p{
        font-size: 1em !important;
        margin-bottom: 0.5rem !important;
    }


}


/*mobile*/
@media (max-width: 750px) {

    .grid-header{
        grid-template-rows: 1fr;
        grid-template-columns:1fr !important;
        gap: 0px !important;
        height: fit-content !important;
        margin-bottom: 4rem;
    }

    .header-mobile{
        width: 100% !important;
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
        display: flex;
        word-break: break-all;

        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .header-img-mobile{
        width: 200px;
        height: 250px;
        border-radius: var(--border-radius);
        display: flex;
        margin-right: 1rem;
        position: relative;

        background-repeat: no-repeat;
        background-size: auto 100%;
        background-position: center;
        background-size: cover;
    }

    .header-img-mobile::after{
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0px;
        height: 50%;
        width: 100%;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        background: rgb(5,5,34);
        background: -moz-linear-gradient(0deg, rgba(5,5,34,0.6847689759497548) 35%, rgba(0,0,0,0) 100%);
        background: -webkit-linear-gradient(0deg, rgba(5,5,34,0.6847689759497548) 35%, rgba(0,0,0,0) 100%);
        background: linear-gradient(0deg, rgba(5,5,34,0.6847689759497548) 35%, rgba(0,0,0,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#050522",endColorstr="#000000",GradientType=1);
    }

    .header-mobile a{
        color: white;
        text-decoration: none;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: flex-end;
    }

    .header-mobile h5{
        display: block;
        padding: 0.5em;
        font-size: 1.2em;
        z-index: 2;
    }

    .header-open{
        margin: 4rem 0rem;
    }

    .header-open h1{
        font-size: 0.7em !important;
    }


    .blastimo-title{
        margin: 1rem 0rem !important;
        font-size: 3em !important;
        line-height: 2.5rem !important;
    }

    .header-open p{
        font-size: 1em !important;
        margin-bottom: 0.5rem !important;
    }


}

.grid-header{
    display: grid;
    grid-template-columns: 40% 1fr;
    height: calc(100vh - 50px);
    align-items: center;
    padding-bottom: 1.5rem;
}


.grid-header-imgs{
    display: flex;
    gap: 15px;
    height: 70%;
    justify-content: flex-end;
}

.header-img{
    object-fit: cover;
    width: 16.5%;
    height: 100%;
    border-radius: var(--border-radius);
    transition:0.3s;
    position: relative;

    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
}

.header-img::after{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 50%;
    width: 100%;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    background: rgb(5,5,34);
    background: -moz-linear-gradient(0deg, rgba(5,5,34,0.6847689759497548) 35%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(5,5,34,0.6847689759497548) 35%, rgba(0,0,0,0) 100%);
    background: linear-gradient(0deg, rgba(5,5,34,0.6847689759497548) 35%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#050522",endColorstr="#000000",GradientType=1);
}

.header-text{
    position: absolute;
    bottom: 30px;
    left: 10px;
    font-weight: 500;
    color: white;
    z-index: 3;

    transform: scale(0);
    opacity: 0%;
    transition: 0.25s;
    transition-timing-function: ease-in;
    transform-origin: bottom left;
}

.active .header-text{
    opacity: 100%;
    transform: scale(1);
    transition: 0.25s;
}

.header-title{
    position: absolute;
    bottom: 30px;
    left: 2.2rem;
    font-weight: 700;
    color: white;
    z-index: 3;
    font-size: 1.5rem;
    transform-origin: bottom left;
    transform: rotate(-90deg);
    opacity: 100%;
    transition: 0.2s;
}

.active .header-title{
    opacity: 0%;
    transition: 0.2s;
}

.header-text h5{
    font-size: 1.5rem;
}

.header-text p{
    font-size: 1rem;
}

.grid-header-imgs .active{
    width: 50.5%;
    transition:0.3s;

}

.header-open{
    color: var(--prefsecondary);
}

.header-open h1{
    font-size: 0.9em ;
    font-weight: 700;
    text-transform: uppercase;
}


.blastimo-title{
    font-family: 'Blastimo';
    margin: 2rem 0rem;
    font-size: 4em ;
    font-weight: 400;
    line-height: 4rem;
}

.header-open p{
    font-size: 1.1em ;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 4rem;
}

.show-desktop{
    display: flex;
}

.hide-desktop{
    display: none;
}

@media (max-width:750px) {
    .show-desktop{
        display: none;
    }

    .hide-desktop{
        display: flex;
    }
}

.title-categories{
    color: var(--prefsecondary)!important;
    font-size: 1.3em!important;
    font-weight: 700!important;
    margin-bottom: 1.1em;
    margin-left: 0;
    position: relative;
    text-decoration: none!important;
}

.title-categories::after{
    border-bottom: 2.8px solid var(--prefsecondary);
    bottom: -0.4em;
    content: "";
    left: 0;
    position: absolute;
    width: 35px;
}


@media (min-width:800px) {
    .grid-news{
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
        grid-row-start: 2;
        align-content: center;
        margin:3rem 0rem;
    }

    .grid-news li:nth-child(n+1):nth-child(-n+2){
        grid-column: span 3;
        margin-bottom: 2em;
    }

    .grid-news li:nth-child(n+3):nth-child(-n+6){
        grid-column: span 2;
    }
}

@media (max-width:800px) {

    .grid-news{
        display: flex;
        flex-direction: column;
        gap: 2em;
        margin-top: 3rem;
    }

    .grid-news li{
        display: flex;

    }
}


.grid-news h3{
    font-size: 1.1em;
    margin: 0.5em 0em;
}

.grid-news p{
    font-size: 0.9em;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
            line-clamp: 4;
    -webkit-box-orient: vertical;
}

.grid-news a{
    text-decoration: none;
    color: black;
    position: relative;
}

.grid-news span{
    position: absolute;
    left: 10px;
    margin-top: 0.5em;
}

.news-img{
    object-fit: cover;
    height: 200px;
    width: 100%;
    border-radius: var(--border-radius);
}

.text-white{
    color: white;
}

/*desktop*/
@media (min-width: 750px) {
    .grid-visit{
        display: grid;
        grid-template-columns: repeat(7,1fr);
        gap: 8%;
        margin: 10rem 0rem;
        align-items: center;
    }

    .grid-visit :nth-child(1){
        grid-column: span 3;
    }

    .grid-visit :nth-child(2){
        grid-column: span 4;
    }
}

/*mobile*/
@media (max-width: 750px) {
    .grid-visit{
        display: grid;
        /*gap: 2em;*/
        grid-template-rows: 1fr 1fr;
        margin: 5rem 0rem;
        align-items: center;
    }

    /*
    .grid-visit :nth-child(1){
        grid-column: span 3;
        grid-row: 2;
    }

    .grid-visit :nth-child(2){
        grid-column: span 4;
    }*/
}

.visit-img{
    min-height: 320px;
    object-fit: cover;
    width: 100%;
    border-radius: var(--border-radius);
    position: relative;

    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

.visit-img::after{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 50%;
    width: 100%;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    background: rgb(5,5,34);
    background: -moz-linear-gradient(0deg, rgba(5,5,34,0.6847689759497548) 35%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(5,5,34,0.6847689759497548) 35%, rgba(0,0,0,0) 100%);
    background: linear-gradient(0deg, rgba(5,5,34,0.6847689759497548) 35%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#050522",endColorstr="#000000",GradientType=1);
}


.visit-img-text{
    position: absolute;
    display: inline-flex;
    bottom: 10px;
    left: 10px;
}

.visit-title{
    font-family: 'Blastimo';
    margin: 2rem 0rem;
    font-size: 3em ;
    font-weight: 400;
    line-height: 4rem;
}

/*desktop*/
@media (min-width: 750px) {
    .grid-event{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap:20px ;
        margin-top: 2.5rem;
    }
}

/*mobile*/
@media (max-width: 750px) {

    .grid-event{
        display: grid;
        gap:3em;
        margin-top: 2.5rem;
    }

    .event-time{
        font-size: 0.8em;
    }
}

.subgrid-event{
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 10px;
    margin-bottom: 3rem;
}

.grid-event li a{
    text-decoration: none !important;
    color: var(--prefsecondary);
}

.grid-event span{
    font-size: 0.8em;
    text-align: left;
    display: block;
    margin: 0.5em;
}

.grid-event h4{
    font-size: 1.05em;
    font-weight: 600;
    margin: 0.5em;
}

.grid-event img{
    object-fit: cover;
    border-radius: var(--border-radius);
    height: 200px;
    width: 100%;
}

.event-time{
    background-color: var(--prefprimary);
    border-radius: var(--border-radius);
    color: white;
    padding: 0.5em;
    height: 100px ;
    display: flex;
    align-content: center;
    justify-content: center;
    margin-top: 0.5em;
}

.event-time time{
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    margin: 0.5em;
    font-size: 0.9em;
    line-height: normal;
}

.event-time strong{
    font-size: 1.1em !important;
    margin-bottom: 0.2em;
}

.btn-more{
    color: var(--prefprimary);
    text-align: center;
    font-weight: 700;
    display: inline-flex;
    text-decoration: none;
    justify-content: center;
    width: 100%;
    /*margin-top: 2rem;*/
    margin-bottom: 8rem;
    position: relative;
}

.btn-more::after{
    content: '';
    position: absolute;
    bottom: 0px;
    height: 2px;
    width: 0px;
    margin-top: 2em;
    transition: 0.3s;
}

.btn-more:hover::after{
    content: '';
    position: absolute;
    bottom: 0px;
    background-color: var(--prefprimary);
    height: 2.5px;
    width: 85px;
    margin-top: 2em;
}

.text{
    display: flex;
    margin: auto 0%;
}

.btn-more .material-icons-outlined{
    display: flex;
    margin: auto 0%;
    font-size: 1em;
}


/*desktop*/
@media (min-width: 750px) {
    .grid-banner{
        display: grid;
        grid-template-columns: 1fr 1fr;

        background-image: url('/img/novas/banner1.jpg');
        background-repeat: no-repeat;
        background-size: 100% 100% ;
        background-position: center;
        background-size: cover;

    }

    .grid-banner::after{
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        border-radius: var(--border-radius);
        height: 100%;
        width: 100%;

        background: rgb(32,152,200);
        background: -moz-linear-gradient(90deg, rgba(32,152,200,0.9) 40%, rgba(32,152,200,0) 57%);
        background: -webkit-linear-gradient(90deg, rgba(32,152,200,0.9) 40%, rgba(32,152,200,0) 57%);
        background: linear-gradient(90deg, rgba(32,152,200,0.9) 40%, rgba(32,152,200,0) 57%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2098c8",endColorstr="#2098c8",GradientType=1);

    }

}

/*mobile*/
@media (max-width: 750px) {

    .grid-banner{
        display: grid;
        grid-template-rows: 1fr 1.2fr;
        position: relative;
    }

    .grid-banner text{
        padding: 3rem 5rem !important;
    }

    .grid-banner .img-mobile{
        grid-row: 2;
        background-image: url('/img/novas/banner1-m.jpg');
        background-repeat: no-repeat;
        background-size: 100% 100% ;
        background-position: center;
        background-size: cover;
        border-radius: var(--border-radius);
    }

    .grid-banner :nth-child(1){
        background-color: var(--prefprimary) ;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }

    .grid-banner::after{
        content: '';
        position: absolute;
        bottom: 58px;
        height: 50%;
        width: 100%;
        z-index: 3;

        background: rgb(50,154,198);
        background: -moz-linear-gradient(180deg, rgba(50,154,198,1) 15%, rgba(50,154,198,0) 40%);
        background: -webkit-linear-gradient(180deg, rgba(50,154,198,1) 15%, rgba(50,154,198,0) 40%);
        background: linear-gradient(180deg, rgba(50,154,198,1) 15%, rgba(50,154,198,0) 40%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#329ac6",endColorstr="#329ac6",GradientType=1);
    }


    .grid-banner .text{
        padding: 3rem 2rem !important;
    }
}

.grid-banner{
    border-radius: var(--border-radius);
    width: 100%;
    min-height: 300px;
    position: relative;
    margin-bottom: 4rem;
}



.grid-banner .text{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 5rem;
    z-index: 2;
    padding-left: 7rem;
}

.grid-banner h4{
    font-size: 1.1em;
    text-align: left;
    font-weight: 400;
    line-height: 1.1em;
    margin-bottom: 1.5em;
}

.grid-banner h3{
    font-size: 1.2em;
    line-height: 1.2em;
    margin-bottom: 0.5em;
}


/*desktop*/
@media (min-width: 750px) {
    .grid-banner2{
        grid-template-columns: 1fr 1fr;
    }
}

/*mobile*/
@media (max-width: 750px) {
    .grid-banner2{
        grid-template-rows: 1fr 1fr;
    }

    .banner2-logo{
        top: -50px !important;
    }

    .grid-banner2 .card{
        margin-top: 85px !important;
        margin-bottom: 44px !important;
    }

}


.grid-banner2{
    display: grid;
    border-radius: var(--border-radius);
    width: 100%;
    min-height: 300px;
    position: relative;

    background-repeat: no-repeat;
    background-size: 100% 100% ;
    background-position: center;
    background-size: cover;

    align-items: center;
    justify-items: center;
    margin-bottom: 5rem;
}

.grid-banner2::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: var(--border-radius);
    height: 100%;
    width: 100%;

    background: rgb(5,29,38);
    background: -moz-linear-gradient(90deg, rgba(5,29,38,0.4) 15%, rgba(5,29,38,0) 50%, rgba(5,29,38,0.4) 85%);
    background: -webkit-linear-gradient(90deg, rgba(5,29,38,0.4) 15%, rgba(5,29,38,0) 50%, rgba(5,29,38,0.4) 85%);
    background: linear-gradient(90deg, rgba(5,29,38,0.4) 15%, rgba(5,29,38,0) 50%, rgba(5,29,38,0.4) 85%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#051d26",endColorstr="#051d26",GradientType=1);
}

.grid-banner2 .card{
    display: flex;
    background-color: white;
    position: relative;
    border-radius: var(--border-radius);
    z-index: 2;
    min-height: 40%;
    width: 70%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em;
    margin: 1.5em;
    text-align: center;
    margin-top: 60px;
}

.banner2-logo{
    position: absolute;
    top: -44px;
    display: flex;
    align-self: center;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.grid-banner2 h3{
    font-size: 1em;
    margin-bottom: 0rem;
    margin-top: 1.5rem;
}

.grid-banner2 p{
    font-size: 0.8em;
    margin: 0.5em 0em;
}

 /* horizontal scrooll só mobile*/
 .hr-scroll {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

}
.hr-scroll-card {
    display: inline-block;
    flex: 0 0 auto;
}
/* */

.m-md-subtitulo{
 margin: 0rem 9rem;
}

/*mobile*/
@media (max-width: 750px) {

    .m-md-subtitulo{
        margin: 0rem !important;
       }
}
