/* =====================================================
   SECTION CALENDARIO + MATRÍCULAS MODERNA
===================================================== */

.coming-soon {

    position: relative;

    padding: 90px 0 !important;

    overflow: hidden;

}

/* =====================================================
   OVERLAY MÁS SUAVE
===================================================== */

.coming-soon::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(0,35,80,0.68),
            rgba(0,52,120,0.62)
        );

    z-index: 1;

}

/* =====================================================
   CONTENIDO SOBRE OVERLAY
===================================================== */

.coming-soon .container {

    position: relative;
    z-index: 2;

}

/* =====================================================
   COLUMNAS
===================================================== */

.coming-soon .col-md-6 {

    margin-bottom: 25px;

}

/* =====================================================
   CARDS INTERNOS
===================================================== */

.coming-soon .continer,
.coming-soon .right-content {

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 18px;

    padding: 38px;

    backdrop-filter: blur(4px);

    transition: all 0.3s ease;

    min-height: 420px;

    max-width: 520px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

/* HOVER */

.coming-soon .continer:hover,
.coming-soon .right-content:hover {

    transform: translateY(-4px);

    background:
        rgba(255,255,255,0.07);

}

/* =====================================================
   TEXTOS
===================================================== */

.coming-soon p {

    font-size: 16px !important;

    line-height: 1.9 !important;

    color: rgba(255,255,255,0.94) !important;

    margin-bottom: 0;

}

/* TÍTULOS */

.coming-soon p strong {

    display: block;

    color: #ffffff;

    font-size: 28px !important;

    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 14px;

}

/* =====================================================
   BOTONES
===================================================== */

.coming-soon .main-button a,
.coming-soon button.button {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #0d63c9,
            #004694
        ) !important;

    color: #fff !important;

    border: none !important;

    border-radius: 10px;

    padding: 13px 26px !important;

    font-size: 13px !important;
    font-weight: 700;

    letter-spacing: 0.4px;

    text-transform: uppercase;

    transition: all 0.3s ease;

    box-shadow:
        0 10px 24px rgba(0,70,148,0.30);

}

/* HOVER BOTONES */

.coming-soon .main-button a:hover,
.coming-soon button.button:hover {

    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            #1976e3,
            #0052b8
        ) !important;

    box-shadow:
        0 14px 30px rgba(0,70,148,0.40);

}

/* =====================================================
   FORMULARIO
===================================================== */

.coming-soon form {

    margin-top: 35px;

}

/* =====================================================
   ESPACIADO
===================================================== */

.coming-soon fieldset {

    margin-top: 22px;

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .coming-soon {

        padding: 70px 0 !important;

    }

    .coming-soon .continer,
    .coming-soon .right-content {

        padding: 28px;

        min-height: auto;

        max-width: 100%;

    }

    .coming-soon p {

        font-size: 14px !important;

    }

    .coming-soon p strong {

        font-size: 22px !important;

    }

}