html, body {
    min-height: 100%;
}

body {
    background: #f3f6fb;
    margin: 0;
}

.header-diris {
    background: #ffffff;
    border-bottom: 4px solid #0096db;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.header-diris-content {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 14px 0;
}

.logo-diris {
    height: 82px;
    width: auto;
}

.header-titulo h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    color: #0f2d5c;
}

.header-titulo span {
    color: #5b6472;
    font-size: 15px;
    font-weight: 600;
}

.main-content {
    min-height: calc(100vh - 210px);
    padding-bottom: 30px;
}

.footer-diris {
    background: #49515f;
    color: #ffffff;
    text-align: center;
    padding: 14px 10px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 768px) {
    .header-diris-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .logo-diris {
        height: 70px;
    }

    .header-titulo h1 {
        font-size: 24px;
    }
}
