/*SECTION BANNER*/
.sec-banner {
    position: relative;
    z-index: 1;
    padding: 140px 0 70px;
}
.sec-banner .conteudo-banner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}
.sec-banner .breadcrumb{
    margin: 22px 0 40px 0;
}
.sec-banner .breadcrumb a {
    color: #335a9c;
    text-decoration: none;
    margin-right: 30px;
    font-family: 'Karla';
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.sec-banner .breadcrumb a:hover {
    color: #fff;
}
.sec-banner .texto-banner {
    color: white;
    padding-right: 50px;
}
.sec-banner .texto-banner h1 {
    color: #ffb71b;
    font-family: 'Karla';
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.sec-banner .texto-banner p {
    font-size: 18px;
}
.sec-banner .img-banner {
    position: relative;
    width: 100%;
    height: 100%;
}
.sec-banner .img-banner .btn-play{
    position: relative;
    z-index: 2;
    top: calc(100% - 20px);
    left: 50px;
}
.sec-banner .img-banner .img-grande {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(40vw + 30px);
    height: calc(100% + 110px);
    max-width: 750px;
    object-fit: cover;
}
.sec-banner .botoes-banner{
    align-items: center;
}
.sec-banner .botoes-banner a{
    color: #fff;
}
/* END SECTION BANNER */

/*SECTION CONTENT*/
.sec-content{
    font-family: "Karla";
    background-color: #e5e5e5;
    padding: 20px 0 100px 0;
}
.sec-content .row-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin-top: 100px;
    margin-bottom: 50px;
    justify-content: center;
}
.sec-content .dropdown-year {
    position: relative;
    display: inline-block;
}
.sec-content .dropdown-button {
    padding: 5px 15px;
    font-size: 1rem;
    border: none;
    background-color: white;
    cursor: pointer;
    color: #4d4d4d;
    font-weight: 500;
}
.sec-content .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1000;
}
.sec-content .dropdown-menu .dropdown-item {
    padding: 5px 45px 5px 15px;
    cursor: pointer;
}
.sec-content .dropdown-menu .dropdown-item:hover {
    background-color: #f0f0f0;
}
.sec-content .dropdown-year.open .dropdown-menu {
    display: block;
}
.sec-content .filters-months {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.sec-content .item-month {
    padding: 5px 10px;
    font-size: 1rem;
    color: #4d4d4d;
    background: #ffffff00;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}
.sec-content .item-month:hover {
    background-color: #01c0ff;
}
.sec-content .item-month.active {
    background-color: #07b1e9;
}
.sec-content .spn {
    color: #07b1e9;
    margin-left: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}
.sec-content .custom-dropdown-events {
    width: 100%;
    overflow: hidden;
}
.sec-content .custom-dropdown-events.open > .dropdown-header-events {
    color: #07b1e9;
}
.sec-content .dropdown-header-events {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    cursor: pointer;
    font-size: 18px;
    color: #01246d;
    font-weight: 700;
    font-family: "Karla";
}
.sec-content .dropdown-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.sec-content .dropdown-content-events {
    display: none;
    padding: 20px;
    background-color: white;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.sec-content .dropdown-left-events {
    width: 60%;
    padding: 0 60px 0 90px;
    text-align: justify;
}
.sec-content .dropdown-text-events{
    margin-bottom: 25px;
}
.sec-content .dropdown-text-events p{
    font-size: 18px;
    font-weight: 400;
    font-family: "Karla";
    line-height: 1.8;
}
.sec-content .dropdown-button-events {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.sec-content .dropdown-button-events:hover {
    background-color: #0056b3;
}
.sec-content .dropdown-right-events {
    position: relative;
    width: 35%;
    text-align: right;
}
.sec-content .dropdown-right-events .btn-play{
    position: absolute;
    left: 30px;
    bottom: 30px;
}
.sec-content .dropdown-right-events img {
    max-width: 100%;
}
.sec-content .custom-dropdown-events.open .dropdown-content-events {
    display: flex;
    column-gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.sec-content .custom-dropdown-events.open .dropdown-icon {
    transform: rotate(45deg);
}
.sec-content .items-events{
    margin: 2px 0;
}
.sec-content .content-btn-events{
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0 0;
}

.sec-content .share {
    position: relative;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    margin: 10px 0;
    cursor: pointer;
    text-align: center;
    align-items: center;
}
.sec-content .share span{
    color: #000;
}
.sec-content .spn {
    color: #07b1e9;
    margin-left: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}
.sec-content #noResults {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #4d4d4d;
}
/* END SECTION CONTENT */

/*SECTION CALENDARIO*/
.sec-calendario{
    position: relative;
    z-index: 1;
    padding: 50px 0 70px;
    background-color: #011547;
}
.sec-calendario .titulo{
    justify-self: center;
    margin-bottom: 40px;
    color: #fff;
}
.sec-calendario::before{
    content: '';
    position: absolute;
    z-index: -1;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 100%;
    background-color: #011547;
}
.sec-calendario .slide-calendario{
    padding: 0 60px;
}
.sec-calendario .slide-calendario .slide{
    margin: 0 10px;
}
.sec-calendario .slide-calendario .content{
    padding: 40px;
}
.sec-calendario .slide-calendario .content > *{
    color: #fff;
    margin: 0 0 5px
}
.sec-calendario .slide-calendario .content h1{
    font-size: 23px;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 800;
    font-family: "Karla";
    text-transform: uppercase;
}
.sec-calendario .slide-calendario .slick-dots{
    bottom: -50px;
}
/* END SECTION CALENDARIO */

/* RESPONSIVE */

@media (max-width: 1200px) {
    .sec-banner{
        padding: 120px 0 50px;
    }
    .sec-banner .texto-banner{
        padding: 0;
    }
    .sec-banner .img-banner .btn-play{
        position: absolute;
        top: 215px;
        left: 32px;
    }
    .sec-banner .img-banner .img-grande{
        top: 20px;
        width: 100%;
        height: 300px;
        max-width: 850px;
    }
    .sec-banner-pdf .banner{
        flex-direction: column;
    }
    .sec-banner-pdf .banner .img{
        width: 100%;
    }
    .sec-banner-pdf .banner .content{
        grid-template-columns: 100%;
        padding: 30px 40px 40px;
    }
    .sec-banner-pdf .banner .titulo-banner{
        padding: 0;
        font-size: 30px;
    }
    .sec-banner-pdf .banner .texto{
        margin-top: 20px;
    }
    .sec-banner-pdf .banner .btn-pdf {
        margin-top: 10px;
    }
    .sec-content{
        padding: 340px 0 50px;
    }
    .sec-content .custom-dropdown-events.open .dropdown-content-events {
        flex-direction: column-reverse;
    }
    .sec-content .dropdown-right-events {
        width: 100%;
    }
    .sec-content .dropdown-left-events {
        width: 100%;
        padding-left: 0;
    }   
    
    .slide-calendario{
        padding: 0 25px;
    }
    .sec-calendario::before{
        width: calc(100vw - 30px);
    }
}
/* END RESPONSIVE */
