/* ══════════════════════════════════════
   Admisión
══════════════════════════════════════ */

/* Steps Section */
.adm-steps {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px;
}

.adm-steps .section-tag {
    display: inline-block;
}

.adm-steps h2 {
    font-size: 1.85rem;
    color: #07193d;
    margin: 8px 0 20px;
    line-height: 1.3;
}

.adm-steps > p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 800px;
}

.adm-steps h3 {
    font-size: 1.15rem;
    color: #07193d;
    margin: 32px 0 16px;
    font-weight: 600;
}

.adm-steps > div ul {
    list-style: none;
    margin: 24px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.adm-steps > div ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .95rem;
    color: #374151;
    background: white;
    border-radius: 10px;
    padding: 14px 20px;
    box-shadow: 0 1px 6px rgba(7, 25, 61, .05);
}

.adm-steps > div ul li i {
    color: #dca84d;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Steps List (ordered) */
.adm-steps > div ol {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.adm-steps > div ol li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: flex-start;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(7, 25, 61, .06);
    transition: all .3s ease;
    border-left: 4px solid #dca84d;
}

.adm-steps > div ol li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(7, 25, 61, .1);
    border-left-color: #ffd76d;
}

.adm-steps > div ol li span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #dca84d, #ffd76d);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.adm-steps > div ol li span:last-child {
    color: #2b3654;
    font-size: .95rem;
    line-height: 1.65;
    word-break: break-word;
}

.adm-steps > div ol li a {
    color: #0c2b66;
    font-weight: 600;
    text-decoration: none;
    transition: color .25s;
}

.adm-steps > div ol li a:hover {
    color: #dca84d;
}

.adm-steps > div ol li strong {
    font-weight: 700;
    color: #07193d;
}

/* Docs required */
.adm-docs {
    background: #f5f7fc;
    padding: 80px;
}

.adm-docs h2 {
    font-size: 1.75rem;
    color: #07193d;
    margin: 0 0 32px;
    font-weight: 600;
}

.adm-docs__list {
    list-style: none;
    max-width: 700px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.adm-docs__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
    color: #374151;
    background: white;
    border-radius: 10px;
    padding: 14px 20px;
    box-shadow: 0 1px 6px rgba(7, 25, 61, .05);
}

.adm-docs__list li i {
    color: #dca84d;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* CTA */
.adm-cta {
    background: linear-gradient(135deg, #07193d, #0c2b66, #09142c);
    padding: 80px;
}

.adm-cta__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(220, 168, 77, .25);
    border-radius: 16px;
    padding: 48px 40px;
    transition: all .3s ease;
}

.adm-cta__inner:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(220, 168, 77, .4);
}

.adm-cta__text h3 {
    font-size: 1.3rem;
    color: white;
    margin: 0 0 8px;
    font-weight: 700;
}

.adm-cta__text p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
}

.adm-cta__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, #dca84d, #ffd76d);
    color: #07193d;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: all .25s;
}

.adm-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 168, 77, .4);
}

/* Responsive */
@media (max-width: 1100px) {
    .adm-steps,
    .adm-docs,
    .adm-cta {
        padding: 64px 40px;
    }
}

@media (max-width: 900px) {
    .adm-steps,
    .adm-docs,
    .adm-cta {
        padding: 56px 24px;
    }

    .adm-cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .adm-cta__text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .adm-steps h2,
    .adm-docs h2 {
        font-size: 1.5rem;
    }

    .adm-steps > div ol li {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .adm-steps > div ol li span:first-child {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .page-hero {
        height: 300px;
    }

    .page-hero__content h1 {
        font-size: 1.6rem;
    }

    .page-hero__content p {
        font-size: .95rem;
    }

    .adm-steps h2,
    .adm-docs h2 {
        font-size: 1.3rem;
    }

    .adm-steps > div ol li {
        padding: 16px;
    }

    .adm-steps > div ol li span:first-child {
        min-width: 36px;
        width: 36px;
        height: 36px;
    }

    .adm-cta__inner {
        padding: 24px 16px;
    }
}
