main {
    padding-top: 1.25rem;
    display: flex;
    justify-content: center;
}

.seleccion {
    width: 20.625rem;
    margin-bottom: 4rem;
}

.title {
    width: 20.625rem;
}

.title h2 {
    /* fuente */
    font-size: 1.5rem;
}

.opcion {
    margin-top: 3rem;
}

.opcion img {
    width: 20.75rem;
    height: 11.625rem;
    border-radius: 0.625rem;
}

.opcion .direccion {
    position: absolute;
    top: 0;
    padding-top: 4rem;
    text-align: center;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #00000071;
    border-radius: 0.625rem;
    /* Fuente */
    font-size: 2rem;
    color: #FFF;
}

.opcion .direccionespecial {
    position: absolute;
    top: 0;
    padding-top: 2rem;
    text-align: center;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0.625rem;
    background-color: #00000071;
    /* Fuente */
    font-size: 2rem;
    color: #FFF;
}

.flexa {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #0540F2;
    border-radius: 100%;
    position: fixed;
    top: 0.8rem;
    left: 0.8rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.flexa .bi-arrow-left {
    font-size: 1.25rem;
    color: #FFFFFF;
}

@media (min-width: 1250px) {
    .opcion .campus {
        contain: content;
    }

    main {
        contain: content;
    }

    .flexa {
        display: flex;
    }

    .seleccion {
        width: 80%;
    }

    .title {
        width: 100%;
    }

    .title h2 {
        font-size: 2.25rem;
    }

    .text {
        font-size: 1.15rem;
    }

    .campus {
        width: 100%;
        height: 21.625rem;
    }

    .opcion .direccion {
        padding-top: 9rem;
    }

    .opcion .direccionespecial {
        padding-top: 7rem;
    }

    .opcion img {
        width: 100%;
        height: 100%;
    }

    .opcion p {
        font-size: 1.25rem;
    }
}


.row {
    gap: 2rem;
}

.card {
    width: 21.875rem;
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 53, 148, 0.08);
    border: 0.063rem solid #e8edf5;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    padding: 0;
}

.card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.625rem 1.75rem rgba(0, 53, 148, 0.18);
}

.card-img-top {
    width: 100%;
    height: 11.25rem;
}

/* NUEVO CODIGO */
.da-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #003594;
    text-transform: uppercase;
    letter-spacing: 0.063rem;
    margin: 0 0 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.da-section-title::after {
    content: '';
    flex: 1;
    height: 0.125rem;
    background: #e0e6f0;
}

.da-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0055c8;
    cursor: pointer;
}

.da-card-cta::after {
    content: '→';
}

.maps {
    width: 100%;
    height: 15.625rem;
}

@media (max-width: 1240px) {
    .da-section-title {
        font-size: 1.25rem;
    }
}