/* INGRESANTES DETAIL PAGE */
/* Hero Section */
.ti-ing-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.ti-ing-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ti-ing-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.ti-ing-counter-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 15px;
}

.ti-ing-counter-badge span {
    font-size: 2rem;
    font-weight: 700;
}

/* Filter Section */
.ti-ing-filter-section {
    background: #f8f9fa;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Admission Section */
.ti-ing-admission-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.ti-ing-admission-header {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    padding: 18px 28px;
    border-radius: 16px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
}

.ti-ing-admission-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(108, 92, 231, 0.4);
}

.ti-ing-admission-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ti-ing-admission-header .ti-ing-toggle-icon {
    transition: transform 0.3s;
}

.ti-ing-admission-header.collapsed .ti-ing-toggle-icon {
    transform: rotate(-90deg);
}

/* ========================
   INGRESANTE CARD - DISEÑO MODERNO
   ======================== */
.ti-ing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.ti-ing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe, #74b9ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ti-ing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
}

.ti-ing-card:hover::before {
    opacity: 1;
}

/* Card Image Container */
.ti-ing-card-image-container {
    position: relative;
    background: linear-gradient(145deg, #f5f7fa 0%, #e4e8eb 100%);
    padding: 20px 20px 0 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 280px;
    overflow: hidden;
}

.ti-ing-card-image-container > img:first-of-type {
    width: 100%;
    max-width: 220px;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.ti-ing-card:hover .ti-ing-card-image-container > img:first-of-type {
    transform: scale(1.03);
}

/* University Logo */
.ti-ing-university-logo {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    object-fit: contain;
    z-index: 10;
    transition: transform 0.3s ease;
}

.ti-ing-card:hover .ti-ing-university-logo {
    transform: scale(1.1) rotate(5deg);
}

/* Ingresante Info */
.ti-ing-info {
    padding: 24px 20px;
    text-align: center;
    background: white;
}

.ti-ing-info .ti-ing-university-badge {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.ti-ing-info h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: #2d3436;
    font-size: 1.1rem;
    line-height: 1.3;
}

.ti-ing-info .ti-ing-position {
    color: #f39c12;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ti-ing-info .ti-ing-position i {
    color: #f1c40f;
}

.ti-ing-info .ti-ing-career {
    color: #636e72;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* No Results */
.ti-ing-no-results {
    text-align: center;
    padding: 80px 20px;
    color: #636e72;
}

.ti-ing-no-results i {
    font-size: 5rem;
    margin-bottom: 25px;
    color: #dfe6e9;
}

.ti-ing-no-results h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Fallback para cuando el carrusel no funciona */
.ti-carousel-fallback {
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.ti-carousel-fallback .imgbox {
    flex: 0 0 280px;
    max-width: 280px;
}

/* Responsive */
@media (max-width: 991px) {
    .ti-ing-card-image-container {
        min-height: 240px;
        padding: 15px 15px 0 15px;
    }

    .ti-ing-card-image-container > img:first-of-type {
        max-width: 180px;
        max-height: 220px;
    }
}

@media (max-width: 768px) {
    .ti-ing-hero {
        padding: 40px 0;
    }

    .ti-ing-hero h1 {
        font-size: 1.8rem;
    }

    .ti-ing-counter-badge span {
        font-size: 1.5rem;
    }

    .ti-ing-card-image-container {
        min-height: 220px;
        padding: 12px 12px 0 12px;
    }

    .ti-ing-card-image-container > img:first-of-type {
        max-width: 160px;
        max-height: 200px;
    }

    .ti-ing-university-logo {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
        border-radius: 10px;
        padding: 5px;
    }

    .ti-ing-admission-header {
        padding: 14px 18px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .ti-ing-admission-header h3 {
        font-size: 1.1rem;
    }

    .ti-ing-info {
        padding: 18px 15px;
    }

    .ti-ing-info h5 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .ti-ing-card {
        border-radius: 16px;
    }

    .ti-ing-card-image-container {
        min-height: 200px;
    }

    .ti-ing-card-image-container > img:first-of-type {
        max-width: 140px;
        max-height: 180px;
    }

    .ti-ing-info {
        padding: 16px 12px;
    }

    .ti-ing-info h5 {
        font-size: 0.95rem;
    }

    .ti-ing-info .ti-ing-university-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .ti-ing-info .ti-ing-career {
        font-size: 0.8rem;
    }

    .ti-ing-university-logo {
        width: 36px;
        height: 36px;
    }
}

