.modal-body.aviso {
    flex: 1;
    background: #111;
    padding: 10px;
    height: 70vh;
}

.pdf-frame {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.pdf-frame iframe {
    width: 100%;
    height: 70vh;
    border: none;
}

.menu .list-group-item:first-child {
    border-start-start-radius: 12px !important;
    /* background-color: #142841; */
}

.menu .list-group-item:last-child {
    border-end-start-radius: 12px !important;
    /* background-color: #142841; */
}

.menu .list-group-item {
    transition: transform 0.3s ease;
}

.menu .list-group-item:hover {
    transform: scale(1.1);
}

.custom-switch {
    padding: .9rem 1rem;
    border-radius: 12px;
    transition: .2s ease;
}

.custom-control-label {
    cursor: pointer;
}

/* CARD */
.contact-card {
    border-radius: 14px;
    background: #f5f5f5;
    transition: all 0.25s ease;
    padding: 1rem;
    min-height: auto;
    max-width: 260px;
    margin: 0 auto;
}

.contact-card:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.215);
}

/* NOMBRE */
.contact-card p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* LINKS */
.contact-card a {
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    margin-bottom: 0.3rem;
    word-break: break-word;
}

/* ICONOS */
.contact-card i {
    font-size: 0.9rem;
    color: black
}

/* =========================
        MOBILE
        ========================= */
@media (max-width: 576px) {
    .contact-card {
        max-width: 100%;
        padding: 1rem;
    }

    .contact-card p {
        font-size: 1rem;
    }

    .contact-card a {
        font-size: 0.85rem;
    }
}

/* =========================
        TABLET
        ========================= */
@media (min-width: 577px) and (max-width: 991px) {

    .contact-card {
        max-width: 240px;
    }
}

/* =========================
        DESKTOP
        ========================= */
@media (min-width: 1200px) {

    .contact-card {
        max-width: 230px;
        padding: 0.9rem;
    }

    .contact-card p {
        font-size: 0.95rem;
    }

    .contact-card a {
        font-size: 0.78rem;
    }
}

.form-title-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 28px;

    background: #fff;

    color: var(--second);

    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .3px;

    border-radius: 999px;

    border: 2px solid rgba(26, 81, 144, .15);

    box-shadow:
        0 2px 6px rgba(0, 0, 0, .04),
        0 8px 24px rgba(0, 0, 0, .08);

    position: relative;
    z-index: 10;

    margin-bottom: -20px;

    transition: all .2s ease;
}

.form-title-modern:hover {
    transform: translateY(-1px);

    box-shadow:
        0 4px 10px rgba(0, 0, 0, .06),
        0 12px 28px rgba(0, 0, 0, .10);
}
