 /* =========================================
           ESTILOS PERFIL DE EGRESO
           ========================================= */
 .specialty-content {
     padding: 80px 0;
     background-color: #fff;
 }

 .divider-left {
     height: 4px;
     width: 50px;
     background-color: var(--u-dorado);
     border-radius: 2px;
     margin-top: 10px;
     margin-bottom: 25px;
 }

 .skill-card {
     display: flex;
     align-items: flex-start;
     background-color: #fff;
     border: 1px solid #e0e0e0;
     border-radius: 12px;
     border-left: 5px solid var(--u-verde-profundo);
     padding: 30px;
     margin-bottom: 25px;
     transition: transform 0.3s, box-shadow 0.3s;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
 }

 .skill-card:hover {
     transform: translateX(10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
     border-left-color: var(--u-dorado);
 }

 .skill-icon {
     font-size: 2rem;
     color: var(--u-verde-profundo);
     margin-right: 25px;
     min-width: 50px;
     text-align: center;
 }

 .skill-text strong {
     display: block;
     color: #222;
     font-family: 'Merriweather', serif;
     font-size: 1.15rem;
     margin-bottom: 10px;
 }

 .skill-text p {
     margin: 0;
     font-size: 0.95rem;
     color: #555;
     line-height: 1.7;
 }

 /* Sidebar Ficha */
 .sidebar-box {
     background-color: #fff;
     padding: 30px;
     border: 1px solid #eee;
     border-top: none;
     border-radius: 0 0 8px 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }

 .specialty-sidebar .img-fluid {
     width: 100%;
     height: 250px;
     object-fit: cover;
     border-radius: 8px 8px 0 0;
 }

 .icon-circle {
     width: 45px;
     height: 45px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     background-color: var(--u-gris-claro);
     color: var(--u-verde-profundo);
     flex-shrink: 0;
     margin-right: 15px;
 }

 /* =========================================
           NUEVAS SECCIONES: INFRAESTRUCTURA Y CAMPO LABORAL
           ========================================= */
 .infra-section {
     background-color: #f8f9fa;
     padding: 80px 0;
 }

 .infra-img-wrapper {
     position: relative;
     overflow: hidden;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     height: 100%;
     min-height: 300px;
 }

 .infra-img-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s;
 }

 .infra-img-wrapper:hover img {
     transform: scale(1.05);
 }

 .infra-badge {
     position: absolute;
     top: 20px;
     left: 20px;
     background-color: var(--u-dorado);
     color: black;
     padding: 5px 15px;
     font-weight: bold;
     text-transform: uppercase;
     font-size: 0.8rem;
     border-radius: 20px;
 }

 .laboral-section {
     padding: 80px 0;
     background-color: #fff;
 }

 .laboral-card {
     text-align: center;
     padding: 40px 20px;
     border: 1px solid #eee;
     border-radius: 8px;
     transition: all 0.3s;
     background: white;
     height: 100%;
 }

 .laboral-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
     border-color: var(--u-dorado);
 }

 .laboral-icon {
     font-size: 3rem;
     color: var(--u-verde-medio);
     margin-bottom: 20px;
 }

 .laboral-card h5 {
     font-family: 'Merriweather', serif;
     font-weight: 700;
     color: var(--u-texto);
     margin-bottom: 15px;
 }

 .laboral-card p {
     font-size: 0.9rem;
     color: #666;
     line-height: 1.6;
 }

 .tech-banner {
     background-color: var(--u-verde-profundo);
     padding: 40px 0;
     color: white;
     text-align: center;
 }

 .tech-icon {
     font-size: 3rem;
     margin: 0 30px;
     opacity: 0.7;
     transition: opacity 0.3s;
 }

 .tech-icon:hover {
     opacity: 1;
     color: var(--u-dorado);
 }

 /* Ajustes Móvil */
 @media (max-width: 991px) {

     .specialty-content,
     .infra-section,
     .laboral-section {
         padding: 50px 20px;
     }

     .specialty-sidebar.sticky-top {
         position: relative !important;
         top: 0 !important;
         margin-top: 40px;
     }

     .skill-card {
         padding: 20px;
         flex-direction: column;
     }

     .skill-icon {
         margin-bottom: 15px;
     }

     .tech-icon {
         font-size: 2rem;
         margin: 0 15px;
     }
 }