/* Header */
.site-header {
    background: var(--ipg-white);
    color: var(--ipg-black);
    font-family: var(--font-primary);
}

.site-header__notice {
    background: var(--ipg-teal);
    color: var(--ipg-white);
    height: 68px;
    display: flex;
    align-items: center;
}

.site-header__notice .container {
    min-height: 48px;
}

.site-header__notice-text {
    font-size: 0.875rem;
    line-height: 1.2;
}

.site-header__notice-text i {
    font-size: 1rem;
}

.site-header__notice-button {
    width: 187px;
    height: 40px;
    justify-content: center;
    border: 0;
    border-radius: 5px;
    background: var(--ipg-navy);
    color: var(--ipg-white);
    font-size: 0.8125rem;
    font-weight: 700;
}

.site-header__notice-button:hover,
.site-header__notice-button:focus {
    background: #142a49;
    color: var(--ipg-white);
}

.site-header__navbar {
    min-height: 118px;
    background: var(--ipg-white);
    box-shadow: 0 14px 24px rgba(26, 26, 26, 0.06);
}

.site-header__brand img {
    width: 125px;
    max-height: 40px;
    object-fit: contain;
}

.site-header__nav {
    gap: 16px;
}

.site-header__nav .nav-link {
    color: var(--ipg-black);
    font-size: 0.8125rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
    font-family: var(--font-open-sans);
}

.site-header__nav .nav-link:hover,
.site-header__nav .nav-link:focus,
.site-header__nav .nav-link.active {
    color: var(--ipg-teal);
}

.site-header__login-button {
    min-width: 100px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 5px;
    background: var(--ipg-orange);
    color: var(--ipg-white);
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 8px 16px rgba(255, 132, 0, 0.24);
}

.site-header__login-button:hover,
.site-header__login-button:focus {
    background: #e87500;
    color: var(--ipg-white);
}

.site-header__outline-button {
    border-color: var(--ipg-navy);
    color: var(--ipg-navy);
}

.site-header__logout {
    color: var(--ipg-navy);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
}

.site-header__logout:hover,
.site-header__logout:focus {
    color: var(--ipg-orange);
}

.site-header__toggler {
    border-color: rgba(27, 54, 93, 0.25);
}

/* Footer */
.site-footer {
    border-top: 6px solid var(--ipg-orange-line);
    background: var(--ipg-navy);
    color: var(--ipg-footer-text);
    font-family: var(--font-primary);
}

.site-footer__top {
    min-height: 334px;
    padding-top: 70px;
    padding-bottom: 56px;
}

.site-footer__brand img {
    width: 170px;
    max-width: 100%;
    height: auto;
}

.site-footer__social {
    margin-top: 38px;
}

.site-footer__social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ipg-social-bg);
    color: var(--ipg-white);
    text-decoration: none;
}

.site-footer__social a:hover,
.site-footer__social a:focus {
    background: var(--ipg-footer-accent);
    color: var(--ipg-navy);
}

.site-footer__social img {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
}

.site-footer__title {
    color: var(--ipg-footer-accent);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.site-footer__title span {
    margin-right: 5px;
}

.site-footer__link {
    color: var(--ipg-footer-text);
    font-size: 0.8125rem;
    line-height: 1.4;
    text-decoration: none;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: var(--ipg-footer-accent);
}

.site-footer__bottom {
    min-height: 79px;
    display: flex;
    align-items: center;
    background: var(--ipg-footer-bottom);
}

.site-footer__copyright {
    color: var(--ipg-footer-text);
    font-size: 0.75rem;
    line-height: 1.3;
}

.site-footer__system-link {
    color: var(--ipg-footer-text);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
}

.site-footer__system-link:hover,
.site-footer__system-link:focus {
    color: var(--ipg-white);
}

/* Login */
.login-page {
    min-height: 700px;
    background: #f7f7f8;
    color: var(--ipg-black);
    font-family: var(--font-primary);
    padding-top: 88px;
    padding-bottom: 120px;
}

.login-page__heading {
    margin-bottom: 24px;
}

.login-page__icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e3e7ed;
    color: var(--ipg-navy);
}

.login-page__icon-wrap i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    line-height: 1;
}

.login-page__title {
    color: var(--ipg-navy);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.login-page__subtitle {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.4;
}

.login-card {
    gap: 24px;
    padding: 24px;
    border-radius: 12px;
    background: var(--ipg-white);
    box-shadow:
        0 4px 6px -4px #0000001a,
        0 10px 15px -3px #0000001a;
}

.login-card__label {
    color: var(--ipg-black);
    font-size: 0.875rem;
    line-height: 1.4;
}

.login-card__input-wrap {
    position: relative;
}

.login-card__input-wrap i {
    position: absolute;
    top: 50%;
    left: 16px;
    color: var(--ipg-black);
    font-size: 1rem;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.login-card__input {
    min-height: 48px;
    padding: 12px 12px 12px 52px;
    border: 0.67px solid #f5f5f5;
    border-radius: 8px;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.4;
}

.login-card__input::placeholder {
    color: #6c757d;
    text-transform: lowercase;
}

.login-card__input:focus {
    border-color: var(--ipg-navy);
    box-shadow: 0 0 0 0.15rem rgba(27, 54, 93, 0.12);
}

.login-card__submit {
    min-height: 48px;
    padding: 12px 168px;
    border: 0;
    border-radius: 8px;
    background: var(--ipg-navy);
    color: var(--ipg-white);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    box-shadow: 0 8px 16px rgba(27, 54, 93, 0.2);
}

.login-card__submit:hover,
.login-card__submit:focus {
    background: #142a49;
    color: var(--ipg-white);
}

.login-card__signup,
.login-page__terms {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.45;
}

.login-card__signup {
    color: var(--ipg-black);
}

.login-card__signup a,
.login-page__terms a {
    color: var(--ipg-teal);
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.login-card__signup a:hover,
.login-card__signup a:focus,
.login-page__terms a:hover,
.login-page__terms a:focus {
    color: var(--ipg-navy);
    text-decoration: underline;
}

.login-page__terms {
    max-width: 450px;
    margin-top: 24px;
}

/* Page 404 */
:root {
    --ipg-navy: #1b365d;
    --ipg-teal: #00b8a9;
    --ipg-black: #1a1a1a;
    --ipg-white: #fff;
    --ipg-footer-accent: #6ee9f4;
    --ipg-footer-bottom: #3c6baf;
    --ipg-social-bg: #314a6d;
    --ipg-orange-line: #ff8200;
    --ipg-footer-text: #ffffffb2;
    --ipg-muted: #6c757d;
    --ipg-orange: #ff8400;
    --ipg-number: #e3e7ed;
    --ipg-bg: #f7f7f8;
    --font-dosis: "Dosis", Arial, Helvetica, sans-serif;
    --font-open-sans: "Open Sans", Arial, Helvetica, sans-serif;
    --font-primary: var(--font-dosis);
}

.error-page {
    min-height: 64vh;
    background: var(--ipg-bg);
    color: var(--ipg-navy);
    font-family: var(--font-primary);
    padding-top: 84px;
    padding-bottom: 84px;
}

.font-dosis {
    font-family: var(--font-dosis);
}

.font-open-sans {
    font-family: var(--font-open-sans);
}

.error-page__code {
    color: var(--ipg-number);
    font-size: clamp(112px, 18vw, 256px);
    font-weight: 700;
    line-height: 0.8;
}

.error-page__title {
    color: var(--ipg-navy);
    font-size: 3rem;
    font-weight: 700;
}

.error-page__text,
.error-page__support {
    color: var(--ipg-muted);
    font-size: 1.125rem;
}

.error-page__text--intro {
    max-width: 370px;
}

.error-page__button {
    min-width: 154px;
    height: 60px;
    --bs-btn-border-radius: 5px;
    --bs-btn-font-size: 1rem;
    padding: 16px 31px;
}

.btn-ipg-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--ipg-orange);
    --bs-btn-border-color: var(--ipg-orange);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #e87500;
    --bs-btn-hover-border-color: #e87500;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #cf6a00;
    --bs-btn-active-border-color: #cf6a00;
    box-shadow: 0 8px 16px rgba(255, 130, 0, 0.24);
}

.btn-ipg-outline {
    --bs-btn-color: var(--ipg-navy);
    --bs-btn-border-color: var(--ipg-navy);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--ipg-navy);
    --bs-btn-hover-border-color: var(--ipg-navy);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--ipg-navy);
    --bs-btn-active-border-color: var(--ipg-navy);
}

.error-page__code {
 font-family: var(--font-open-sans);
}

.awards-page {
    min-height: 100vh;
    background: #f5f5f5;
}

.awards-page__content {
    width: 100%;
    max-width: 842px;
    padding: 24px;
}

.awards-page__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.awards-page__header h1 {
    margin: 0;
    color: #1b365d;
    font-family: var(--font-dosis);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 2.211rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.awards-page__header p,
.awards-card p,
.awards-table__row,
.awards-status {
    color: #6c757d;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.191rem;
}

.awards-page__header p,
.awards-card p {
    margin: 0;
}

.awards-card {
    width: 100%;
    border-radius: 16px;
    background: #ffffff;
    box-shadow:
        0 1px 2px -1px #0000001a,
        0 1px 3px 0 #0000001a;
}

.awards-card--instructions {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.awards-card h2 {
    margin: 0;
    color: #1a1a1a;
    font-family: var(--font-dosis);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.896rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.awards-alert {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 0.67px solid rgba(179, 227, 225, 0.1);
    border-radius: 8px;
    background: rgba(179, 227, 225, 0.1);
}

.awards-alert > i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    color: #00b8a9;
    font-size: 1.75rem;
    line-height: 1;
}

.awards-alert h3 {
    margin: 0 0 8px;
    color: #00b8a9;
    font-family: var(--font-dosis);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.75rem;
    letter-spacing: 0;
    text-transform: none;
}

.awards-card--table {
    overflow: hidden;
}

.awards-card__heading {
    border-bottom: 0.67px solid #f5f5f5;
}

.awards-table {
    width: 100%;
    overflow: hidden;
}

.awards-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    line-height: 1.25rem;
}

.awards-status i {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 16px;
    color: #1b365d;
    font-size: 1rem;
    line-height: 1;
}

.awards-status--pending i {
    color: #ff8400;
}

.awards-status strong {
    color: #1a1a1a;
    font: inherit;
    font-weight: 700;
}

.awards-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 8px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    appearance: none;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25rem;
    text-align: center;
    text-decoration: none;
}

.awards-action:hover,
.awards-action:focus {
    color: #ffffff;
}

.awards-action--edit {
    min-width: 58px;
    background: #1b365d;
}

.awards-action--subscribe {
    min-width: 82px;
    background: #ff8400;
}

.awards-action--view {
    min-width: 85px;
    background: #f5f5f5;
    color: #1a1a1a;
}

.awards-action--view:hover,
.awards-action--view:focus {
    color: #1a1a1a;
}

.awards-table .table {
    color: #1a1a1a;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.awards-table thead {
    background: #f5f5f5;
}

.awards-table th {
    padding: 16px 24px;
    border: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.awards-table td {
    height: 68px;
    padding: 16px 24px;
    border-bottom: 0.67px solid #f5f5f5;
    color: #1a1a1a;
    vertical-align: middle;
}

.awards-table tbody tr:last-child td {
    border-bottom: 0;
}

.awards-list__item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    border: 0.67px solid #f5f5f5;
    border-radius: 12px;
    background: #ffffff;
}

.awards-list__item strong {
    display: block;
    color: #1a1a1a;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.awards-list__label {
    display: block;
    margin-bottom: 2px;
    color: #6c757d;
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1rem;
}

.subscription-modal {
    font-family: var(--font-open-sans);
}

.subscription-modal__dialog {
    max-width: 672px;
}

.subscription-modal__content {
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 25px 50px -12px #00000040;
}

.subscription-modal__header {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 32px;
    border-bottom: 0.67px solid #f5f5f5;
}

.subscription-modal__header .modal-title {
    color: #1b365d;
    font-family: var(--font-dosis);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    text-transform: uppercase;
}

.subscription-modal__close {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1;
    margin-left: auto;
}

.subscription-modal__close:hover,
.subscription-modal__close:focus {
    background: #f5f5f5;
}

.subscription-modal__body {
    padding: 32px;
}

.subscription-modal__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.subscription-modal__award {
    gap: 12px;
    padding: 16px;
    border: 0.67px solid rgba(179, 227, 225, 0.1);
    border-radius: 8px;
    background: rgba(179, 227, 225, 0.1);
}

.subscription-modal__award > i,
.subscription-modal__confirm > img {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    color: #00b8a9;
    font-size: 1.25rem;
    line-height: 1;
}

.subscription-modal__confirm > img {
    display: block;
    object-fit: contain;
}

.subscription-modal__award h3 {
    margin: 0 0 4px;
    color: #00b8a9;
    font-family: var(--font-dosis);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.6875rem;
}

.subscription-modal__award p,
.subscription-modal__field span,
.subscription-modal__upload span,
.subscription-modal__confirm li {
    margin: 0;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
}

.subscription-modal__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.subscription-modal__field label {
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
}

.subscription-modal__field input,
.subscription-modal__field textarea {
    width: 100%;
    min-height: 49px;
    padding: 12px 16px;
    border: 0.67px solid #f5f5f5;
    border-radius: 8px;
    color: #1a1a1a;
    font-family: var(--font-open-sans);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.subscription-modal__field textarea {
    min-height: 145px;
    resize: vertical;
}

.subscription-modal__field input::placeholder,
.subscription-modal__field textarea::placeholder {
    color: #6c757d;
}

.subscription-modal__field input:focus,
.subscription-modal__field textarea:focus {
    border-color: #00b8a9;
    outline: 0;
    box-shadow: 0 0 0 0.15rem rgba(0, 184, 169, 0.12);
}

.subscription-modal__upload {
    min-height: 156px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    border: 1px dashed #f5f5f5;
    border-radius: 8px;
    background: #ffffff;
    text-align: center;
    cursor: pointer;
}

.subscription-modal__upload:hover,
.subscription-modal__upload:focus-within {
    border-color: #00b8a9;
}

.subscription-modal__upload i {
    color: #6c757d;
    font-size: 2rem;
    line-height: 1;
}

.subscription-modal__upload strong {
    color: #1B365D;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
}

.subscription-modal__confirm {
    gap: 12px;
    padding: 16px;
    border: 0.67px solid #f5f5f5;
    border-radius: 8px;
    background: #f5f5f5;
}

.subscription-modal__confirm p {
    margin: 0 0 8px;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25rem;
}

.subscription-modal__confirm ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 18px;
    margin: 0;
}

.subscription-modal__actions {
    padding-top: 16px;
}

.subscription-modal__button {
    width: 100%;
    min-height: 52px;
    border-radius: 8px;
    font-family: var(--font-open-sans);
    font-size: 1rem;
    line-height: 1.5rem;
}

.subscription-modal__button--cancel {
    border: 2px solid #f5f5f5;
    background: transparent;
    color: #1a1a1a;
    font-weight: 400;
}

.subscription-modal__button--submit {
    border: 0;
    background: #00b8a9;
    color: #ffffff;
    font-weight: 600;
    box-shadow:
        0 2px 4px -2px #0000001a,
        0 4px 6px -1px #0000001a;
}

.subscription-modal__button--cancel:hover,
.subscription-modal__button--cancel:focus {
    border-color: #1b365d;
    color: #1b365d;
}

.subscription-modal__button--submit:hover,
.subscription-modal__button--submit:focus {
    background: #1b365d;
    color: #ffffff;
}

.edit-subscription-modal .subscription-modal__award h3 {
    color: #00b8a9;
}

.edit-subscription-modal .subscription-modal__upload--replace strong {
    color: #1b365d;
    font-size: 0.875rem;
    font-weight: 700;
}

.edit-subscription-modal .subscription-modal__upload--replace span {
    max-width: 100%;
    text-align: center;
}

.edit-subscription-modal .subscription-modal__confirm > i {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    color: #00b8a9;
    font-size: 1.25rem;
    line-height: 1;
}

.edit-subscription-modal .subscription-modal__confirm p {
    margin: 0;
    color: #6c757d;
    font-weight: 400;
}

.app-sidebar {
    width: 268px;
    min-width: 268px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-right: 0.67px solid #f5f5f5;
}

.app-sidebar__brand {
    padding: 12px 24px;
    border-bottom: 1px solid #f5f5f5;
}

.app-sidebar__brand a {
    width: 123.43px;
    height: 40px;
    display: block;
}

.app-sidebar__brand img {
    width: 123.43px;
    height: 40px;
    display: block;
    object-fit: contain;
}

.app-sidebar__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    text-align: center;
}

.app-sidebar__avatar {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a4c8b 0%, #0cb1a8 7.14%, #14a9a6 14.29%, #1aa2a5 21.43%, #1e9aa3 28.57%, #2293a2 35.71%, #248ba0 42.86%, #27849e 50%, #287d9c 57.14%, #2a759b 64.29%, #2b6e99 71.43%, #2c6697 78.57%, #2d5f94 85.71%, #2e5892 92.86%, #2e5090 100%);
    color: #ffffff;
    font-family: var(--font-open-sans);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
}

.app-sidebar__name {
    margin-top: 10px;
    color: #1a1a1a;
    font-family: var(--font-dosis);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    text-align: center;
}

.app-sidebar__role {
    width: 100px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    border-radius: 22369600px;
    background: #f5f5f5;
    color: #6c757d;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
}

.app-sidebar__menu {
    margin-top: 24px;
    padding: 0 24px;
}

.app-sidebar__menu-title {
    margin-bottom: 7px;
    color: #1a1a1a;
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: 0.0375rem;
    text-transform: uppercase;
}

.app-sidebar__menu ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.app-sidebar__link,
.app-sidebar__logout a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a1a;
    font-family: var(--font-open-sans);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    padding: 12px 16px;
}

.app-sidebar__link {
    height: 48px;
}

.app-sidebar__link img,
.app-sidebar__logout img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
    flex: 0 0 20px;
}

.app-sidebar__link--active {
    padding: 12px 16px;
    border-radius: 8px;
    background: #1b365d;
    color: #ffffff !important;
    font-weight: 700;
}

.app-sidebar__link:hover,
.app-sidebar__link:focus,
.app-sidebar__logout a:hover,
.app-sidebar__logout a:focus {
    color: #1b365d;
}

.app-sidebar__link--active:hover,
.app-sidebar__link--active:focus {
    color: #ffffff;
}

.app-sidebar__logout {
    margin-top: auto;
    padding: 12px 24px;
    border-top: 1px solid #f5f5f5;
}

.app-sidebar__logout a {
    min-height: 48px;
    padding: 12px 16px;
}

@media (max-width: 991.98px) {
    .app-sidebar {
        width: 100%;
        min-width: 0;
        min-height: auto;
        border-right: 0;
        border-bottom: 0.67px solid #f5f5f5;
    }

    .app-sidebar__brand {
        display: flex;
        justify-content: center;
    }

    .app-sidebar__profile {
        display: none;
    }

    .app-sidebar__menu {
        margin-top: 0;
        padding: 12px;
        overflow-x: auto;
    }

    .app-sidebar__menu-title {
        display: none;
    }

    .app-sidebar__menu ul {
        flex-direction: row;
        min-width: max-content;
    }

    .app-sidebar__link {
        height: 44px;
        white-space: nowrap;
    }

    .app-sidebar__logout {
        margin-top: 0;
        padding: 0 12px 12px;
        border-top: 0;
    }

    .app-sidebar__logout a {
        min-height: 44px;
    }
}

@media (max-width: 520px) {
    .error-page {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

/* Signup */
.signup-page {
    min-height: 700px;
    background: #f7f7f8;
    color: var(--ipg-black);
    font-family: var(--font-primary);
    padding-top: 36px;
    padding-bottom: 86px;
}

/* Home Hero */
.home-hero {
    position: relative;
    z-index: 1;
    background: var(--ipg-white);
    color: var(--ipg-navy);
    font-family: var(--font-primary);
    padding-top: 62px;
    padding-bottom: 148px;
}

/* Home Cards */
.home-feature-cards {
    position: relative;
    z-index: 2;
    background: #f4f4f4;
    padding-top: 0;
    padding-bottom: 56px;
}

.home-feature-cards > .container {
    transform: translateY(-72px);
    margin-bottom: -72px;
}

.home-feature-card {
    position: relative;
    min-height: 256px;
    height: 256px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 69.5px 32px 28px;
    border-radius: 16px;
    background-image: linear-gradient(var(--home-card-overlay), var(--home-card-overlay)), url("../img/bg-cards-hardware.jpg");
    background-position: center;
    background-size: cover;
    color: var(--ipg-white);
    text-decoration: none;
    box-shadow:
        0 8px 10px -6px #0000001a,
        0 20px 25px -5px #0000001a;
}

.home-feature-card:hover,
.home-feature-card:focus {
    color: var(--ipg-white);
    transform: translateY(-2px);
}

.home-feature-card--teal {
    --home-card-overlay: rgba(0, 184, 169, 0.84);
}

.home-feature-card--orange {
    --home-card-overlay: rgba(255, 130, 0, 0.84);
}

.home-feature-card--navy {
    --home-card-overlay: rgba(27, 54, 93, 0.88);
}

.home-feature-card__icon {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
    flex: 0 0 32px;
}

.home-feature-card__title {
    margin-top: 16px;
    color: var(--ipg-white);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-feature-card__text {
    margin-top: 12px;
    color: #f5f5f5;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.5;
}

.home-feature-card__bar {
    width: 32px;
    height: 4px;
    display: block;
    margin-top: 19.5px;
    background: #ffffff4d;
}

/* Home Award */
.home-award-section {
    background: #f4f4f4;
    padding-top: 56px;
    padding-bottom: 86px;
}

/* Home Rules */
.home-rules-section {
    background: var(--ipg-white);
    padding-top: 64px;
    padding-bottom: 72px;
}

.home-rules-section__heading {
    display: inline-block;
}

.home-rules-section__title {
    color: var(--ipg-navy);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.5rem;
}

.home-rules-section__line {
    width: 100%;
    height: 6px;
    display: block;
    margin-top: 8px;
    border-radius: 22369600px;
    background: #eb5757;
}

.home-rules-section__cards {
    margin-top: 64px;
}

.home-rule-card {
    min-height: 255px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border: 0.67px solid #f3f4f6;
    border-radius: 24px;
    background: #f8fafc;
}

.home-rule-card__icon-wrap {
    width: 56px;
    height: 56px;
    padding: 16px;
    border-radius: 18px;
    background: var(--ipg-white);
    box-shadow:
        0 1px 2px -1px #0000001a,
        0 1px 3px 0 #0000001a;
}

.home-rule-card__icon-wrap img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.home-rule-card__title {
    color: var(--ipg-navy);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
    text-transform: uppercase;
}

.home-rule-card__text {
    color: #6a7282;
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.3125rem;
}

.home-rules-section__actions {
    gap: 16px;
    margin-top: 64px;
}

.home-rules-section__button {
    gap: 7px;
    min-height: 48px;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
}

.home-rules-section__button img {
    width: 14px;
    height: 14px;
    display: block;
    flex: 0 0 auto;
}

.home-rules-section__button--primary {
    border-color: #00b8a9;
    background: #00b8a9;
    color: var(--ipg-white);
    box-shadow:
        0 4px 6px -4px #0000001a,
        0 10px 15px -3px #0000001a;
}

.home-rules-section__button--primary:hover,
.home-rules-section__button--primary:focus {
    border-color: var(--ipg-navy);
    background: var(--ipg-navy);
    color: var(--ipg-white);
}

.home-rules-section__button--secondary {
    border: 2px solid #f3f4f6;
    background: var(--ipg-white);
    color: var(--ipg-navy);
}

.home-rules-section__button--secondary:hover,
.home-rules-section__button--secondary:focus {
    border-color: var(--ipg-navy);
    color: var(--ipg-navy);
}

@media (max-width: 575.98px) {
    .home-rules-section__button {
        width: 100%;
    }
}

/* Home Contact */
.home-contact-section {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    padding: 64px 0 72px;
}

.home-contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("../img/pontilhado-premio.png");
    background-repeat: repeat;
    background-size: auto;
    opacity: 2.35;
    pointer-events: none;
}

.home-contact-section__heading {
    display: inline-block;
}

.home-contact-section__title {
    color: var(--ipg-navy);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.5rem;
}

.home-contact-section__line {
    width: 100%;
    height: 6px;
    display: block;
    margin-top: 8px;
    border-radius: 22369600px;
    background: #ff8200;
}

.home-contact-section__cards {
    margin-top: 48px;
}

.home-contact-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 28px;
    border: 0.67px solid #f3f4f6;
    border-radius: 16px;
    background: var(--ipg-white);
    box-shadow:
        0 1px 2px -1px #0000001a,
        0 1px 3px 0 #0000001a;
}

.home-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-contact-row__icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 12px;
}

.home-contact-row__icon img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

.home-contact-row__icon--company {
    background: #00b8a91a;
}

.home-contact-row__icon--whatsapp {
    background: #25d3661a;
}

.home-contact-row__icon--mail {
    background: #ff82001a;
}

.home-contact-row__icon--mail-ombudsman {
    background: #ff8c001a;
}

.home-contact-row__icon--phone {
    background: #b3e3e11a;
}

.home-contact-row__icon--pin {
    background: #1b365d1a;
}

.home-contact-row__icon--ombudsman {
    background: #ff820033;
}

.home-contact-row__title {
    color: var(--ipg-navy);
    font-family: var(--font-dosis);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25rem;
    letter-spacing: 0.04375rem;
    text-transform: uppercase;
}

.home-contact-row__info {
    color: #6a7282;
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.21875rem;
}

.home-contact-card__divider {
    width: 100%;
    height: 0;
    border-bottom: 0.67px solid #f3f4f6;
}

.home-contact-card__divider--spaced {
    margin-top: -8px;
    margin-bottom: -8px;
}

.home-contact-card__divider--compact {
    margin-top: -8px;
}

.home-contact-address {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-contact-map-link {
    gap: 8px;
    color: #00b8a9;
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.125rem;
    letter-spacing: 0.0375rem;
    text-decoration: none;
}

.home-contact-map-link:hover,
.home-contact-map-link:focus {
    color: var(--ipg-navy);
}

.home-contact-map-link img {
    width: 14px;
    height: 14px;
    display: block;
    flex: 0 0 auto;
}

.home-contact-socials {
    gap: 8px;
    margin-top: 16px;
}

.home-contact-socials a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 22369600px;
    background: #f3f4f6;
}

.home-contact-socials img {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
}

.home-access-panel {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 64px;
    padding: 30px 24px 28px;
    border: 0.67px solid #f3f4f6;
    border-radius: 32px;
    background: var(--ipg-navy);
}

.home-access-panel__shape {
    position: absolute;
    display: block;
    box-shadow:
        0 4px 6px -4px #0000001a,
        0 10px 15px -3px #0000001a;
    pointer-events: none;
}

.home-access-panel__shape--orange {
    width: 64px;
    height: 64px;
    left: calc(50% - 250px);
    bottom: 28px;
    z-index: 1;
    border-radius: 16px;
    background: #ff8200;
    transform: rotate(-12deg);
    backdrop-filter: blur(1px);
}

.home-access-form {
    position: relative;
    z-index: 2;
    width: min(100%, 429px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 40px 28px;
    border: 0.67px solid #f3f4f6;
    border-radius: 24px;
    background: transparent;
    box-shadow: 0 25px 50px -12px #00000040;
}

.home-access-form::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: var(--ipg-white);
}

.home-access-form__shape {
    position: absolute;
    display: block;
    pointer-events: none;
}

.home-access-form__shape--teal {
    width: 80px;
    height: 80px;
    top: -14px;
    right: -28px;
    z-index: -2;
    border-radius: 22369600px;
    background: #00b8a9;
    opacity: 0.55;
    filter: blur(1px);
    backdrop-filter: blur(4px);
    box-shadow:
        0 4px 6px -4px #0000001a,
        0 10px 15px -3px #0000001a;
}

.home-access-form__title {
    color: var(--ipg-navy);
    font-family: var(--font-dosis);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
    text-align: center;
    text-transform: uppercase;
}

.home-access-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-access-form__label {
    color: var(--ipg-navy);
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.125rem;
    text-transform: uppercase;
}

.home-access-form__input-wrap {
    position: relative;
}

.home-access-form__input-wrap i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 2;
    color: #9aa4b2;
    font-size: 1rem;
    line-height: 1;
    transform: translateY(-50%);
}

.home-access-form__input {
    min-height: 53px;
    padding: 16px 16px 16px 48px;
    border: 0.67px solid #f3f4f6;
    border-radius: 12px;
    background: #f8fafc;
    color: #6a7282;
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1;
}

.home-access-form__input::placeholder {
    color: #9aa4b2;
}

.home-access-form__submit {
    gap: 7px;
    margin-top: 16px;
    min-height: 52px;
    border: 0;
    border-radius: 12px;
    background: #00b8a9;
    color: var(--ipg-white);
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.125rem;
    letter-spacing: 0.0375rem;
    box-shadow:
        0 4px 6px -4px #0000001a,
        0 10px 15px -3px #0000001a;
}

.home-access-form__submit:hover,
.home-access-form__submit:focus {
    background: var(--ipg-navy);
    color: var(--ipg-white);
}

.home-access-form__submit img {
    width: 16px;
    height: 16px;
    display: block;
    flex: 0 0 auto;
}

.home-access-form__signup {
    color: #6a7282;
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.21875rem;
}

.home-access-form__signup a {
    color: #ff8200;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 575.98px) {
    .home-contact-section {
        padding: 48px 0 56px;
    }

    .home-contact-card {
        padding: 24px;
    }

    .home-access-panel {
        margin-top: 48px;
        padding: 24px 16px;
    }

    .home-access-panel__shape--orange {
        left: 12px;
        bottom: 18px;
    }

    .home-access-form {
        padding: 32px 24px 24px;
    }

    .home-access-form__shape--teal {
        top: -12px;
        right: -12px;
    }
}

.home-award-box {
    min-height: 525px;
    overflow: hidden;
    border: 0.67px solid #f3f4f6;
    border-radius: 40px;
    background: var(--ipg-white);
    box-shadow:
        0 8px 10px -6px #0000001a,
        0 20px 25px -5px #0000001a;
}

.home-award-box > .row {
    min-height: 525px;
}

.home-award-box__text-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 100.5px 0;
}

.home-award-box__text {
    width: 100%;
    padding: 42px;
}

.home-award-box__heading {
    display: inline-block;
    width: auto;
    max-width: 100%;
}

.home-award-box__title {
    color: var(--ipg-navy);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
}

.home-award-box__line {
    width: 100%;
    height: 6px;
    display: block;
    margin-top: 10px;
    border-radius: 22369600px;
    background: var(--ipg-teal);
}

.home-award-box__description {
    max-width: 570px;
    margin-top: 36px;
    padding-right: 16px;
    padding-left: 16px;
    color: #4a5565;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.55;
}

.home-award-box__description strong {
    color: var(--ipg-navy);
    font-weight: 700;
}

.home-award-box__image-wrap {
    position: relative;
    height: 100%;
    min-height: 525px;
    overflow: hidden;
}

.home-award-box__image {
    width: 100%;
    height: 100%;
    min-height: 525px;
    display: block;
    object-fit: cover;
}

.home-award-box__pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}

.home-award-box__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #00b8a91a;
    pointer-events: none;
    z-index: 2;
}

@media (max-width: 991.98px) {
    .home-award-box,
    .home-award-box > .row {
        min-height: auto;
    }

    .home-award-box__text {
        padding: 32px 24px;
    }

    .home-award-box__text-wrap {
        padding: 32px 0;
    }

    .home-award-box__title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }

    .home-award-box__image-wrap,
    .home-award-box__image {
        min-height: 360px;
    }
}

.home-hero__content {
    max-width: 520px;
}

.home-hero__title {
    color: var(--ipg-navy);
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.13;
}

.home-hero__text {
    max-width: 520px;
    margin-top: 30px;
    color: #4a5565;
    font-family: var(--font-open-sans);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
}

.home-hero__actions {
    gap: 24px;
    margin-top: 90px;
}

.home-hero__primary-link {
    gap: 12px;
    color: var(--ipg-teal);
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 0.04em;
}

.home-hero__primary-link:hover,
.home-hero__primary-link:focus {
    color: var(--ipg-navy);
}

.home-hero__primary-link img {
    width: 20px;
    height: 20px;
    display: block;
}

.home-hero__secondary-link {
    height: 50px;
    padding: 15px 34px;
    border: 2px solid #1b365d1a;
    border-radius: 12px;
    color: var(--ipg-navy);
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
}

.home-hero__secondary-link:hover,
.home-hero__secondary-link:focus {
    border-color: var(--ipg-navy);
    color: var(--ipg-navy);
}

.home-hero__image {
    width: 100%;
    max-width: 532px;
    display: block;
    margin-left: auto;
}

@media (max-width: 991.98px) {
    .home-hero {
        padding-top: 48px;
        padding-bottom: 80px;
    }

    .home-feature-cards > .container {
        transform: translateY(-48px);
        margin-bottom: -48px;
    }

    .home-hero__content,
    .home-hero__text {
        max-width: none;
    }

    .home-hero__title {
        font-size: clamp(2.25rem, 8vw, 3.25rem);
    }

    .home-hero__actions {
        margin-top: 48px;
    }

    .home-hero__image {
        margin-right: auto;
    }
}

.signup-page__heading {
    margin-bottom: 24px;
}

.signup-page__icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e3e7ed;
    color: var(--ipg-navy);
}

.signup-page__icon-wrap img {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: contain;
}

.signup-page__title {
    color: var(--ipg-navy);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.signup-page__subtitle {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.4;
}

.signup-form {
    gap: 32px;
    align-items: center;
}

.signup-card {
    width: 100%;
    max-width: 524px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    border-radius: 12px;
    background: var(--ipg-white);
    box-shadow:
        0 4px 6px -4px #0000001a,
        0 10px 15px -3px #0000001a;
}

.signup-card__header {
    color: var(--ipg-black);
}

.signup-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #b3e3e11a;
    color: #00b8a9;
    font-size: 1.25rem;
}

.signup-card__icon img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

.signup-card__title {
    color: var(--ipg-black);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.signup-card__label {
    color: var(--ipg-black);
    font-size: 0.875rem;
    line-height: 1.4;
}

.signup-card__input {
    min-height: 48px;
    padding: 12px;
    border: 0.67px solid #f5f5f5;
    border-radius: 8px;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.4;
}

.signup-card__input::placeholder {
    color: #6c757d;
}

.signup-card__input:focus {
    border-color: var(--ipg-navy);
    box-shadow: 0 0 0 0.15rem rgba(27, 54, 93, 0.12);
}

.signup-card__check {
    color: var(--ipg-black);
    font-size: 0.875rem;
    line-height: 1.45;
}

.signup-card__check .form-check-input {
    border-color: #f5f5f5;
    border-radius: 4px;
}

.signup-card__check .form-check-input:checked {
    background-color: var(--ipg-navy);
    border-color: var(--ipg-navy);
}

.signup-card__check a,
.signup-card__login a {
    color: var(--ipg-teal);
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.signup-card__check a:hover,
.signup-card__check a:focus,
.signup-card__login a:hover,
.signup-card__login a:focus {
    color: var(--ipg-navy);
    text-decoration: underline;
}

.signup-card__submit {
    min-height: 48px;
    padding: 12px 168px;
    border: 0;
    border-radius: 8px;
    background: var(--ipg-navy);
    color: var(--ipg-white);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    box-shadow: 0 8px 16px rgba(27, 54, 93, 0.2);
}

.signup-card__submit:hover,
.signup-card__submit:focus {
    background: #142a49;
    color: var(--ipg-white);
}

.signup-card__login {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.45;
}

@media (max-width: 575.98px) {
    .signup-page {
        padding-top: 56px;
        padding-bottom: 72px;
    }

    .signup-card__submit {
        width: 100%;
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (max-width: 575.98px) {
    .login-page {
        min-height: auto;
        padding-top: 56px;
        padding-bottom: 72px;
    }

    .login-card__submit {
        width: 100%;
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (max-width: 991.98px) {
    .site-header__navbar {
        min-height: auto;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .site-header__nav {
        gap: 0;
        padding-top: 18px;
    }

    .site-header__nav .nav-link {
        padding: 10px 0;
    }

    .site-header__actions {
        padding-bottom: 6px;
    }
}

.profile-page {
    min-height: 100vh;
    background: #f5f5f5;
}

.perfil {
    width: 100%;
    max-width: 844px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 24px;
    font-family: var(--font-open-sans);
}

.perfil__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.perfil__header h1 {
    margin: 0;
    color: #1b365d;
    font-family: var(--font-dosis);
    font-size: 28px;
    font-weight: 700;
    line-height: 35.39px;
    text-transform: uppercase;
}

.perfil__header p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
    line-height: 19.06px;
}

.perfil__user-card,
.perfil__card {
    width: 796px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow:
        0 1px 2px -1px #0000001a,
        0 1px 3px 0 #0000001a;
}

.perfil__user-card {
    height: 120px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px;
}

.perfil__avatar {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #00b8a9 0%, #2e5090 100%);
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
}

.perfil__user-info h2 {
    margin: 0;
    color: #1a1a1a;
    font-family: var(--font-dosis);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.perfil__user-info p {
    margin: 4px 0 8px;
    color: #6c757d;
    font-size: 16px;
    line-height: 24px;
}

.perfil__photo {
    color: #1b365d;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}

.perfil__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.perfil__card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
}

.perfil__section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 40px;
}

.perfil__section-title span {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(179, 227, 225, 0.1);
    color: #00b8a9;
    font-size: 20px;
}

.perfil__section-title h2 {
    margin: 0;
    color: #1a1a1a;
    font-family: var(--font-dosis);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.perfil__grid {
    display: grid;
    gap: 24px;
}

.perfil__grid--2 {
    grid-template-columns: 1fr 1fr;
}

.perfil__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.perfil__field label {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 20px;
}

.perfil__field input {
    width: 100%;
    height: 49.33px;
    padding: 12px 16px;
    border: 0.67px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    background: transparent;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 24px;
}

.perfil__field input:focus {
    border-color: #00b8a9;
    outline: 0;
    box-shadow: 0 0 0 0.15rem rgba(0, 184, 169, 0.12);
}

.perfil__actions {
    width: 796px;
    display: flex;
    justify-content: flex-end;
}

.perfil__save-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 48px;
    padding: 0 20px;

    border: none;
    border-radius: 8px;

    background: #1B365D;
    color: #FFF;

    font-family: var(--font-open-sans);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;

    cursor: pointer;
    transition: background .2s ease;
}

.perfil__save-btn:hover {
    background: #1B365D;
}

.perfil__save-btn img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.perfil__section-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #B3E3E11A;
    border-radius: 6px;

    flex-shrink: 0;
}

.perfil__section-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .perfil {
        max-width: 100%;
        padding: 24px;
    }

    .perfil__user-card,
    .perfil__card,
    .perfil__actions {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .perfil__user-card {
        height: auto;
        align-items: flex-start;
        flex-direction: column;
    }

    .perfil__grid--2 {
        grid-template-columns: 1fr;
    }

    .perfil__actions button {
        width: 100%;
    }
}
/* ============================================================
   Biblioteca (Candidato)
   ============================================================ */

/* Cores auxiliares */
.text-teal  { color: #00b8a9 !important; }
.text-navy  { color: #1b365d !important; }

/* Layout geral */
.biblioteca-page {
    background-color: #f5f5f5;
    font-family: var(--font-open-sans);
}

.biblioteca {
    max-width: 860px;
}

/* Cabeçalho da página */
.biblioteca__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.biblioteca__title {
    color: #1b365d;
    font-family: var(--font-dosis);
    font-size: 28px;
    font-weight: 700;
    line-height: 35.39px;
}

.biblioteca__subtitle {
    color: #6c757d;
    font-family: var(--font-open-sans);
    font-size: 14px;
    line-height: 19.07px;
}

/* Cards de estatísticas */
.biblioteca__stat-card {
    background: #ffffff;
    border-radius: 12px !important;
    box-shadow:
        0 1px 2px -1px rgba(0, 0, 0, 0.1),
        0 1px 3px 0   rgba(0, 0, 0, 0.1) !important;
}

.biblioteca__stat-label {
    color: #6c757d;
    font-family: var(--font-open-sans);
    font-size: 14px;
    line-height: 20px;
}

.biblioteca__stat-value {
    font-family: var(--font-open-sans);
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
}

.biblioteca__stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(179, 227, 225, 0.1);
    flex-shrink: 0;
}

.biblioteca__stat-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Card da tabela */
.biblioteca__table-header {
    border-bottom: 1px solid #f5f5f5 !important;
}

.biblioteca__table-title {
    color: #1a1a1a;
    font-family: var(--font-dosis);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

/* Tabela */
.biblioteca__table {
    font-family: var(--font-open-sans);
}

.biblioteca__thead th {
    background: #f5f5f5;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    border-bottom: none;
    white-space: nowrap;
}

.biblioteca__row {
    border-color: #f5f5f5 !important;
}

.biblioteca__row:last-child {
    border-bottom: none !important;
}

/* Badge do ano */
.biblioteca__year-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 11px;
    border-radius: 9999px;
    background: rgba(27, 54, 93, 0.1);
    color: #1b365d;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
}

/* Título do trabalho */
.biblioteca__titulo {
    color: #1a1a1a;
    font-size: 16px;
    line-height: 24px;
}

/* Botão Visualizar */
.biblioteca__btn-visualizar {
    padding: 7px 16px;
    border-radius: 8px;
    background: #1b365d;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.biblioteca__btn-visualizar:hover,
.biblioteca__btn-visualizar:focus {
    background: #142a49;
    color: #ffffff;
}

.biblioteca__btn-visualizar img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Responsivo */
@media (max-width: 991.98px) {
    .biblioteca-page {
        flex-direction: column;
    }

    .biblioteca {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .biblioteca {
        padding: 16px !important;
    }

    .biblioteca__header {
        margin-bottom: 16px !important;
    }

    .biblioteca__stat-value {
        font-size: 24px;
    }

    .biblioteca__table-title {
        font-size: 16px;
    }

    .biblioteca__thead th,
    .biblioteca__row td {
        font-size: 13px;
    }

    .biblioteca__btn-visualizar {
        width: 100%;
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Badge muted (linha sem inscrição — fundo cinza claro, texto cinza) */
.biblioteca__year-badge--muted {
    background: #f5f5f5;
    color: #6c757d;
}

/* Sombra do card da tabela */
.biblioteca__table-card {
    box-shadow:
        0 1px 2px -1px rgba(0, 0, 0, 0.1),
        0 1px 3px 0   rgba(0, 0, 0, 0.1);
}

/* Remove borda da última linha da tabela */
.biblioteca__table tbody tr:last-child td {
    border-bottom: none !important;
}

/* ============================================================
   Biblioteca - mobile cards e modal de detalhes
   ============================================================ */
.biblioteca-list__item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    border: 0.67px solid #f5f5f5;
    border-radius: 12px;
    background: #ffffff;
}

.biblioteca-list__item strong {
    display: block;
    color: #1a1a1a;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.biblioteca-list__label {
    display: block;
    margin-bottom: 4px;
    color: #6c757d;
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1rem;
}

.biblioteca-list__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    border-radius: 8px;
    background: #f5f5f5;
    color: #6c757d;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.biblioteca-details-modal {
    font-family: var(--font-open-sans);
}

.biblioteca-details-modal__dialog {
    max-width: 672px;
}

.biblioteca-details-modal__content {
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 25px 50px -12px #00000040;
}

.biblioteca-details-modal__header {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 32px;
    border-bottom: 0.67px solid #f5f5f5;
}

.biblioteca-details-modal__header .modal-title {
    color: #1b365d;
    font-family: var(--font-dosis);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    text-transform: uppercase;
}

.biblioteca-details-modal__close {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #1a1a1a;
}

.biblioteca-details-modal__close:hover,
.biblioteca-details-modal__close:focus {
    background: #f5f5f5;
}

.biblioteca-details-modal__body {
    padding: 32px;
}

.biblioteca-details-modal__status {
    min-height: 49px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 0.67px solid #bedbff;
    border-radius: 8px;
    background: #eff6ff;
    color: #155dfc;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
}

.biblioteca-details-modal__status img,
.biblioteca-details-modal__meta img,
.biblioteca-details-modal__label img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex: 0 0 16px;
}

.biblioteca-details-modal__title {
    margin: 24px 0 0;
    color: #1a1a1a;
    font-family: var(--font-dosis);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
}

.biblioteca-details-modal__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.biblioteca-details-modal__meta span,
.biblioteca-details-modal__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.biblioteca-details-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
    margin-top: 24px;
}

.biblioteca-details-modal__info:nth-child(3) {
    grid-column: 1 / -1;
}

.biblioteca-details-modal__label {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25rem;
}

.biblioteca-details-modal__label.blackcolor{
    color: #1a1a1a;
}

.biblioteca-details-modal__info p,
.biblioteca-details-modal__summary {
    margin: 8px 0 0;
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.5rem;
}

.biblioteca-details-modal__section,
.biblioteca-details-modal__files {
    margin-top: 24px;
}

.biblioteca-details-modal__summary {
    min-height: 104px;
    color: #6c757d;
    line-height: 1.625rem;
}

.biblioteca-details-modal__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.biblioteca-details-modal__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(0, 184, 169, 0.1);
    color: #00b8a9;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.biblioteca-details-modal__file-list {
    gap: 12px;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 0.67px solid #f5f5f5;
    border-radius: 0;
}

.biblioteca-details-modal__file {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 0.67px solid #f5f5f5;
    border-radius: 8px !important;
    background: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    box-shadow: none !important;
}

.biblioteca-details-modal__file.active {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px dashed #00b8a9;
    box-shadow: none !important;
}

.biblioteca-details-modal__file:hover,
.biblioteca-details-modal__file:focus {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #00b8a9;
    box-shadow: none !important;
}

.biblioteca-details-modal__file-info {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.biblioteca-details-modal__file-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.biblioteca-details-modal__file-download {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.biblioteca-details-modal__file-icon--active,
.biblioteca-details-modal__file-download--active,
.biblioteca-details-modal__file.active .biblioteca-details-modal__file-icon--inactive,
.biblioteca-details-modal__file.active .biblioteca-details-modal__file-download--inactive {
    display: none;
}

.biblioteca-details-modal__file.active .biblioteca-details-modal__file-icon--active,
.biblioteca-details-modal__file.active .biblioteca-details-modal__file-download--active {
    display: block;
}

.biblioteca-details-modal__file-info strong,
.biblioteca-details-modal__file-info small {
    display: block;
}

.biblioteca-details-modal__file-info strong {
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25rem;
}

.biblioteca-details-modal__file-info small {
    color: #6c757d;
    font-size: 0.75rem;
    line-height: 1rem;
    text-transform: uppercase;
}

.biblioteca-details-modal__footer-button {
    width: 100%;
    min-height: 48px;
    margin-top: 28px;
    border: 0;
    border-radius: 8px;
    background: #00b8a9;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
}

.biblioteca-details-modal__footer-button:hover,
.biblioteca-details-modal__footer-button:focus {
    background: #1b365d;
}

@media (max-width: 575.98px) {
    .biblioteca-details-modal__header,
    .biblioteca-details-modal__body {
        padding: 24px;
    }

    .biblioteca-details-modal__grid {
        grid-template-columns: 1fr;
    }
}
