.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}

body {
    overflow-x: hidden;
}

.onepage-section-anchor {
    scroll-margin-top: 104px;
}

.site-main {
    position: relative;
    z-index: 1;
    min-height: 70vh;
}

/* =========================================================
   HEADER TRANSLÚCIDO
========================================================= */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 16px 0;
    background:
        linear-gradient(
            180deg,
            rgba(2, 8, 23, 0.54) 0%,
            rgba(2, 8, 23, 0.32) 72%,
            rgba(2, 8, 23, 0) 100%
        );
    border-bottom: 1px solid transparent;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition:
        padding 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        -webkit-backdrop-filter 0.28s ease,
        backdrop-filter 0.28s ease;
}

.site-header.is-scrolled {
    padding: 9px 0;
    background:
        linear-gradient(
            135deg,
            rgba(2, 8, 23, 0.90),
            rgba(7, 28, 54, 0.78)
        );
    border-bottom-color: rgba(0, 200, 255, 0.15);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
}

.header-container {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand,
.brand-image {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

.brand-logo-box {
    width: 286px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.brand-logo {
    width: 276px;
    max-height: 66px;
    height: auto;
    object-fit: contain;
    display: block;
    filter:
        brightness(1.12)
        contrast(1.08)
        drop-shadow(0 0 18px rgba(0, 200, 255, 0.24));
    transition:
        width 0.28s ease,
        max-height 0.28s ease,
        filter 0.28s ease;
}

.site-header.is-scrolled .brand-logo-box {
    width: 250px;
    height: 60px;
}

.site-header.is-scrolled .brand-logo {
    width: 240px;
    max-height: 56px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.74);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-decoration: none;
    background: transparent;
    border-radius: 0;
    transition:
        color 0.22s ease,
        transform 0.22s ease;
}

.main-nav a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    box-shadow: 0 0 18px rgba(0, 200, 255, 0.56);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.24s ease;
}

.main-nav a.is-active,
.main-nav a[aria-current="page"] {
    color: #ffffff;
}

.main-nav a.is-active::after,
.main-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.main-nav img,
.nav-favicon,
.header-action {
    display: none !important;
}

.menu-toggle {
    display: none;
}

/* =========================================================
   LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(0, 200, 255, 0.12), transparent 34%),
        linear-gradient(135deg, #020817, #061a33);
    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
}

.page-loaded .page-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-box {
    display: grid;
    place-items: center;
    gap: 18px;
}

.page-loader-box img {
    width: 118px;
    filter: drop-shadow(0 0 24px rgba(0, 200, 255, 0.46));
    animation: loaderPulse 1.1s ease-in-out infinite;
}

.page-loader-box span {
    position: relative;
    width: 128px;
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.page-loader-box span::before {
    content: "";
    display: block;
    width: 48px;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    animation: loaderBar 1s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.86;
    }

    50% {
        transform: translateY(-6px) scale(1.04);
        opacity: 1;
    }
}

@keyframes loaderBar {
    0% {
        transform: translateX(-48px);
    }

    100% {
        transform: translateX(128px);
    }
}

/* =========================================================
   FOOTER COMPACTO
========================================================= */

.site-footer {
    position: relative;
    z-index: 1;
    padding: 52px 0 0;
    background:
        radial-gradient(circle at 82% 0%, rgba(0, 200, 255, 0.11), transparent 30%),
        linear-gradient(180deg, rgba(2, 8, 23, 0.96), rgba(2, 8, 23, 1));
    border-top: 1px solid rgba(0, 200, 255, 0.14);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(260px, 0.85fr);
    align-items: center;
    gap: 32px;
    padding-bottom: 30px;
}

.footer-brand {
    max-width: 460px;
}

.footer-logo-image {
    display: inline-flex;
    width: 218px;
}

.footer-logo-img {
    width: 210px;
    height: auto;
    object-fit: contain;
}

.footer-brand p {
    max-width: 410px;
    margin-top: 14px;
    color: var(--color-muted-light);
    font-size: 0.92rem;
    line-height: 1.65;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.22s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-contact {
    display: flex;
    justify-content: flex-end;
}

.footer-contact a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    background: rgba(0, 200, 255, 0.08);
    border: 1px solid rgba(0, 200, 255, 0.2);
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}

.footer-contact a:hover {
    transform: translateY(-2px);
    background: rgba(0, 200, 255, 0.13);
    border-color: rgba(0, 200, 255, 0.38);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

.footer-contact span {
    overflow-wrap: anywhere;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.84rem;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 980px) {
    html {
        scroll-padding-top: 88px;
    }

    .onepage-section-anchor {
        scroll-margin-top: 88px;
    }

    .site-header {
        padding: 9px 0;
        background: rgba(2, 8, 23, 0.84);
        border-bottom: 1px solid rgba(0, 200, 255, 0.12);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
    }

    .site-header.is-scrolled {
        padding: 8px 0;
    }

    .header-container {
        min-height: 62px;
        gap: 16px;
    }

    .brand-logo-box {
        width: 214px;
        height: 56px;
    }

    .brand-logo {
        width: 204px;
        max-height: 52px;
    }

    .site-header.is-scrolled .brand-logo-box {
        width: 194px;
        height: 52px;
    }

    .site-header.is-scrolled .brand-logo {
        width: 186px;
        max-height: 48px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(0, 200, 255, 0.24);
        border-radius: 14px;
        color: #ffffff;
        background: rgba(0, 200, 255, 0.10);
        cursor: pointer;
    }

    .menu-toggle svg {
        width: 22px;
        height: 22px;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border: 1px solid rgba(0, 200, 255, 0.18);
        border-radius: 18px;
        background:
            linear-gradient(
                145deg,
                rgba(2, 8, 23, 0.98),
                rgba(7, 28, 54, 0.95)
            );
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 14px 15px;
        border-radius: 13px;
        color: rgba(255, 255, 255, 0.82);
        background: rgba(255, 255, 255, 0.035);
        font-size: 0.96rem;
    }

    .main-nav a:hover,
    .main-nav a.is-active,
    .main-nav a[aria-current="page"] {
        color: #ffffff;
        background: rgba(0, 200, 255, 0.11);
        transform: none;
    }

    .main-nav a::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding-bottom: 22px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo-image {
        width: 190px;
        margin-inline: auto;
    }

    .footer-logo-img {
        width: 185px;
        margin-inline: auto;
    }

    .footer-brand p {
        max-width: 340px;
        margin-inline: auto;
        font-size: 0.88rem;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .footer-contact {
        justify-content: center;
    }

    .footer-contact a {
        max-width: 100%;
        min-height: 42px;
        padding: 0 13px;
        font-size: 0.84rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
        font-size: 0.78rem;
    }

    .page-loader-box img {
        width: 96px;
    }
}

@media (max-width: 430px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .brand-logo-box {
        width: 184px;
        height: 52px;
    }

    .brand-logo {
        width: 176px;
        max-height: 48px;
    }

    .site-header.is-scrolled .brand-logo-box {
        width: 172px;
    }

    .site-header.is-scrolled .brand-logo {
        width: 164px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .footer-nav {
        display: grid;
        grid-template-columns: repeat(2, auto);
    }

    .footer-contact span {
        font-size: 0.78rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

/* =========================================================
   AJUSTE FINAL — MENU TRANSLÚCIDO PREMIUM
========================================================= */

.site-header {
    background:
        linear-gradient(
            180deg,
            rgba(2, 8, 23, 0.42) 0%,
            rgba(2, 8, 23, 0.24) 70%,
            rgba(2, 8, 23, 0) 100%
        );
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 200, 255, 0.06);
}

.site-header.is-scrolled {
    background:
        linear-gradient(
            135deg,
            rgba(2, 8, 23, 0.78),
            rgba(7, 28, 54, 0.62)
        );
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-bottom-color: rgba(0, 200, 255, 0.18);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.30),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.header-container {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.brand-logo-box {
    position: relative;
}

.brand-logo-box::before {
    content: "";
    position: absolute;
    inset: 6px 12px;
    z-index: -1;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(0, 200, 255, 0.22), transparent 68%);
    filter: blur(12px);
    opacity: 0.85;
}

.brand-logo {
    filter:
        brightness(1.16)
        contrast(1.08)
        drop-shadow(0 0 18px rgba(0, 200, 255, 0.30))
        drop-shadow(0 14px 28px rgba(0, 0, 0, 0.34));
}

.main-nav {
    padding: 8px 16px;
    border: 1px solid rgba(0, 200, 255, 0.12);
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            rgba(2, 8, 23, 0.22),
            rgba(8, 28, 60, 0.16)
        );
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 42px rgba(0, 0, 0, 0.16);
}

.main-nav a {
    padding: 10px 4px;
}

.main-nav a.is-active,
.main-nav a[aria-current="page"] {
    color: #ffffff;
}

.main-nav a::after {
    bottom: -2px;
}

@media (max-width: 980px) {
    .main-nav {
        padding: 12px;
        border-radius: 18px;
        background:
            linear-gradient(
                145deg,
                rgba(2, 8, 23, 0.96),
                rgba(7, 28, 54, 0.92)
            );
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    }

    .main-nav a {
        padding: 14px 15px;
    }
}

/* =========================================================
   AJUSTE FINAL — RODAPÉ COM BOTÃO VISÍVEL E SEM E-MAIL
========================================================= */

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(220px, 0.55fr);
    align-items: center;
    gap: 36px;
}

.footer-action {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-action-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    background:
        linear-gradient(
            135deg,
            rgba(0, 123, 255, 0.34),
            rgba(0, 200, 255, 0.22)
        );
    border: 1px solid rgba(0, 200, 255, 0.34);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.24),
        0 0 24px rgba(0, 200, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.footer-action-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(0, 200, 255, 0.58);
    background:
        linear-gradient(
            135deg,
            rgba(0, 123, 255, 0.46),
            rgba(0, 200, 255, 0.32)
        );
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.30),
        0 0 34px rgba(0, 200, 255, 0.14);
}

.footer-action-button svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.4;
    color: var(--color-accent);
}

/* Remove estilos antigos do e-mail do rodapé, caso ainda existam */
.footer-contact {
    display: none !important;
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }

    .footer-action {
        justify-content: center;
    }

    .footer-action-button {
        min-height: 46px;
        padding: 0 18px;
    }
}

@media (max-width: 520px) {
    .footer-action-button {
        width: 100%;
        max-width: 280px;
    }

    .footer-bottom {
        gap: 6px;
        text-align: center;
    }
}

/* =========================================================
   AJUSTE FINAL — RODAPÉ SEM BOTÃO DE PROPOSTA
========================================================= */

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;
}

.footer-action,
.footer-contact {
    display: none !important;
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }
}

/* =========================================================
   AJUSTE MOBILE — MENU / LOGO MAIS À ESQUERDA
========================================================= */

@media (max-width: 760px) {
    .site-header {
        padding: 10px 0;
    }

    .site-header .container.header-container {
        width: 100%;
        max-width: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand,
    .brand-image {
        margin: 0;
        padding: 0;
    }

    .brand-logo-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .brand-logo {
        width: 132px;
        max-height: 42px;
        object-fit: contain;
        object-position: left center;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        min-width: 44px;
        margin-left: auto;
        border-radius: 15px;
    }
}

@media (max-width: 430px) {
    .site-header .container.header-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand-logo {
        width: 124px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
}

/* =========================================================
   RODAPÉ COMPACTO — SINALTECH SOFTWARE
========================================================= */

.compact-footer {
    position: relative;
    padding: 34px 0 18px;
    border-top: 1px solid rgba(0, 200, 255, 0.14);
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 200, 255, 0.08), transparent 34%),
        linear-gradient(
            180deg,
            rgba(2, 8, 23, 0.96),
            rgba(2, 8, 23, 1)
        );
}

.compact-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compact-footer-brand {
    display: grid;
    gap: 10px;
    max-width: 430px;
}

.compact-footer-logo {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.compact-footer-logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 0 16px rgba(0, 200, 255, 0.18))
        drop-shadow(0 10px 22px rgba(0, 0, 0, 0.26));
}

.compact-footer-brand p {
    max-width: 390px;
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.92rem;
    line-height: 1.55;
}

.compact-footer-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.compact-footer-nav a {
    position: relative;
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        color 0.22s ease,
        transform 0.22s ease;
}

.compact-footer-nav a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.compact-footer-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-accent, #00c8ff);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.compact-footer-nav a:hover::after {
    transform: scaleX(1);
}

.compact-footer-bottom {
    padding-top: 16px;
    text-align: left;
}

.compact-footer-bottom p {
    color: rgba(226, 232, 240, 0.56);
    font-size: 0.82rem;
    font-weight: 600;
}

/* Remove conflitos de versões antigas do rodapé */
.site-footer .footer-grid,
.site-footer .footer-bottom,
.site-footer .footer-brand,
.site-footer .footer-nav,
.site-footer .footer-contact,
.site-footer .footer-action {
    display: none !important;
}

/* Mantém o novo rodapé visível */
.site-footer .compact-footer-inner,
.site-footer .compact-footer-bottom,
.site-footer .compact-footer-brand,
.site-footer .compact-footer-nav {
    display: flex !important;
}

.site-footer .compact-footer-brand {
    display: grid !important;
}

/* =========================================================
   MOBILE — RODAPÉ COMPACTO
========================================================= */

@media (max-width: 760px) {
    .compact-footer {
        padding: 26px 0 14px;
    }

    .compact-footer-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        padding-bottom: 18px;
        text-align: center;
    }

    .compact-footer-brand {
        justify-items: center;
        gap: 8px;
        max-width: 100%;
    }

    .compact-footer-logo img {
        width: 126px;
    }

    .compact-footer-brand p {
        max-width: 270px;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .compact-footer-nav {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 18px;
        max-width: 260px;
    }

    .compact-footer-nav a {
        font-size: 0.84rem;
    }

    .compact-footer-bottom {
        padding-top: 13px;
        text-align: center;
    }

    .compact-footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.45;
    }
}

@media (max-width: 430px) {
    .compact-footer {
        padding: 24px 0 12px;
    }

    .compact-footer-logo img {
        width: 116px;
    }

    .compact-footer-brand p {
        max-width: 245px;
    }

    .compact-footer-nav {
        gap: 8px 15px;
    }
}

/* =========================================================
   AJUSTE FINAL — CENTRALIZAR COPYRIGHT NO RODAPÉ
========================================================= */

.site-footer .compact-footer-bottom {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.site-footer .compact-footer-bottom p {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* =========================================================
   RODAPÉ — LINKS LEGAIS
========================================================= */

.compact-footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 14px;
    color: rgba(226, 232, 240, 0.54);
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
}

.compact-footer-legal a {
    color: rgba(226, 232, 240, 0.62);
    text-decoration: none;
    transition: color 0.22s ease;
}

.compact-footer-legal a:hover {
    color: var(--color-accent, #00c8ff);
}

.compact-footer-legal span {
    color: rgba(226, 232, 240, 0.32);
}

.site-footer .compact-footer-bottom {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.site-footer .compact-footer-bottom p {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 520px) {
    .compact-footer-legal {
        flex-wrap: wrap;
        gap: 6px 9px;
        padding-top: 12px;
        font-size: 0.72rem;
    }
}

/* =========================================================
   AJUSTE — CNPJ NO RODAPÉ
========================================================= */

.compact-footer-cnpj {
    display: block;
    width: fit-content;
    margin-top: 2px;
    padding: 5px 10px;
    border: 1px solid rgba(0, 200, 255, 0.16);
    border-radius: 999px;
    color: rgba(226, 232, 240, 0.62);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: rgba(0, 200, 255, 0.045);
}

@media (max-width: 760px) {
    .compact-footer-cnpj {
        margin-inline: auto;
        font-size: 0.7rem;
        padding: 5px 9px;
    }
}

/* =========================================================
   AJUSTE FINAL — CENTRALIZAR COPYRIGHT NO RODAPÉ
========================================================= */

.site-footer .compact-footer-bottom {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
    text-align: center;
}

.site-footer .compact-footer-bottom p {
    width: 100%;
    margin: 0 auto;
    color: rgba(226, 232, 240, 0.56);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.22;
    text-align: center;
}

/* =========================================================
   RODAPÉ — LINKS LEGAIS
========================================================= */

.compact-footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 8px;
    margin-bottom: 4px;
    color: rgba(226, 232, 240, 0.54);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.18;
    text-align: center;
}

.compact-footer-legal a {
    color: rgba(226, 232, 240, 0.62);
    line-height: 1.18;
    text-decoration: none;
    transition: color 0.22s ease;
}

.compact-footer-legal a:hover {
    color: var(--color-accent, #00c8ff);
}

.compact-footer-legal span {
    color: rgba(226, 232, 240, 0.32);
    line-height: 1;
}

/* =========================================================
   AJUSTE — CNPJ NO RODAPÉ
========================================================= */

.compact-footer-cnpj {
    display: block;
    width: fit-content;
    margin-top: 0;
    padding: 4px 9px;
    border: 1px solid rgba(0, 200, 255, 0.16);
    border-radius: 999px;
    color: rgba(226, 232, 240, 0.62);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.02em;
    background: rgba(0, 200, 255, 0.045);
}

/* =========================================================
   AJUSTE FINAL — RODAPÉ COMPACTO / ESPAÇAMENTO
========================================================= */

.compact-footer {
    padding: 30px 0 12px;
}

.compact-footer-inner {
    gap: 22px;
    padding-bottom: 14px;
}

.compact-footer-brand {
    gap: 7px;
}

.compact-footer-brand p {
    margin: 0;
    line-height: 1.38;
}

.compact-footer-bottom {
    padding-top: 8px;
}

.site-footer .compact-footer-legal + .compact-footer-bottom {
    margin-top: 0;
}

/* Remove efeito dos ajustes antigos que não são usados no rodapé compacto */
.footer-bottom,
.footer-legal,
.footer-links,
.footer-copy {
    margin: 0;
}

/* =========================================================
   MOBILE — RODAPÉ COMPACTO / ESPAÇAMENTO
========================================================= */

@media (max-width: 760px) {
    .compact-footer {
        padding: 22px 0 10px;
    }

    .compact-footer-inner {
        gap: 13px;
        padding-bottom: 12px;
    }

    .compact-footer-brand {
        gap: 6px;
    }

    .compact-footer-logo img {
        width: 116px;
    }

    .compact-footer-brand p {
        max-width: 260px;
        font-size: 0.78rem;
        line-height: 1.32;
    }

    .compact-footer-nav {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 7px 14px;
        max-width: 260px;
    }

    .compact-footer-nav a {
        font-size: 0.8rem;
        line-height: 1.15;
    }

    .compact-footer-legal {
        flex-wrap: wrap;
        gap: 4px 7px;
        padding-top: 7px;
        margin-bottom: 3px;
        font-size: 0.69rem;
        line-height: 1.12;
    }

    .compact-footer-legal a {
        line-height: 1.12;
    }

    .compact-footer-cnpj {
        margin-inline: auto;
        margin-top: 0;
        padding: 4px 8px;
        font-size: 0.66rem;
        line-height: 1.12;
    }

    .site-footer .compact-footer-bottom {
        padding-top: 6px;
    }

    .site-footer .compact-footer-bottom p {
        font-size: 0.69rem;
        line-height: 1.16;
    }
}

@media (max-width: 430px) {
    .compact-footer {
        padding: 20px 0 9px;
    }

    .compact-footer-logo img {
        width: 110px;
    }

    .compact-footer-brand p {
        max-width: 240px;
    }

    .compact-footer-nav {
        gap: 6px 12px;
    }

    .compact-footer-legal {
        gap: 4px 6px;
        font-size: 0.67rem;
    }

    .site-footer .compact-footer-bottom p {
        font-size: 0.67rem;
    }
}