.card-carousel {
    padding: 20px 0;
    position: relative;
}

.swiper h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.dash-card-flag {
    width: 40px !important;
    height: auto !important;
    position: absolute;
    margin-left: 245px;
    margin-top: 25px;
}

.swiper-slide {
    height: auto;
    width: 350px !important;
}

.card-item {
    background: #2a3248;
    border-radius: 20px;
    padding: 20px;
    height: 400px;
    width: 100%;
    transition: all 0.3s ease;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
}

/* Specific style for testimonial cards */
.testimonios-carousel .card-item {
    height: 320px;
}

.card-item:hover {
    transform: translateY(-5px);
    background: #3a4258;
}

.card-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    margin-top: 10px;
    text-align: center;
}

.card-item p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
    flex-grow: 1;
}

.card-item .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-item .date {
    font-size: 14px;
    color: #fff;
}

.card-item .location {
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
}

.card-item .location i {
    margin-right: 5px;
}

.card-item iframe {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 15px;
    border-radius: 8px;
}

/* Estilo das setas de navegação */
.swiper-button-next,
.swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    background: none !important;
    opacity: 0.5;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #fff !important;
    font-size: 40px !important;
    font-weight: normal !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 0.9;
}

@media (max-width: 699px) {
    .swiper-slide {
        width: 300px !important;
    }
    
    .card-item {
        height: 350px;
        margin: 10px;
    }
    
    .card-item img {
        height: 200px;
    }
    
    .card-item h3 {
        font-size: 18px;
    }
    
    .card-item p {
        font-size: 13px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 24px !important;
    }

    .dash-card-flag {
        width: 40px !important;
        height: auto !important;
        position: absolute;
        margin-left: 205px !important;
        margin-top: 25px !important;
    }
} 