.manual-carousel-section {
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
    background: #171717;
    text-align: center;
    position: relative;
}
.carousel-title {
    margin-bottom: 30px;
    font-size: 45px;
    color: white;
}
.carousel-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.carousel-track {
    display: flex;
    transition: transform 0.4s ease; 
}
.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    justify-content: center;
}
.my-event-card {
    display: block;
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 16px; 
    overflow: hidden;
    text-decoration: none;
    color: #333;
    padding: 20px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.my-event-image {
    width: 365px;
    height: 255px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
}
.my-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}
.my-event-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}
.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff; 
    width: 60px;
    height: 80px;
    position: relative;
    box-sizing: border-box;
    padding: 4px 0;
}
.event-date .weekday {
    font-size: 12px;
    text-transform: uppercase;
    color: #333;
    font-weight: bold;
    margin-bottom: -2px;
}
.event-date .day {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}
.event-date .month {
    font-size: 12px;
    color: #fff;
    width: 100%;
    height: 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: bold;
}
.month.active {
    background-color: #17C345;
}
.month.indisponível {
    background-color: #A1A1A1;
}
.month.noticket {
    background-color: #E4362A;
}
.event-mid {
    flex: 1;
    text-align: left;
}
.event-mid-top {
    font-size: 14px;
    color: #444;
    margin: 0 0 4px 0;
    font-weight: 400;
}
.event-name {
    font-size: 18px;
    margin: 0 0 4px 0;
    font-weight: bold;
    color: #333;
}
.event-mid-bottom {
    font-size: 13px;
    color: #666;
    margin: 0;
}
.status-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.my-event-status {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    color: #fff;
    background-color: #333;
}
.my-event-status.active {
    background-color: #17C345;
}
.my-event-status.indisponível {
    background-color: #A1A1A1;
}
.my-event-status.noticket {
    background-color: #E4362A;
}
.carousel-btn {
    position: static;
    margin: 20px 5px 0 5px;
    padding: 10px 20px;
    background: #333;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}
.carousel-btn:hover {
    background: #555;
}
.see-more-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333; 
    color: #fff;
    padding: 20px;
    border-radius: 16px;
}
.see-more-text h3 {
    font-size: 20px;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
}

@media (min-width: 1320px) {
    .carousel-container {
        max-width: 1600px;
    }
    .carousel-slide {
        min-width: calc(100% / 3);
    }
}

@media (max-width: 900px) {
    .my-event-card {
        max-width: 450px;
    }
    .my-event-image {
        width: 340px;
        height: 240px;
    }
    .event-date {
        width: 55px;
        height: 75px;
    }
    .event-date .day {
        font-size: 22px;
    }
    .event-mid-top,
    .event-mid-bottom {
        font-size: 12px;
    }
    .event-name {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .my-event-card {
        max-width: 400px;
    }
    .my-event-image {
        width: 320px;
        height: 220px;
    }
    .event-date {
        width: 50px;
        height: 70px;
    }
    .event-date .day {
        font-size: 20px;
    }
    .event-mid-top,
    .event-mid-bottom {
        font-size: 12px;
    }
    .event-name {
        font-size: 15px;
    }
    .my-event-status {
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media (max-width: 600px) {
    .my-event-card {
        max-width: 360px;
        padding: 15px;
    }
    .my-event-image {
        width: 300px;
        height: 200px;
        margin-bottom: 15px;
    }
    .event-date {
        width: 45px;
        height: 65px;
    }
    .event-date .day {
        font-size: 18px;
    }
    .event-mid-top,
    .event-mid-bottom {
        font-size: 11px;
    }
    .event-name {
        font-size: 14px;
    }
    .my-event-status {
        font-size: 10px;
    }
    .see-more-text h3 {
        font-size: 16px;
    }
    .carousel-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .my-event-card {
        max-width: 320px;
        padding: 12px;
    }
    .my-event-image {
        width: 280px;
        height: 180px;
    }
    .event-date {
        width: 40px;
        height: 60px;
    }
    .event-date .weekday {
        margin-bottom: -4px;
        font-size: 10px;
    }
    .event-date .day {
        font-size: 16px;
    }
    .event-mid-top,
    .event-mid-bottom {
        font-size: 10px;
    }
    .event-name {
        font-size: 13px;
    }
    .my-event-status {
        font-size: 9px;
        padding: 4px 8px;
    }
    .carousel-title {
        font-size: 30px;
    }
}

@media (max-width: 360px) {
    .my-event-card {
        max-width: 280px;
        padding: 10px;
    }
    .my-event-image {
        width: 240px;
        height: 160px;
    }
    .event-date {
        width: 36px;
        height: 55px;
    }
    .event-date .weekday {
        margin-bottom: -4px;
        font-size: 10px;
    }
    .event-date .day {
        margin-bottom: -8px;
        font-size: 10px;
    }
    .event-date .month {
        font-size: 10px;
    }
    .event-mid-top,
    .event-mid-bottom {
        font-size: 9px;
    }
    .event-name {
        font-size: 12px;
    }
    .my-event-status {
        font-size: 8px;
        padding: 3px 6px;
    }
    .see-more-text h3 {
        font-size: 14px;
    }
    .carousel-title {
        font-size: 24px;
    }
}