.coverflow-section {
    padding: 40px 0 50px;
    overflow: hidden;
}

/* Header: Título + Setas na mesma linha */
.coverflow-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 28px;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .coverflow-header {
        padding: 0 1rem;
    }
}

.coverflow-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    margin: 0;
}

.coverflow-header-nav {
    display: flex;
    gap: 10px;
}

.coverflow-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #e1e3ea;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5e6278;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.coverflow-nav-btn:hover {
    background: #181c32;
    border-color: #181c32;
    color: #fff;
    transform: scale(1.05);
}

.coverflow-nav-btn:active {
    transform: scale(0.95);
}

/* Swiper Container */
.coverflow-container {
    overflow: hidden;
    padding: 0;
}

.coverflow-swiper {
    width: 100%;
    padding: 20px 0 40px;
}

/* Each Slide */
.coverflow-swiper .swiper-slide {
    width: 55%;
    max-width: 750px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media (max-width: 768px) {
    .coverflow-swiper .swiper-slide {
        width: 85%;
    }
}

/* Image — full display, no crop */
.coverflow-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Active slide shadow */
.coverflow-swiper .swiper-slide-active img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.coverflow-swiper .swiper-slide-active:hover img {
    transform: scale(1.01);
}

/* Slide shadows from coverflow effect */
.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
    border-radius: 12px;
}

/* Pagination Dots */
.coverflow-pagination {
    text-align: center;
    margin-top: 12px;
}

.coverflow-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    opacity: 1;
    margin: 0 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.coverflow-pagination .swiper-pagination-bullet-active {
    background: var(--bs-primary, #3b82f6);
    width: 12px;
    height: 12px;
}

/* Event Info Below Carousel */
.coverflow-event-info {
    text-align: center;
    padding: 20px 16px 0;
    max-width: 700px;
    margin: 0 auto;
}

.coverflow-event-name {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 900;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s ease;
    line-height: 1.3;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.coverflow-event-name:hover {
    color: var(--bs-primary, #3b82f6);
}

.coverflow-event-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px 20px;
    color: #7e8299;
    font-size: 1rem;
}

.coverflow-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.coverflow-meta-item i {
    color: #a1a5b7;
    font-size: 1rem;
}




.coverflow-image-wrapper {
    position: relative;
    display: block;
    aspect-ratio: 2 / 1;
}

.coverflow-skeleton {
    position: absolute;
    inset: 0;
    border-radius: 12px;

    background: linear-gradient(
            90deg,
            #f1f3f5 25%,
            #e9ecef 50%,
            #f1f3f5 75%
    );

    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;

    z-index: 2;
}

.coverflow-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;

    opacity: 0;
    transition: opacity .3s ease;
}

.coverflow-image.loaded {
    opacity: 1;
}

@keyframes skeleton-loading {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}