/* HERO PADRÃO MSAKAL */
.home-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: -30px;

    /* altura padrão */
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 40px 20px;

    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #3b82f6 100%);
    border-radius: 0 0 40px 40px;
}

/* LUZ SUPERIOR DIREITA */
.home-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -180px;
    right: -120px;
    filter: blur(10px);
}

/* LUZ INFERIOR ESQUERDA */
.home-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -120px;
    left: -60px;
}

.home-title {
    position: relative;
    z-index: 2;
    font-size: 2.7rem;
    font-weight: 700;
    color: #fff;
}

.home-text {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    margin-top: 15px;
}