/* *********************************************************** */
/* Desarrollado por Herlin R. Espinosa G. (herlin25@gmail.com) */
/* *********************************************************** */

/* Hero de encabezado de página, reutilizable en cualquier módulo
   (mismo lenguaje visual del home/reportes: navy -> azul). El subtítulo
   (.page-hero-subtitle) y el arte (.page-hero-art) son opcionales. */
:root {
    --page-hero-navy: #0b2545;
    --page-hero-blue: #1d63b3;
    --page-hero-shadow: 0 2px 10px rgba(11, 37, 69, .06);
}

.page-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 1.5rem;
    margin-top: .5rem;
    margin-bottom: .6rem;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(120deg, var(--page-hero-navy) 0%, var(--page-hero-blue) 100%);
    box-shadow: var(--page-hero-shadow);
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    pointer-events: none;
}

.page-hero::before {
    width: 220px;
    height: 220px;
    top: -90px;
    right: -40px;
}

.page-hero::after {
    width: 140px;
    height: 140px;
    bottom: -70px;
    right: 120px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-hero-subtitle {
    margin: .25rem 0 0;
    font-size: .9rem;
    opacity: .9;
}

.page-hero-art {
    position: relative;
    z-index: 1;
    font-size: 2.6rem;
    line-height: 1;
    opacity: .22;
    flex: 0 0 auto;
}

@media (max-width: 575.98px) {
    .page-hero {
        padding: .75rem 1.15rem;
        border-radius: 12px;
    }

    .page-hero-title {
        font-size: 1.2rem;
    }

    .page-hero-art {
        font-size: 2.1rem;
    }
}
