/* ===== HERO ===== */
.cal-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cal-hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.cal-hr {
    width: 120px;
    border: 2px solid #fff;
    opacity: 1;
    margin: 0;
}

.cal-hr.short {
    width: 60px;
}

.cal-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
}

.cal-hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 10px;
}

.cal-dot {
    width: 28px;
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.cal-dot.active {
    background: #fff;
}



/* ===== CARDS DE EVENTO ===== */
.cal-evento-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cal-evento-img-wrap {
    position: relative;
    flex-shrink: 0;
}

.cal-evento-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 20px;
}

.cal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

.cal-evento-body {
    flex: 1;
}

.cal-evento-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cal-evento-desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 6px;
    max-width: 350px;
}

.cal-evento-meta {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 4px;
}

/* Item oculto por filtro */
.cal-evento-item.hidden {
    display: none !important;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 576px) {
    .cal-evento-card {
        flex-direction: column;
    }

    .cal-evento-img {
        width: 100%;
        height: 200px;
    }

    .cal-filtros-bar {
        position: relative;
    }
}

@media (max-width: 768px) {
    .cal-evento-img {
        width: 130px;
        height: 130px;
    }

    .cal-evento-title {
        font-size: 1.1rem;
    }
}
