/*==================================================
    SECCIÓN GENERAL
==================================================*/
.egresados-section {
    background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
    position: relative;
    overflow: hidden;
}

/*==================================================
    BOTONES PREMIUM
==================================================*/
.btn-premium {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #111, #2b2b2b);
    color: #fff !important;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 18px 42px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.btn-premium:hover {
    transform: translateY(-8px) scale(1.03);
    color: #fff !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
    background: linear-gradient(135deg, #000, #444);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transition: .8s;
}

.btn-premium:hover::before {
    left: 140%;
}

/*==================================================
    TEXTO
==================================================*/
.text-elegant {
    font-size: 1.18rem;
    line-height: 1.9;
    color: #2b2b2b;
    text-align: justify;
    margin-bottom: 25px;
}

/*==================================================
    CONTENEDOR DEL IFRAME
==================================================*/
.powerbi-container {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all .5s ease;
    overflow: hidden;
    position: relative;
}

.powerbi-container:hover {
    transform: translateY(-12px);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.22),
        0 10px 30px rgba(0, 0, 0, 0.12);
}

.powerbi-container iframe {
    border-radius: 20px;
}

/*==================================================
    ANIMACIÓN DE BORDE
	
	.powerbi-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(135deg, #000, #666, #000);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
==================================================*/


/*==================================================
    EFECTO FADE SCROLL
==================================================*/
.fade-section {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(45px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


