.program-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.program-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../assets/img/header.jpg') center/cover;
    opacity: 0.15;
}
.program-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.program-header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}
.program-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffa100;
}
.info-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
}
.info-card h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ffa100;
    display: inline-block;
}
.info-list {
    list-style: none;
    padding: 0;
}
.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
}
.info-list li:last-child {
    border-bottom: none;
}
.info-list li i {
    color: #ffa100;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}
.info-list li .label {
    font-weight: 700;
    color: #1a1a2e;
    min-width: 150px;
}
.perfil-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}
.perfil-section h2 {
    color: #1a1a2e;
    font-size: 2rem;
    margin-bottom: 30px;
}
.ocupaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.ocupacion-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #ffa100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.ocupacion-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.requisitos-section {
    background: #fff;
    padding: 60px 0;
}
.requisitos-section h2 {
    color: #1a1a2e;
    font-size: 2rem;
    margin-bottom: 30px;
}
.requisito-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
}
.requisito-card h4 {
    color: #ffa100;
    margin-bottom: 15px;
}
.btn-inscribete {
    background: #1a1a2e;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn-inscribete:hover {
    background: #16213e;
    transform: scale(1.05);
    color: #fff;
}
.back-link {
    display: inline-flex;
    align-items: center;
    color: #ffa100;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.back-link:hover {
    color: #e49102;
    transform: translateX(-5px);
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    color: #1a1a2e;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ffa100;
    margin: 0 auto;
    border-radius: 2px;
}
