/* ═══════════════════════════════════════════════════
   home.css — estilos exclusivos de la página principal
   ═══════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────── */

.hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    height: calc(100vh - 73px); /* 73px = altura del header */
    min-height: 480px;
    flex-shrink: 0;
}

/* Foto (2/3) */
.hero__foto {
    position: relative;
    background-color: #6B93C7;
    background-image: linear-gradient(150deg, #4F7CB5 0%, #7aa8d4 55%, #b0cfe8 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero__foto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

/* Título en esquina superior derecha de la foto */
.hero__titulo-wrap {
    position: absolute;
    top: 2.5rem;
    right: 2.75rem;
    z-index: 1;
    text-align: right;
    max-width: 28rem;
}

.hero__titulo {
    font-size: clamp(1.6rem, 2.8vw, 2.6rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.22;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

/* Misión y visión (1/3) */
.hero__mision {
    background: var(--color-fondo);
    padding: 4rem 2.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    border-left: 1px solid rgba(107, 147, 199, 0.2);
    overflow-y: auto;
}

.hero__mision-titulo {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-acento);
    letter-spacing: 0.01em;
}

.hero__mision-texto {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 0.75rem;
}

/* ── Cursos ───────────────────────────────────── */

.cursos-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    padding: 3rem 3rem;
    border-top: 1px solid rgba(107, 147, 199, 0.2);
    background: var(--color-fondo);
    flex-shrink: 0;
}

.curso-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 2.25rem 2rem;
    text-decoration: none;
    color: var(--color-texto);
    background: #ffffff;
    border: 1.5px solid rgba(107, 147, 199, 0.3);
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(107, 147, 199, 0.08);
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.curso-card:hover {
    background: #f7f9fd;
    border-color: var(--color-acento);
    box-shadow: 0 6px 20px rgba(107, 147, 199, 0.18);
    transform: translateY(-3px);
}

.curso-card__icono {
    font-size: 2rem;
    line-height: 1;
}

.curso-card__nombre {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-texto);
}

.curso-card__desc {
    font-size: 0.93rem;
    line-height: 1.65;
    color: #666;
    flex: 1;
}

.curso-card__cta {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.55rem 1.25rem;
    background: var(--color-acento);
    color: #fff;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    align-self: flex-start;
    transition: background 0.15s;
}

.curso-card:hover .curso-card__cta {
    background: var(--color-acento-hover);
}

/* ── Footer ───────────────────────────────────── */

.footer {
    background: #1c1f2e;
    color: #c8d0e0;
    padding: 2.25rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.footer__marca {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.footer__contacto {
    font-size: 0.88rem;
    color: #8a96b0;
}

.footer__tyc-btn {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #c8d0e0;
    text-decoration: none;
    font-size: 0.88rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.footer__tyc-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

/* ── Responsive ───────────────────────────────── */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: 55vh auto;
        height: auto;
    }

    .hero__titulo-wrap {
        top: 1.5rem;
        right: 1.5rem;
    }

    .hero__mision {
        padding: 2.5rem 1.75rem;
        border-left: none;
        border-top: 1px solid rgba(107, 147, 199, 0.2);
    }

    .cursos-home {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
    }

    .curso-card {
        padding: 1.75rem 1.5rem;
    }
}

@media (max-width: 540px) {
    .home-body .header {
        grid-template-columns: auto 1fr auto;
    }

    .home-body .header__inicio {
        text-align: center;
        font-size: 0.95rem;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
    }
}
