body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f6fa;
    color: #2d3436;
    margin: 0;
    padding: 0;
}

.hero {
    background: linear-gradient(135deg, #6c5ce7, #0984e3);
    color: #fff;
    padding: 48px 16px;
    text-align: center;
}

.hero--compact {
    padding: 24px 16px;
}

.hero__inner {
    margin: 0 auto;
    max-width: 960px;
}

.hero__inner--row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hero__title {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.hero__subtitle {
    margin: 0;
    font-size: 1.1rem;
}

.hero__button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffeaa7;
    color: #2d3436;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.hero__button:hover,
.hero__button:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero__button--secondary {
    background-color: #dfe6e9;
}

.navbar-brand {
    font-weight: 600;
}

.section {
    padding: 32px 16px 64px;
}

.section__content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card--highlight {
    border-left: 6px solid #6c5ce7;
}

.card__text {
    margin: 8px 0;
}

.profile__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #dfe6e9;
    background-size: cover;
    background-position: center;
    margin-top: 16px;
    display: none;
}

.profile__avatar--visible {
    display: block;
}

.alert {
    padding: 16px;
    border-radius: 12px;
}

.alert-danger {
    background-color: #ffe6e6;
    color: #c0392b;
}

.d-none {
    display: none !important;
}

.footer {
    text-align: center;
    padding: 24px 16px;
    color: #636e72;
}

.card-kpi {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}
