.fa-bars,
.fa-plus,
.fa-list,
.fa-dollar-sign,
.fa-ranking-star,
.fa-right-from-bracket {
    width: 24px;
    text-align: center;
}
/* Ensure the card body flexes to fill the card */
.card-body {
    display: flex;
    flex-direction: column;
    height: 115px;
    transition: height 0.3s ease-in-out;
}

/* Make the card text expand to fill the available space */
.card-text {
    flex-grow: 1;
    height: 50px;
    text-align: justify;
}
.card-img-top {
    height: 150px;
    object-fit: cover; /* This will ensure the image covers the area without distorting its aspect ratio */
    width: 100%; /* Ensure the image covers the full width of the card */
    transition: height 0.3s ease-in-out;
}

.descricao-evento {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 10px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px 0 0 5px;
    font-size: 0.9em;
    text-align: center;
    transition: width 0.3s ease-in-out;
    overflow: hidden;
    white-space: nowrap;
    width: 90px;
    word-spacing: 5px;
}

.image-overlay:hover {
    width: 200px;
}

.evento {
    cursor: pointer;
    text-decoration: none;
}

.evento > .card  {
    /* transform: scale(1); */
    transition: box-shadow 0.3s ease-in-out;
    box-shadow: none;
}

/* O hover deve funcionar apenas no elemento .evento, isso está certo? */

.evento:hover > .card  {
    /* transform: scale(1.1); */
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
}

.evento:hover > .card > .card-img-top {
    height: 0;
}

.evento:hover > .card > .card-body {
    height: 265px;
}

.evento:hover > .card > .card-body > .descricao-evento {
    -webkit-line-clamp: 8;
}

.section-dark {
    background-color: #eeeeee;
}

.section-parceiros {
    padding: 20px 0;
}

.section-parceiros .text-white {
    font-size: 1.2em;
}

.img-parceiro {
    width: 200px;
    max-width: 100%;
}
    

.img-parceiro-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px; /* Altura fixa para centralizar verticalmente */
}

.carousel-item img {
    max-height: 400px;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .img-parceiros {
        margin-top: 40px; /* Margem em dispositivos móveis */
    }
}

.slick-prev:before, .slick-next:before {
    color: #6D0FF2 !important;
}

.slick-slide {
    min-height: 300px;
    padding: 0 10px;
}

@media (max-width: 991px) {
    .slick-slide {
        min-height: 345px ;
    }
}

@media (max-width: 768px) {
    .slick-slide {
        min-height: 350px;
    }
}

@media (max-width: 575px) {
    .slick-slide {
        min-height: 280px;
    }
}


 .slick-slide > .card > .card-body, .slick-slide > .card > .card-body > .card-text {
    height: auto;
 }

 #carrossel-lojas .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

#carrossel-lojas .card-img-top {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #ddd;
}

#carrossel-lojas .stars i {
    margin: 0 2px;
}

/* Deixar a cor de fundo "esfumaçada preta" para o texto branco ser visível*/

.section-beneficios {
    position: relative;
    min-height: 90vh;
    background-image: url('/assets/image/nuvens.svg'), linear-gradient(to bottom, var(--stellar-blue) 15%, var(--cotton-candy) 45%, white 100%);
    background-attachment: fixed, scroll;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.section-beneficios > .container {
    position: relative;
    z-index: 1;
}

.section-lastcta {
    min-height: 80vh;
    /* fazer o background color ser degrade, do tranparente para a cor atual */
    /* background-image: linear-gradient(to bottom, #eeeeee 1%, #5005F2); */
}

.pipe-typeEffect {
    display: inline-block;
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.text-typeEffect,
.pipe-typeEffect {
    font-style: italic;
}