/* ===== EVENT CARD ===== */
.event-card {
    width: 100%;
    overflow: hidden;
    background: transparent;
    position: relative;
    height: 200px;
    text-decoration: none;
    display: block;
}
.event-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.65) 100%);
    z-index: 2;  /* above image, below info bar */
}

.event-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-image {
    position: absolute;
    inset: 0;
    /*border-radius: 16px;*/
    overflow: hidden;
    z-index: 1;
}

.event-image::after {
    content: '';
    position: absolute;
    inset: 0;
    mix-blend-mode: color; /* this is the key — applies color monotone */
    opacity: 0.85;
    background: transparent;
    z-index: 2;
}

/* One rule per category */
.event-image.category-music::after    { background: #e63946; }
.event-image.category-sports::after   { background: #213eff; }
.event-image.category-art::after      { background: #e9c46a; }

.event-card-body {
    font-family: "Montserrat", sans-serif;;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 18px;
    z-index: 2;
}
.event-card-title {
    font-family: "Montserrat", sans-serif;;
    font-size: 18px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 6px;
}
.event-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.75);
}
.event-card-meta span {
    display: flex;
    align-items: center;
    gap: 3px;
}


.card-title {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.2;
}

.event-info-bar {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    padding: 6px 6px 6px 16px;
    background: #edede0;
    border: 2px solid #222;
    border-radius: 50px;
    z-index: 3;
}

.event-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    padding-left: 10px;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 56px;
    border: 2px solid #222;
    border-radius: 30px;
    flex-shrink: 0;
    margin: -8px;
}

.day {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.month {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.event-details {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px 16px 16px;
    font-size: 13px;
    color: #444;
}
.event-date-badge {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 2;
    text-align: center;
    line-height: 1;
}
.event-date-badge .day {
    font-family: "Montserrat", sans-serif;;
    font-size: 28px;
    color: var(--white);
    display: block;
}
.event-date-badge .month {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

.bg-red { background-color: #E12626; }
.bg-blue { background-color: #213eff; }
.bg-beige { background-color: #c9b89a; }

/* ===== EVENT HERO (for detail page) ===== */
.evento-hero {
    width: 100%;
    height: 300px;
    border-radius: 14px;
    border: 1px solid black;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    margin-bottom: 28px;
}

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

/* ===== EVENT HEADER ===== */
.evento-header {
    margin-bottom: 28px;
}

.evento-categoria {
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.evento-titulo {
    font-family: "Montserrat", sans-serif;;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.evento-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 16px;
}

.card-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.7) 1px, transparent 1px), radial-gradient(circle at 75% 65%, rgba(255,255,255,0.7) 1px, transparent 1px), radial-gradient(circle at 50% 80%, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 36px 36px;
}
.tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
.ico svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
}

/* ===== EVENT DETAIL PAGE ===== */
.evento-hero {
    width: 100%;
    height: 300px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    margin-bottom: 28px;
}

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

.evento-header {
    margin-bottom: 28px;
}

.evento-categoria {
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.evento-titulo {
    font-family: "Montserrat", sans-serif;;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.evento-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Badges */
.badge {
    font-size: 12px;
    padding: 4px 12px;
    display: inline-block;
    border: 1px solid var(--black);
    font-weight: 300;
}
.badge-tag {
    padding: 20px 20px;
    background: var(--card-bg);
    color: var(--muted);
}
.badge-preco {
    background: var(--black);
    color: var(--white);
}
.badge-gratuito {
    background: #eafaf1;
    color: #1a7a4a;
}

.event-image.category-cinema::after        { background: #E12626; }
.event-image.category-convívio::after      { background: #FFB121; }
.event-image.category-dança::after         { background: #4AB9FF; }
.event-image.category-desporto::after      { background: #8167DD; }
.event-image.category-exposições::after    { background: #FF5D12; }
.event-image.category-gastronomia::after   { background: #FBCA05; }
.event-image.category-infantil::after      { background: #FF63E0; }
.event-image.category-literatura::after    { background: #3B6F36; }
.event-image.category-mercados::after      { background: #4AB9FF; }
.event-image.category-música::after        { background: #213EFF; }
.event-image.category-natureza::after      { background: #56B85F; }
.event-image.category-outro::after         { background: #47BF97; }
.event-image.category-teatro::after        { background: #F39C12; }
.event-image.category-workshop::after      { background: #E25959; }

/* MOBILE STYLES (768px and below) */
@media (max-width: 768px) {
    .event-card-body {
        width: 100%;
        font-family: "Montserrat", sans-serif;;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 16px 18px;
        z-index: 2;
    }

}