@charset "UTF-8";

:root {
    --g-site-primary: #098dcc;
    --g-site-primary-dark: #04527a;
    --g-site-accent: #0acb8e;
    --g-site-surface: #ffffff;
    --g-site-bg: #eef5f8;
    --g-site-text: #1f2937;
    --g-site-muted: #607086;
    --g-site-border: rgba(9, 141, 204, 0.12);
    --g-site-shadow: 0 24px 60px rgba(4, 36, 63, 0.12);
}

body {
    background:
        radial-gradient(circle at top left, rgba(10, 203, 142, 0.08), transparent 18%),
        radial-gradient(circle at right center, rgba(9, 141, 204, 0.1), transparent 24%),
        var(--g-site-bg);
    color: var(--g-site-text);
}

header.fixed {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

header.fixed .header-logo img {
    filter: drop-shadow(0 10px 16px rgba(4, 82, 122, 0.12));
}

.gradient-bg {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 22%),
        radial-gradient(circle at left bottom, rgba(10, 203, 142, 0.22), transparent 28%),
        linear-gradient(135deg, #083857 0%, #098dcc 48%, #0acb8e 100%);
}

.gradient-bg::before,
.gradient-bg::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.gradient-bg::before {
    width: 320px;
    height: 320px;
    top: -120px;
    right: -90px;
}

.gradient-bg::after {
    width: 220px;
    height: 220px;
    left: -70px;
    bottom: -60px;
}

.dashboard-preview {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.dashboard-preview img {
    min-height: 360px;
    object-fit: cover;
}

.card-hover {
    border: 1px solid rgba(9, 141, 204, 0.06);
    border-radius: 24px !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--g-site-shadow);
    border-color: var(--g-site-border);
}

.feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(9, 141, 204, 0.12), rgba(10, 203, 142, 0.12));
    border: 1px solid rgba(9, 141, 204, 0.08);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--g-site-primary), var(--g-site-accent));
}

section.bg-white,
section.bg-gray-50 {
    position: relative;
}

section.bg-white::before,
section.bg-gray-50::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 18%);
}

footer {
    background:
        radial-gradient(circle at top left, rgba(9, 141, 204, 0.18), transparent 20%),
        linear-gradient(180deg, #0d1f33 0%, #081522 100%) !important;
}

.infoSection {
    display: flex;
    margin: 10px;
    justify-content: center;
    border-radius: 24px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--g-site-shadow);
    border: 1px solid var(--g-site-border);
}

.articleSection {
    display: flex;
    text-align: center;
    flex-direction: column;
}

.infoTitle {
    font-size: 1.5em;
    margin: 20px auto;
    font-weight: bold;
    color: var(--g-site-primary);
}

.infoParagraph {
    max-width: 600px;
    margin-bottom: 10px;
    text-align: justify;
    color: var(--g-site-text);
    padding: 10px;
}

.infoCaption {
    margin-top: 1em;
    color: var(--g-site-primary-dark);
}
