/* ===========================
   URUSAYHUA · Prácticas
   (usa tokens de urusayhua.css)
   =========================== */

/* ---------- HERO ---------- */
.hero-practicas {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 7vw, 96px) 0;
    color: #fff;
}

.hero-practicas::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 400px at -10% -20%, rgba(255, 255, 255, .10), transparent 60%),
        linear-gradient(135deg, var(--c-primary-900, #122a63), var(--c-primary-700, #1b4fd6));
    z-index: 0;
}

.hero-practicas::after {
    content: "";
    position: absolute;
    right: -12%;
    top: -18%;
    width: 56vw;
    height: 56vw;
    min-width: 520px;
    min-height: 520px;
    background: radial-gradient(closest-side, rgba(255, 255, 255, .12), transparent 70%);
    filter: blur(6px);
    transform: rotate(12deg);
    z-index: 0;
}

.hero-practicas .container {
    position: relative;
    z-index: 1;
}

.hero-practicas .title {
    font-weight: 900;
    line-height: 1.05;
    font-size: clamp(32px, 4.8vw, 54px);
    margin: 0 0 .6rem;
}

.hero-practicas .lead {
    color: #eaf2ff;
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    max-width: 65ch;
    margin: 0 0 1rem;
}

.hero-practicas .actions {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}

.hero-practicas .hero-figure {
    padding: 16px;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
}

.hero-practicas .hero-figure img {
    display: block;
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
}

/* ---------- PASOS ---------- */
.steps-wrap {
    padding: clamp(36px, 5vw, 64px) 0;
    background: var(--bg, #f7f8fb);
}

.step-card {
    background: #fff;
    border: 1px solid rgba(20, 20, 43, .06);
    border-radius: 18px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 16px 44px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.step-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--c-primary-900, #122a63), var(--c-primary-700, #1b4fd6));
    color: #fff;
    margin-bottom: .35rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.step-card h5 {
    font-weight: 800;
    margin: 0;
}

.step-card p {
    margin: 0;
    color: #404a5a;
}


/* ---------- DESCARGAS ---------- */
.downloads-wrap {
    padding: clamp(24px, 4vw, 40px) 0;
}

/* Tarjetas más pequeñas */
.doc-card {
    background: #fff;
    border: 1px solid rgba(20, 20, 43, .06);
    border-radius: 12px;
    /* menos redondeo */
    padding: 14px 16px;
    /* menos padding */
    height: auto;
    /* altura automática */
    box-shadow: 0 20px 24px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    gap: .4rem;
    text-align: center;
    /* centrado más limpio */
    max-width: 350px;
    /* límite de ancho */
    margin: 0 auto;
    /* centra dentro de su col */
}

/* Icono más compacto */
.doc-card .doc-icon {
    font-size: 20px;
    color: var(--c-primary-700, #1b4fd6);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(27, 79, 214, .08);
    margin: 0 auto .25rem;
}

/* Títulos más pequeños */
.doc-card h5 {
    margin: .2rem 0 .1rem;
    font-weight: 700;
    font-size: .95rem;
    line-height: 1.2;
}

/* Descripción más breve */
.doc-card p {
    margin: 0 0 .35rem;
    font-size: .8rem;
    color: #4a5368;
}

/* Botón pequeño */
.doc-card .btn {
    padding: .28rem .5rem;
    font-size: .78rem;
    line-height: 1;
    border-radius: 999px;
    width: auto;
    margin: 0 auto;
}

/* ---------- TIMELINE ---------- */
.timeline-wrap {
    padding: clamp(36px, 5vw, 64px) 0;
    background: var(--bg, #f7f8fb);
}

.timeline {
    margin: 10px auto 0;
    padding: 0;
    list-style: none;
    position: relative;
    max-width: 880px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .02));
}

.timeline li {
    position: relative;
    padding-left: 56px;
    margin: 18px 0;
}

.timeline .dot {
    position: absolute;
    left: 10px;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary-900, #122a63), var(--c-primary-700, #0c1f49));
    box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
}

.time-card {
    background: #fff;
    border: 1px solid rgba(20, 20, 43, .06);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.time-card h6 {
    margin: 0 0 .25rem;
    font-weight: 800;
    color: #1a2140;
}

.time-card p {
    margin: 0;
    color: #4a5368;
}

/* ---------- FAQ ---------- */
.faq-wrap {
    padding: clamp(36px, 5vw, 64px) 0;
}

.faq-grid {
    max-width: 980px;
    margin-inline: auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(20, 20, 43, .06);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: #1b4fd6;
    list-style: none;
}

.faq-item[open] summary {
    color: var(--c-primary-700, #1b4fd6);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item .faq-body {
    padding-top: 8px;
    color: #47506a;
}

/* ---------- CTA FINAL ---------- */
.cta-final {
    padding: clamp(38px, 6vw, 74px) 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c-primary-900, #122a63), var(--c-primary-700, #1b4fd6));
    z-index: 0;
}

.cta-final .container {
    position: relative;
    z-index: 1;
}

.cta-final .title {
    font-weight: 600;
    margin: 0 0 .35rem;
}

.cta-final .lead {
    color: #f2f6ff;
    margin: 0 0 .8rem;
}

/* ---------- Helpers ---------- */
.section-title .kicker {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-primary-700, #1b4fd6);
    margin-bottom: .25rem;
}

.section-title .heading {
    font-size: clamp(1.9rem, 4.4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.05;
    margin: 0 0 .6rem;
}