.section-eventos {
    margin-top: 144px;
    background-color: #f8f9fa;
}

.section-eventos h2 {
    color: #333;
    font-size: 2rem;
}

/* Slider Navigation Buttons */
.btn-slider-prev,
.btn-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: transparent;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-slider-prev {
    left: 0;
}

.btn-slider-next {
    right: 0;
}

.btn-slider-prev:hover,
.btn-slider-next:hover {
    color: #000A;
}

.btn-slider-prev:disabled,
.btn-slider-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Evento Card */
.evento-card {
    cursor: pointer;
    max-width: 350px;
    min-height: 408px;
    padding-right: 0 !important;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
}

.evento-card-image {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 200px;
    overflow: hidden;
}

.evento-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evento-card-body {
    padding: 20px;
}

.evento-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.evento-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    min-height: 50px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: auto;
}

.evento-preco {
    display: flex;
    flex-direction: column;
}

.preco-valor {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
}

.btn-comprar {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-comprar:hover {
    background-color: #218838;
    color: #fff;
}

.btn-ver-todos {
    padding: 8px 12px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* Tiny Slider Customization */
.tns-nav {
    text-align: center;
    margin-top: 20px;
}

.tns-nav button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.tns-nav button.tns-nav-active {
    background-color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .section-eventos {
        margin-top: 10px;
    }
    .carousel-eventos {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .btn-slider-prev,
    .btn-slider-next {
        width: 40px;
        height: 40px;
    }

    .btn-slider-prev {
        left: -5px;
    }

    .btn-slider-next {
        right: -5px;
    }

    .evento-card-image {
        height: 200px;
    }
}