@media (min-width: 768px) {
    .event-card .card > div {
        flex-direction: row !important;
        height: 280px !important;
    }

    .event-card .card > div > div:first-child {
        width: 30% !important;
        height: 100% !important;
    }

    .event-card .card > div > div:first-child img {
        border-radius: 18px 0 0 18px !important;
    }

    .event-card .card > div > div:last-child {
        width: 70% !important;
        padding: 1rem 1.5rem !important;
    }
}

body {
    background-color: rgba(0,0,0);
}

.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;

    background-size: cover;
    background-position: center;

    filter: blur(12px) brightness(0.7);
    z-index: -1;
}

.event-card {
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.15);
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    padding: 2.5rem 2rem 2rem 2rem;
    margin-bottom: 2rem;
    min-width: 320px;
}

.circle-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(135deg,#2f4858 60%,#007bff 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(47,72,88,0.12);

    flex-shrink: 0;
    margin-right: 1rem;
}

.circle-icon i {
    font-size: 25px;
    color: white;
}

.responsive-input {
    border-radius: 10px;
    border: solid 1px #d1d5db;
    background: #f8fafc;

    width: 100%;
    padding: 12px 20px;

    font-size: 1.1rem;
}

.form-label {
    font-weight: 500;
    color: #222;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.15);
}

.btn-primary,
.btn-outline-success {
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(90deg,#2f4858 60%,#007bff 100%);
    border: none;
}

.btn-outline-success {
    border-width: 2px;
}

.timing {
    background-color: hsla(0,0%,50%,.10);
    color: #2f4858;

    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .event-card {
        padding: 1.2rem 0.5rem;
    }

    .responsive-input {
        width: 95%;
        margin-left: 10px;
    }
}

section {
    padding: 30px 0 !important;
}

/* ELEMENTOS ESPECIALES DE LA PLANTILLA */
.label-strong{
    font-size: 1.1rem;
    font-weight: 500;
}
