.banner {
    width: 100%;
    background-size: cover;
    background-position: center;

}

.slide1 {
    background-image: url('../imagens/banner/8.png');
    background-size: cover;
    background-position: center;
    height: calc(90vh - 60px);
    /* Supondo que a altura do menu seja 60px */
}

.slide2 {
    background-image: url('../imagens/banner/7.png');
    background-size: cover;
    background-position: center;
    height: calc(90vh - 60px);
    /* Supondo que a altura do menu seja 60px */
}

.slide3 {
    background-image: url('../imagens/banner/8.png');
    background-size: cover;
    background-position: center;
    height: calc(90vh - 60px);
    /* Supondo que a altura do menu seja 60px */
}

.slick-dots {
    bottom: 0px;
    margin-bottom: 1rem;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .50;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

.slick-dots li.slick-active button:before {

    color: var(--cinza-claro);
}

.slick-next {
    display: none !important;
}

.slick-prev {
    display: none !important;
}

.slick-prev:before, .slick-next:before{
    display: none !important;
}

/* .slick-carousel h1 {
    color: #fff;
    font-size: 40px;
} */

.textos-slide {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
}


.slide-title {
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    margin: 1rem;
    font-size: 2.75rem;
    text-shadow: 3px 3px 1px #174a84;
    font-family: var(--titulo-font);
    text-align: center;
}

.slick-slide:first-child .slide-title {
    opacity: 1;
    animation: none;
}

.slide-paragrafo {
    color: #fff;
    font-size: 1.5rem;
    font-family: var(--paragrafo-font);

}

.sublinhado {
    text-decoration: underline var(--cinza-claro);
}


.tracking-in-expand-fwd-top {
    -webkit-animation: tracking-in-expand-fwd-top 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-expand-fwd-top 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    opacity: 1;
    /* Define a opacidade para 1 durante a animação */
}



/* Seu keyframe permanece o mesmo */
@-webkit-keyframes tracking-in-expand-fwd-top {
    0% {
        letter-spacing: -0.5em;
        -webkit-transform: translateZ(-700px) translateY(-500px);
        transform: translateZ(-700px) translateY(-500px);
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        -webkit-transform: translateZ(0) translateY(0);
        transform: translateZ(0) translateY(0);
        opacity: 1;
    }
}

@keyframes tracking-in-expand-fwd-top {
    0% {
        letter-spacing: -0.5em;
        -webkit-transform: translateZ(-700px) translateY(-500px);
        transform: translateZ(-700px) translateY(-500px);
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        -webkit-transform: translateZ(0) translateY(0);
        transform: translateZ(0) translateY(0);
        opacity: 1;
    }
}


/* Seu keyframe permanece o mesmo */

@media (max-width: 900px) {

    .slide-title {
        font-size: 2rem;
    }

    
}

@media (max-width: 768px) {

    .slide-title {
      font-size: 1.7rem;
    }

    .slide-paragrafo {
        font-size: 1rem;
    }
  
  
  }



@media (max-width: 600px) {
   /* .slide1 {
        background-image: url('../wallpaper2.jpg');
    } */


    .slide-paragrafo {
        font-size: 1.25rem;
        text-align: center;
    }


}