/**
 * PTUM / MDR — tipografia e paleta (Source Sans 3 + verde esmeralda + âmbar).
 * Carregar por último nos layouts (depois de style.css / web.css / custom.css).
 */
:root {
    --ptum-font-sans: "Source Sans 3", system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --ptum-brand: #059669;
    --ptum-brand-hover: #047857;
    --ptum-brand-light: #10b981;
    --ptum-brand-text: #065f46;
    --ptum-accent: #f59e0b;
    --ptum-accent-hover: #d97706;
    --ptum-surface: #f8fafc;
    --ptum-text: #0f172a;
    --ptum-text-muted: #475569;
    --ptum-accent-rgb: 245, 158, 11;
    --ptum-brand-rgb: 5, 150, 105;
    /* Bootstrap 5 — canal público */
    --bs-success: #059669;
    --bs-success-rgb: 5, 150, 105;
}

html {
    font-family: var(--ptum-font-sans);
}

body {
    font-family: var(--ptum-font-sans);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--ptum-font-sans);
}

/* --- Canal público --- */
#hero .btn-get-started {
    background: var(--ptum-brand) !important;
    border-color: var(--ptum-brand-hover) !important;
    font-family: var(--ptum-font-sans) !important;
}

#hero .btn-get-started:hover {
    color: #fff !important;
}

.get-started-btn:hover {
    background: var(--ptum-accent-hover) !important;
    color: #fff !important;
}

#header .navbar a,
#header .navbar a:focus,
#header .navbar li:hover > a {
    font-family: var(--ptum-font-sans);
}

/* --- Backoffice (Bootstrap 4) --- */
.btn-success {
    color: #fff !important;
    background-color: var(--ptum-brand) !important;
    border-color: var(--ptum-brand) !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
    color: #fff !important;
    background-color: var(--ptum-brand-hover) !important;
    border-color: var(--ptum-brand-hover) !important;
    box-shadow: 0 0 0 0.2rem rgba(var(--ptum-brand-rgb), 0.35) !important;
}

.btn-success.disabled,
.btn-success:disabled {
    background-color: var(--ptum-brand-light) !important;
    border-color: var(--ptum-brand-light) !important;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
    background-color: var(--ptum-brand-hover) !important;
    border-color: var(--ptum-brand-hover) !important;
}

.sidebar .nav-item.active .nav-link {
    background: var(--ptum-brand-hover) !important;
    color: #ecfdf5 !important;
}

.login_btn {
    background: var(--ptum-brand) !important;
}

.login_btn:hover {
    background: var(--ptum-brand-hover) !important;
}

.nav-link:hover {
    color: var(--ptum-brand) !important;
}

.nav-pills .nav-link.active {
    color: var(--ptum-brand) !important;
    border-bottom-color: var(--ptum-brand) !important;
}

.nav-pills .nav-link.active i {
    color: var(--ptum-brand) !important;
}

/* --- Rodapé: boletim + parceiros (faixa enterprise) --- */
.ptum-footer-ribbon {
    position: relative;
    background: linear-gradient(165deg, #eef2f7 0%, #f8fafc 38%, #ffffff 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.ptum-footer-ribbon::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ptum-brand) 0%, var(--ptum-brand-light) 42%, var(--ptum-accent) 100%);
    pointer-events: none;
}

.ptum-footer-ribbon__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 18px 48px -24px rgba(15, 23, 42, 0.14);
}

.ptum-footer-ribbon__accent {
    height: 4px;
    width: 100%;
    flex-shrink: 0;
    background: linear-gradient(90deg, var(--ptum-brand), var(--ptum-brand-light));
}
.ptum-footer-ribbon__accent--amber {
    background: linear-gradient(90deg, var(--ptum-brand), var(--ptum-accent));
}

.ptum-footer-ribbon__panel-body {
    padding: 1.5rem 1.35rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .ptum-footer-ribbon__panel-body {
        padding: 1.75rem 1.85rem 1.85rem;
    }
}

.ptum-footer-ribbon__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ptum-brand);
    margin: 0 0 0.5rem;
}

.ptum-footer-ribbon__title {
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ptum-text);
    margin: 0 0 0.65rem;
    line-height: 1.2;
}

.ptum-footer-ribbon__lead {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ptum-text-muted);
    margin: 0 0 1.25rem;
    max-width: 32rem;
}

.ptum-footer-ribbon__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}
@media (min-width: 576px) {
    .ptum-footer-ribbon__form {
        flex-direction: row;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 0;
    }
}

.ptum-footer-ribbon__input-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem 0.55rem 0.95rem;
    background: var(--ptum-surface);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px 12px 12px 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 576px) {
    .ptum-footer-ribbon__input-wrap {
        border-radius: 12px 0 0 12px;
        border-right-width: 0;
    }
}
.ptum-footer-ribbon__input-wrap:focus-within {
    border-color: rgba(var(--ptum-brand-rgb), 0.45);
    box-shadow: 0 0 0 3px rgba(var(--ptum-brand-rgb), 0.12);
}

.ptum-footer-ribbon__input-icon {
    color: #94a3b8;
    font-size: 1rem;
    flex-shrink: 0;
}

.ptum-footer-ribbon__input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ptum-text);
    outline: none;
    padding: 0.35rem 0;
}
.ptum-footer-ribbon__input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.ptum-footer-ribbon__submit {
    flex-shrink: 0;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 0.75rem 1.35rem;
    color: #fff;
    background: linear-gradient(180deg, var(--ptum-accent) 0%, var(--ptum-accent-hover) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(var(--ptum-accent-rgb), 0.35);
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
}
@media (min-width: 576px) {
    .ptum-footer-ribbon__submit {
        border-radius: 0 12px 12px 0;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
.ptum-footer-ribbon__submit:hover {
    color: #fff;
    filter: brightness(1.03);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(var(--ptum-accent-rgb), 0.42);
}
.ptum-footer-ribbon__submit:focus-visible {
    outline: 2px solid var(--ptum-brand);
    outline-offset: 2px;
}

.ptum-footer-ribbon__fineprint {
    font-size: 0.72rem;
    line-height: 1.45;
    color: #64748b;
    margin: 0.85rem 0 0;
    max-width: 36rem;
}

.ptum-footer-ribbon__logo-row {
    margin-top: 0.25rem;
}

.ptum-footer-ribbon__logo-card {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.75rem;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ptum-footer-ribbon__logo-card:hover {
    border-color: rgba(var(--ptum-brand-rgb), 0.25);
    box-shadow: 0 10px 28px -18px rgba(15, 23, 42, 0.18);
}

.ptum-footer-ribbon__logo-frame {
    width: 100%;
    max-width: 168px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}
.ptum-footer-ribbon__logo-frame img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.ptum-footer-ribbon__role {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ptum-text-muted);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.15);
}

@media (min-width: 1200px) {
    .py-xl-6 {
        padding-top: 3.25rem !important;
        padding-bottom: 3.25rem !important;
    }
}

/* --- Site público: cabeçalho vidro escuro (todas as páginas do layout público) --- */
body.page-public-layout #header {
    background: rgba(15, 23, 42, 0.72) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
body.page-public-layout #header .navbar a {
    color: rgba(248, 250, 252, 0.92) !important;
}
body.page-public-layout #header .navbar a:hover,
body.page-public-layout #header .navbar li:hover > a {
    color: #6ee7b7 !important;
}
body.page-public-layout #header .get-started-btn {
    border-color: rgba(255, 255, 255, 0.35) !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}
body.page-public-layout #header .get-started-btn:hover {
    background: rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
}
body.page-public-layout #header .mobile-nav-toggle {
    color: #f8fafc !important;
}
body.page-public-layout #header.header-scrolled {
    background: rgba(15, 23, 42, 0.88) !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

/* --- Página inicial: hero enterprise --- */
#hero.home-hero {
    position: relative;
    overflow: hidden;
    height: auto !important;
    min-height: min(88vh, 780px);
    padding-top: clamp(5.5rem, 11vh, 7.75rem) !important;
    padding-bottom: 3.25rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
}

#hero.home-hero::before {
    display: none !important;
    content: none !important;
}

.home-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #0f172a;
    background-image:
        linear-gradient(
            118deg,
            rgba(5, 80, 62, 0.94) 0%,
            rgba(15, 23, 42, 0.9) 42%,
            rgba(88, 28, 14, 0.88) 100%
        ),
        url("../img/bg-main.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 65% at 20% 40%, rgba(16, 185, 129, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 75%, rgba(245, 158, 11, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.home-hero__container {
    position: relative;
    z-index: 1;
}

.home-hero__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(167, 243, 208, 0.95);
    margin: 0 0 0.65rem;
}

.home-hero__title {
    font-size: clamp(1.65rem, 3.8vw, 2.65rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 1rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.home-hero__lead {
    font-size: clamp(1rem, 1.35vw, 1.125rem);
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.92);
    max-width: 36rem;
    margin: 0 0 1.75rem;
}

.home-hero__cta-stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: 32rem;
}

.home-hero__cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}
@media (min-width: 576px) {
    .home-hero__cta-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }
}

.home-hero__cta {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border-radius: 999px;
    padding: 0.65rem 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-hero__cta--primary {
    width: 100%;
    min-height: 3.15rem;
    color: #fff !important;
    border: none;
    background: linear-gradient(180deg, var(--ptum-brand) 0%, var(--ptum-brand-hover) 100%);
    box-shadow: 0 6px 22px rgba(5, 150, 105, 0.45);
}
.home-hero__cta--primary:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(5, 150, 105, 0.55);
}

.home-hero__cta--vbg {
    color: #fffbeb !important;
    background: rgba(146, 64, 14, 0.35);
    border: 2px solid rgba(251, 191, 36, 0.65);
    backdrop-filter: blur(6px);
}
.home-hero__cta--vbg:hover {
    color: #fff !important;
    background: rgba(120, 53, 15, 0.55);
    border-color: #fbbf24;
}

.home-hero__cta--ghost {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.35);
}
.home-hero__cta--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff !important;
}

.home-hero__showcase {
    margin-top: 0.5rem;
}
@media (min-width: 992px) {
    .home-hero__showcase {
        margin-top: 0;
    }
}

.home-hero__showcase-inner {
    position: relative;
    padding: 1.35rem 1.35rem 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.home-hero__showcase-head {
    text-align: center;
    margin-bottom: 1.1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-hero__showcase-kicker {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(167, 243, 208, 0.95);
    margin-bottom: 0.35rem;
}

.home-hero__showcase-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.95);
    line-height: 1.35;
}

.home-hero__logo-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.home-hero__logo-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.35rem 0.5rem;
    text-decoration: none;
}
.home-hero__logo-slot img {
    max-width: 140px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.home-hero__mdr-card {
    position: relative;
    margin-top: 1.15rem;
    padding: 1.1rem 1.35rem 1.15rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #e0f2fe 0%, #bae6fd 55%, #f0f9ff 100%);
    border: 1px solid rgba(14, 165, 233, 0.4);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.home-hero__mdr-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.home-hero__mdr-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0369a1;
}

.home-hero__mdr-acronym {
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #0f172a;
    line-height: 1;
}

.home-hero__mdr-seal {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #1e3a5f, #0f172a);
    color: #fff;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.85);
}

@media (max-width: 991px) {
    .home-hero__copy {
        text-align: center;
    }
    .home-hero__lead {
        margin-left: auto;
        margin-right: auto;
    }
    .home-hero__cta-stack {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    #hero.home-hero {
        min-height: 0;
        padding-bottom: 2.5rem !important;
    }
    .home-hero__cta-row {
        grid-template-columns: 1fr;
    }
}

/* --- Rodapé: bloco verde (contactos + colunas) + faixa inferior --- */
#footer .footer-top.ptum-footer-main {
    padding: 3.25rem 0 2.5rem !important;
    background: linear-gradient(
            165deg,
            rgba(4, 69, 52, 0.98) 0%,
            rgba(6, 95, 70, 0.97) 38%,
            rgba(8, 55, 42, 0.99) 100%
        ),
        rgba(5, 120, 83, 0.96) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

#footer .footer-top.ptum-footer-main .overlay.ptum-footer-main__bg {
    opacity: 0.16;
    filter: grayscale(1) contrast(1.05);
}

.ptum-footer-main__inner {
    z-index: 1;
}

.ptum-footer-main__contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.9rem;
    text-align: left;
}
@media (min-width: 992px) {
    .ptum-footer-main__contact-item.justify-content-lg-start {
        justify-content: flex-start;
    }
    .ptum-footer-main__contact-item.justify-content-lg-center {
        justify-content: center;
    }
    .ptum-footer-main__contact-item.justify-content-lg-end {
        justify-content: flex-end;
    }
}

.ptum-footer-main__icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ecfdf5;
    font-size: 1.15rem;
}

.ptum-footer-main__contact-text,
.ptum-footer-main__contact-text a {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(248, 250, 252, 0.95) !important;
    text-decoration: none;
    font-weight: 500;
}
.ptum-footer-main__contact-text a:hover {
    color: #fde68a !important;
    text-decoration: underline;
}

.ptum-footer-main__rule {
    height: 1px;
    margin: 2rem 0 2.25rem;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.22) 20%,
        rgba(255, 255, 255, 0.22) 80%,
        transparent 100%
    );
    border: 0;
}

.ptum-footer-main__logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 1.25rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 992px) {
    .ptum-footer-main__brand .ptum-footer-main__logo-card {
        margin-left: 0;
        margin-right: 0;
    }
}

.ptum-footer-main__logo-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

#footer .footer-top.ptum-footer-main h4.ptum-footer-main__heading {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff !important;
    padding-bottom: 0.85rem;
    margin-bottom: 1rem;
    border-bottom: none;
}

#footer .footer-top.ptum-footer-main h4.ptum-footer-main__heading::after {
    width: 2.75rem;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ptum-accent) 0%, #fbbf24 100%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 992px) {
    #footer .footer-top.ptum-footer-main h4.ptum-footer-main__heading::after {
        left: 0;
        transform: none;
    }
}

#footer .footer-top.ptum-footer-main .ptum-footer-main__links ul {
    margin: 0;
    padding: 0;
}

#footer .footer-top.ptum-footer-main .ptum-footer-main__links ul li {
    padding: 0.55rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 992px) {
    #footer .footer-top.ptum-footer-main .ptum-footer-main__links ul li {
        justify-content: flex-start;
    }
}

#footer .footer-top.ptum-footer-main .ptum-footer-main__links ul a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(248, 250, 252, 0.95) !important;
    font-weight: 500;
    font-size: 0.92rem;
    line-height: 1.35;
    text-align: left;
}

#footer .footer-top.ptum-footer-main .ptum-footer-main__links ul a i {
    flex-shrink: 0;
    color: rgba(253, 230, 138, 0.95) !important;
    font-size: 0.85rem;
    padding-right: 0;
}

#footer .footer-top.ptum-footer-main .ptum-footer-main__links ul a:hover {
    color: #fff !important;
    text-decoration: none;
    transform: translateX(2px);
}

#footer .footer-top.ptum-footer-main .ptum-footer-main__links ul a:hover i {
    color: var(--ptum-accent) !important;
}

.ptum-footer-bar {
    background: #0b0f14 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ptum-footer-bar__copy {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

.ptum-footer-bar__credits {
    font-size: 0.82rem;
    color: rgba(248, 250, 252, 0.65) !important;
    margin-top: 0.35rem;
}

.ptum-footer-bar__credit-link {
    color: var(--ptum-accent) !important;
    font-weight: 600;
    text-decoration: none;
}
.ptum-footer-bar__credit-link:hover {
    color: #fcd34d !important;
    text-decoration: underline;
}

.ptum-footer-bar__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.ptum-footer-bar__social-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 2.5rem !important;
    height: 2.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #f8fafc !important;
    font-size: 1.1rem !important;
    line-height: 1 !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, color 0.2s ease !important;
}

.ptum-footer-bar__social-btn:hover {
    background: rgba(245, 158, 11, 0.2) !important;
    border-color: rgba(245, 158, 11, 0.45) !important;
    color: #fff !important;
    transform: translateY(-2px);
}
