.unimes-container-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    border-radius: 12px;
    box-sizing: border-box;
}

.unimes-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.unimes-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    color: #111111;
    margin: 0 0 0.5rem 0;
    letter-spacing: -1px;
}

.unimes-section-subtitle {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.unimes-wrapper {
    display: flex;
    width: 100%;
    gap: 1.5rem;
    box-sizing: border-box;
}

.unimes-card {
    flex: 1;
    width: 50%;
    min-height: 280px;
    position: relative;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 20px; /* matched the visual curve from screenshot */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.card-night {
    background: linear-gradient(135deg, #3A0562 0%, #7C3AED 50%, #4F46E5 100%);
    color: #ffffff;
}

.card-day {
    background: linear-gradient(135deg, #035280 0%, #0EA5E9 60%, #0284C7 100%);
    color: #ffffff;
}

/* Watermark styles (sun/moon SVGs in background) */
.watermark-svg {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 150px;
    height: 150px;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.card-icon-top {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.giant-heading-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 44px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    letter-spacing: -1px;
}

/* Beautiful glow effect specifically for the NIGHT text as seen in screenshot */
.glow-night {
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.4), 0 0 2px rgba(255, 255, 255, 0.8);
}

.date-time-box {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.description-text {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 2rem 0;
    color: #ffffff;
    opacity: 0.85;
    max-width: 90%;
}

.btn-participar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ffffff;
    background: transparent;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none !important;
    text-transform: uppercase;
    width: fit-content;
    margin-top: auto;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
}

.btn-participar:hover {
    background: #ffffff;
    color: #000000 !important;
    transform: translateY(-1px);
}

/* Responsive details */
@media (max-width: 767px) {
    .unimes-wrapper {
        flex-direction: column;
    }
    .unimes-card {
        width: 100%;
        min-height: auto;
    }
    .unimes-container-wrap {
        padding: 2rem 1rem;
    }
    .unimes-section-title {
        font-size: 32px;
    }
}
