
.banner-slider{
    width: 100%;
}

.banner-responsive .arrows-container{
    width: clamp(0px, var(--container-width), 80%);
    margin: 0;
    justify-content: space-between;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
}


.banner-responsive .arrows-container i{
    background-color: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}


.banner-slider .banner-slide{
    width: 100%;
    position: relative;
}


.banner-slider .banner-slide .absolute-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.banner-slider .banner-slide .absolute-container .container{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    position: relative;
}
.banner-slider .banner-slide .absolute-container .container h1{
    font-size: clamp(35px, 8vw - 0.5rem, 120px);
    text-align: center;
    text-indent: -25%;
    font-style: italic;
    font-weight: 40;
    line-height: 0.6;
    color: var(--header-link-color-hover);
}

.banner-slider .banner-slide .absolute-container .container h1 span{
    font-size: inherit;
    font-family: inherit;
    text-indent: 20%;
    display: block;
    line-height: normal;
}

.banner-slider .banner-slide .absolute-container .container > span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-family: var(--ff-secondary);
    color: var(--header-link-color-hover);
    font-size: clamp(20px, 1.5vw - 0.5rem, 24px);
    position: absolute;
    bottom: 20%;
    left: 20%;
    max-inline-size: 150px;
    line-height: 114%;
}
.banner-responsive picture::after{
    display: none;
}


.noticias-section{
    width: 100%;
    padding: 100px 0px;
    background-color: #FFF8F1;
}
.noticias-section .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 64px;
}
.noticias-section .container .noticias-container{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    gap: 32px;
}

.noticias-section .container > a{
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.noticias-section .container > a i{
    transform: rotateZ(-30deg);
    font-size: 18px;
    transition: transform .3s ease-in-out;
}
.noticias-section .container > a:hover i{
    transform: rotateZ(0deg);
}

.noticias-section .container .noticias-container .noticia-card{
    width: 100%;
    min-height: 248px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #ffffff;
    position: relative;
    border: 1px solid #F4F4F4;
    transition: background .3s ease-in-out;
}
.noticias-section .container .noticias-container .noticia-card .hidden-link{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.noticias-section .container .noticias-container .noticia-card .img-container{
    width: 200px;
    height: 100%;
}
.noticias-section .container .noticias-container .noticia-card .img-container img{
    width: 200px;
    height: 100%;
    object-fit: cover;
}
.noticias-section .container .noticias-container .noticia-card .text-container{
    width: calc(100% - 200px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 12px;
}

.noticias-section .container .noticias-container .noticia-card .text-container .text-header{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.noticias-section .container .noticias-container .noticia-card .text-container .text-header .tags{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    --sport-color: var(--color-primary);
}

.noticias-section .container .noticias-container .noticia-card .text-container .text-header .tags span{
    text-transform: uppercase;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 600;
}

.noticias-section .container .noticias-container .noticia-card .text-container .text-header .tags span:first-of-type{
    background-color: #E9E8E8;
    color: var(--text-color);
}
.noticias-section .container .noticias-container .noticia-card .text-container .text-header .tags span:last-of-type{
    color: #ffffff;
    background-color: var(--sport-color);
}
.noticias-section .container .noticias-container .noticia-card .text-container .text-header .noticia-content > span{
    color: #053D38;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color .3s ease-in-out;
    width: 100%;
}
.noticias-section .container .noticias-container .noticia-card:hover .text-container .text-header .noticia-content > span{
    color: #fff;
}
.noticias-section .container .noticias-container .noticia-card .text-container .noticia-content{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.noticias-section .container .noticias-container .noticia-card .text-container .noticia-content h4{
    color: var(--text-color);
    font-weight: 600;
    font-style: normal;
    font-size: clamp(20px, 1.4vw - 0.5rem, 24px);
}
.noticias-section .container .noticias-container .noticia-card .text-container .noticia-content p{
    color: #727070;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
.noticias-section .container .noticias-container .noticia-card .text-container a.saibaBtn{
    color: var(--text-color);
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color .3s ease-in-out;
    margin-top: auto;
}
.noticias-section .container .noticias-container .noticia-card:hover .text-container a.saibaBtn{
    color: #fff;
}

.noticias-section .container .noticias-container .noticia-card:hover{
    background-color: var(--color-primary);
}
.noticias-section .container .noticias-container .noticia-card:hover .text-container .text-header > span,
.noticias-section .container .noticias-container .noticia-card:hover .text-container .noticia-content a,
.noticias-section .container .noticias-container .noticia-card:hover .text-container .noticia-content h4,
.noticias-section .container .noticias-container .noticia-card:hover .text-container .noticia-content p{
    color: var(--color-secondary);
}

/* proximos-eventos-section */

.proximos-eventos-section{
    width: 100%;
    padding: 100px 0px;
    overflow-x: clip;
    overflow-y: visible;
}

.proximos-eventos-section .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
}

.proximos-eventos-section .container > a{
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.proximos-eventos-section .container > a i{
    transform: rotateZ(-30deg);
    font-size: 18px;
    transition: transform .3s ease-in-out;
}
.proximos-eventos-section .container > a:hover i{
    transform: rotateZ(0deg);
}

.proximos-eventos-section .container .section-header{
    position: relative;
}

.proximos-eventos-section .container .section-header .absolute-img{
    position: absolute;
    width: 95px;
    height: 270px;
    right: 20%;
    top: -200px;
    pointer-events: none;
    animation: float 5s ease-in-out infinite;
}

.proximos-eventos-section .container .eventos-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.proximos-eventos-section .container .eventos-container .evento-card{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    height: 220px;
}
.proximos-eventos-section .container .eventos-container .evento-card .evento-card-data{
    width: 240px;
    height: 100%;
    background-color: var(--color-secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.proximos-eventos-section .container .eventos-container .evento-card .evento-card-data h3{
    color: var(--text-color);
    text-align: center;
    font-size: clamp(35px, 2.8vw - 0.5rem, 42px);
}

.proximos-eventos-section .container .eventos-container .evento-card .evento-card-content{
    width: calc(100% - 240px);
    height: 100%;
    display: grid;
    place-items: flex-start;
    gap: 30px;
    grid-template-columns: 1fr 2fr 1fr;
    background-color: #FBFAFA;
    padding-left: 40px;
}

.proximos-eventos-section .container .eventos-container .evento-card .evento-card-content .evento-card-content-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    padding: 40px 0px;
}
.evento-card .evento-card-content .evento-card-content-info h4{
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: clamp(20px, 1.6vw - 0.5rem, 24px);
}
.evento-card .evento-card-content .evento-card-content-info span{
    color: var(--text-color);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
}
.evento-card .evento-card-content .evento-card-content-info span i{
    margin-right: 10px;
}

.evento-card .evento-card-content .evento-card-content-details{
    width: 100%;
    padding: 40px 0px;
}
.evento-card .evento-card-content .evento-card-content-details p{
    color: #727070;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}
.evento-card .evento-card-content .evento-card-content-button{
    width: 100%;
    height: 100%;
}

.evento-card .evento-card-content .evento-card-content-button a{
    width: 100%;
    height: 100%;
    background-color: var(--banner-bg);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    font-size: 14px;
}
.evento-card .evento-card-content .evento-card-content-button a::before{
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--color-primary-light);
    opacity: 0;
    transition: opacity .3s ease-in-out;
    color: #fff;
}
.evento-card .evento-card-content .evento-card-content-button a:hover::before{
    opacity: 1;
}

/* atividades section */
.atividades-section{
    width: 100%;
    padding: 70px 0px 50px 0px;
    background-color: #FFF8F1;
}
.atividades-section .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 64px;
}

.atividades-section .container .section-header{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.atividades-section .container .section-header .section-title{
    width: fit-content;
}

.atividades-section .container .section-header .absolute-img {
    position: absolute;
    width: 202px;
    height: 223px;
    object-fit: contain;
    left: 0;
    top: -175px;
    pointer-events: none;
    animation: float_diagonal 6s ease-in-out infinite;
}

.atividades-section .atividades-slider{
    width: 100%;
    margin-top: 50px;
}

.atividades-section .atividades-slider .slick-list{
    padding-right: 10% !important;
    padding-top: 50px !important;
}

.atividades-section .atividades-slider .atividade-slide{
    width: 95%;
    margin: 0 auto;
    position: relative;
}

.atividades-section .atividades-slider .atividade-slide .hidden-link{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.atividades-section .atividades-slider .atividade-slide .text-container{
    width: 90%;
    height: 130px;
    padding: 30px 20px;
    position: absolute;
    top: -50px;
    left: 0;
    z-index: 10;
    background-color: var(--banner-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: background .3s ease-in-out;
}

.atividades-section .atividades-slider .atividade-slide .text-container::before{
    content: "";
    position: absolute;
    top: -5px;
    right: -16px;
    width: 0px;
    height: 0px;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 25px solid var(--sport-color);
    transform: rotate(45deg);
}


.atividades-section .atividades-slider .atividade-slide:hover .text-container{
    background-color: var(--sport-color);
}


.atividades-section .atividades-slider .atividade-slide .text-container h4{
    color: #ffffff;
    font-size: clamp(30px, 2.5vw - 0.5rem, 45px);
    max-inline-size: 50%;
    font-weight: 500;
}


.atividades-section .atividades-slider .atividade-slide .text-container a{
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.atividades-section .atividades-slider .atividade-slide .text-container a i{
    transform: rotateZ(-30deg);
    font-size: 18px;
    transition: transform .3s ease-in-out;
}
.atividades-section .atividades-slider .atividade-slide .text-container a:hover i{
    transform: rotateZ(0deg);
}

.atividades-section .atividades-slider .atividade-slide .img-container{
    height: 480px;
    width: 100%;
}

.atividades-section .atividades-slider .atividade-slide .img-container img{
    width: 100%;
    height: 100%;
}

.atividades-section .arrows-container{
    width: fit-content;
    gap: 30px;
    margin: 50px auto 0px auto;
    justify-content: space-between;
}


.atividades-section .arrows-container i{
    background-color: var(--color-primary);
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}


/* faca parte section */
.faca-parte-section{
    width: 100%;
    padding: 100px 0px;
    background-color: var(--banner-bg);
    background-image: url(../imagens/home/faca-parte-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
}

.faca-parte-section .container-fluid{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 64px;
    overflow: hidden;
}

.faca-parte-section .container-fluid .text-container{
    max-inline-size: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 var(--padding-inline);
}

.faca-parte-section .container-fluid .text-container h2{
    color: var(--color-secondary);
    font-weight: 600;
    font-style: italic;
    text-align: center;
}

.faca-parte-section .container-fluid .text-container p{
    text-align: center;
    color: var(--color-secondary);
    font-size: 14px;
    opacity: 0.9;
    font-weight: 300;
}

.faca-parte-section .container-fluid .text-container a{
    width: 100%;
    background-color: var(--color-primary-light);
    color: #fff;
    text-align: center;
    padding: 1rem;
    text-transform: uppercase;
    transition: background .3s ease-in-out;
}

.faca-parte-section .container-fluid .text-container a:hover{
    background-color: var(--color-primary-lighter);
}

.faca-parte-section .container-fluid .image-grid{
    min-height: 500px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    justify-content: center;
    place-items: center;
    gap: 35px;
    padding: 0 var(--padding-inline);
}

.faca-parte-section .container-fluid .image-grid .img-container{
    width: 100%;
    overflow: hidden;
}

.faca-parte-section .container-fluid .image-grid .img-container img{
    width: 100%;
    height: 100%;
    transition: transform .3s ease-in-out;
}
.faca-parte-section .container-fluid .image-grid .img-container:hover img{
    transform: scale(1.05);
}

.faca-parte-section .container-fluid .image-grid .img-container:nth-of-type(1){
    margin-top: 150px;
    width: 320px;
    height: 240px;
}
.faca-parte-section .container-fluid .image-grid .img-container:nth-of-type(1) img{
	width: 320px;
    height: 240px;
}
.faca-parte-section .container-fluid .image-grid .img-container:nth-of-type(2){
    margin-top: -120px;
    width: 330px;
    height: 250px;
}
.faca-parte-section .container-fluid .image-grid .img-container:nth-of-type(2) img{
    width: 330px;
    height: 250px;
}
.faca-parte-section .container-fluid .image-grid .img-container:nth-of-type(3){
    width: 350px;
    height: 480px;
}
.faca-parte-section .container-fluid .image-grid .img-container:nth-of-type(3) img{
    width: 350px;
    height: 480px;
}
.faca-parte-section .container-fluid .image-grid .img-container:nth-of-type(4){
    width: 340px;
    height: 360px;
}
.faca-parte-section .container-fluid .image-grid .img-container:nth-of-type(4) img{
    width: 340px;
    height: 360px;
}
.faca-parte-section .container-fluid .image-grid .img-container:nth-of-type(5){
    margin-top: -220px;
    width: 320px;
    height: 240px;
}
.faca-parte-section .container-fluid .image-grid .img-container:nth-of-type(5) img{
    width: 320px;
    height: 240px;
}



/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){
    /* .faca-parte-section .container-fluid .image-grid{
        grid-template-columns: repeat(3, 1fr);
    }
    .faca-parte-section .container-fluid .image-grid .img-container:nth-of-type(1){
        margin-top: 0;
    }
    .faca-parte-section .container-fluid .image-grid .img-container:nth-of-type(2){
        margin-top: 0;
    }
    .faca-parte-section .container-fluid .image-grid .img-container:nth-of-type(5){
        margin-top: 0;
    } */
}

@media screen and (max-width: 1440px){

}

@media screen and (max-width: 1366px){

}

@media screen and (max-width: 1280px){
    .banner-slider .banner-slide .absolute-container .container > span {
        left: 25%;
    }
    .proximos-eventos-section .container .eventos-container .evento-card {
        flex-direction: column;
        height: auto;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .proximos-eventos-section .container .eventos-container .evento-card:last-of-type{
        border-bottom: none;
    }
    .proximos-eventos-section .container .eventos-container .evento-card .evento-card-data {
        width: 100%;
    }
    .proximos-eventos-section .container .eventos-container .evento-card .evento-card-content {
        width: 100%;
    }
}

@media screen and (max-width: 1100px){
    .banner-responsive .arrows-container{
        bottom: 50px;
    }
    .banner-slider .banner-slide .absolute-container .container > span {
        bottom: 15%;
        left: 25%;
    }
    
    .proximos-eventos-section .container .section-header .absolute-img{
        right: 25%;
        top: -200px;
    }
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .banner-slider .banner-slide .absolute-container .container {
        align-items: center;
        justify-content: center;
        padding-top: 50px;
    }
    .banner-slider .banner-slide .absolute-container .container > span {
        bottom: unset;
        left: unset;
        position: relative;
        text-align: center;
        max-inline-size: unset;
    }
    .noticias-section .container .noticias-container{
        grid-template-columns: 1fr;
    }
    .proximos-eventos-section .container .section-header .absolute-img{
        right: 30%;
        top: -200px;
    }
    
    .atividades-section .atividades-slider .slick-list{
        padding-right: 0 !important;
        padding-top: 50px !important;
    }
}

@media screen and (max-width: 800px){
    .banner-slider .banner-slide .absolute-container .container {
        padding-top: 0px;
    }
    
    .proximos-eventos-section .container .section-header .absolute-img {
        right: -50px;
        top: -220px;
        height: 200px;
        object-fit: contain;
    }
    .proximos-eventos-section .container .eventos-container .evento-card .evento-card-content {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 10px;
    }
    .proximos-eventos-section .container .eventos-container .evento-card .evento-card-content .evento-card-content-info{
        padding: 0;
    }
    .evento-card .evento-card-content .evento-card-content-button a {
        padding: 1rem;
    }
    .atividades-section .container .section-header .absolute-img {
        width: 120px;
        height: auto;
        top: -150px;
    }
}

@media screen and (max-width: 600px){
    .noticias-section .container .noticias-container .noticia-card {
        flex-direction: column;
    }
    .noticias-section .container .noticias-container .noticia-card .img-container,
    .noticias-section .container .noticias-container .noticia-card .text-container{
        width: 100%;
    }
    .noticias-section .container .noticias-container .noticia-card .img-container img{
    	margin: 0 auto;
    }
    .noticias-section .container .noticias-container .noticia-card .text-container .text-header,
    .noticias-section .container .noticias-container .noticia-card .text-container .text-header .tags {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
    }

    .proximos-eventos-section .container .eventos-container .evento-card .evento-card-content {
        padding: 20px;
    }

    .noticias-section .container .noticias-container .noticia-card{
        height: fit-content;
    }

}

@media screen and (max-width: 400px){

}

@media screen and (max-width: 375px){

}