/* === Institutional Home Styles === */

:root {
    --institutional-bg: #090a0f;
    --institutional-text: #f0f2f5;
    --institutional-muted: #a7b1c4;
    --institutional-focus: rgba(0, 240, 255, 0.35);
}

/* Base e scrollbar */
html,
body {
    background-color: var(--institutional-bg);
}

body {
    color: var(--institutional-text);
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--institutional-bg);
}

::-webkit-scrollbar-thumb {
    background: #8b93a5;
    border-radius: 4px;
}

/* Noise Overlay (Textura Global de Microfone/Estúdio) */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    mix-blend-mode: overlay;
    will-change: opacity;
}

/* Glassmorphism Classes (Vitrines / Vidro Acústico) */
.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-nav {
    background: rgba(9, 10, 15, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Ambient Lights (Iluminação Cênica Loja x Estúdio) */
.ambient-light-cyan {
    position: absolute;
    border-radius: 50%;
    background: #00f0ff;
    filter: blur(140px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.ambient-light-gold {
    position: absolute;
    border-radius: 50%;
    background: #ffd700;
    filter: blur(140px);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

#stack-card-1,
#stack-card-2,
#stack-card-3 {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.stack-glass {
    position: relative;
    isolation: isolate;
    contain: layout paint;
    overflow: hidden;
    background:
        linear-gradient(150deg, rgba(13, 18, 29, 0.92) 0%, rgba(11, 16, 25, 0.88) 56%, rgba(15, 21, 34, 0.9) 100%),
        rgba(10, 14, 22, 0.76);
    border: 1px solid rgba(190, 211, 238, 0.16);
    backdrop-filter: blur(12px) saturate(110%);
    -webkit-backdrop-filter: blur(12px) saturate(110%);
    box-shadow: 0 20px 45px rgba(2, 8, 16, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stack-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(120% 82% at 0% 0%, rgba(0, 240, 255, 0.12), transparent 60%),
        radial-gradient(92% 72% at 100% 100%, rgba(255, 215, 0, 0.11), transparent 62%);
    opacity: 0.74;
    pointer-events: none;
}

.stack-glass::after {
    content: "";
    position: absolute;
    top: 0;
    left: 7%;
    width: 86%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    opacity: 0.7;
    pointer-events: none;
}

.stack-glass > * {
    position: relative;
    z-index: 1;
}

.stack-glass.is-transitioning {
    will-change: transform, opacity;
}

/* Hero Gradient Text */
.text-gradient {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navegação interna (links da barra superior) */
#navbar .nav-link {
    color: #b4bfd4;
    text-decoration: none;
    transition: color 0.24s ease;
}

#navbar .nav-link:hover,
#navbar .nav-link:focus-visible {
    color: #fff;
}

/* Botões e links CTA (padronização de contraste e estados) */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid transparent;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.2;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.cta-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--institutional-focus);
}

.cta-btn:disabled,
.cta-btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cta-btn--sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.83rem;
}

.cta-btn--md {
    padding: 0.78rem 1.45rem;
    font-size: 0.95rem;
}

.cta-btn--lg {
    padding: 1rem 2rem;
    font-size: 1.08rem;
}

.cta-btn--cyan {
    background: #00f0ff;
    color: #081017;
    border-color: rgba(0, 240, 255, 0.75);
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.22);
}

.cta-btn--cyan:hover {
    background: #fff;
    color: #090a0f;
}

.cta-btn--light {
    background: #fff;
    color: #090a0f;
    border-color: rgba(255, 255, 255, 0.92);
}

.cta-btn--light:hover {
    background: #00f0ff;
    color: #081017;
    border-color: rgba(0, 240, 255, 0.8);
}

.cta-btn--gold {
    background: #ffd700;
    color: #090a0f;
    border-color: rgba(255, 215, 0, 0.75);
}

.cta-btn--gold:hover {
    background: #fff;
    color: #090a0f;
}

.cta-btn--dark {
    background: #090a0f;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.14);
}

.cta-btn--dark:hover {
    background: #ffd700;
    color: #090a0f;
    border-color: rgba(255, 215, 0, 0.85);
}

.cta-btn--emerald {
    background: #34d399;
    color: #04130d;
    border-color: rgba(52, 211, 153, 0.8);
}

.cta-btn--emerald:hover {
    background: #fff;
    color: #0a1510;
}

.cta-btn--ghost-cyan {
    background: rgba(0, 240, 255, 0.13);
    color: #87f6ff;
    border-color: rgba(0, 240, 255, 0.3);
}

.cta-btn--ghost-cyan:hover {
    background: #00f0ff;
    color: #090a0f;
}

.cta-btn--outline-light {
    background: rgba(255, 255, 255, 0.07);
    color: #d6deec;
    border-color: rgba(255, 255, 255, 0.22);
}

.cta-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.modal-close-btn {
    color: #d4dded;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: #fff;
}

/* Painéis e chips de status */
.panel-action-btn {
    background: rgba(255, 255, 255, 0.12);
    color: #f4f7ff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.panel-action-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.panel-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.42rem;
    font-size: 0.72rem;
    color: #e4ebf7;
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.panel-chip--active {
    color: #8ef7ff;
    background: rgba(0, 240, 255, 0.14);
    border-color: rgba(0, 240, 255, 0.34);
}

/* Cards da seção Soluções (provas de valor) */
.solution-proof-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.56rem;
}

.solution-proof-list li {
    position: relative;
    padding-left: 1.25rem;
    color: #c5d2e5;
    font-size: 0.92rem;
    line-height: 1.5;
}

.solution-proof-list li::before {
    content: "";
    position: absolute;
    top: 0.45rem;
    left: 0;
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 999px;
    background: #00f0ff;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}

.solution-proof-list strong {
    color: #fff;
}

/* Card 01 - Economia e conformidade */
.compliance-panel {
    width: min(100%, 500px);
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(9, 13, 22, 0.95) 0%, rgba(7, 11, 19, 0.9) 100%);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 1rem;
}

.compliance-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.compliance-panel__eyebrow {
    margin: 0;
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.63rem;
    color: #9cb2cf;
}

.compliance-panel__title {
    margin: 0.2rem 0 0;
    font-size: 0.92rem;
    font-family: "Space Grotesk", sans-serif;
    color: #f5f8ff;
    font-weight: 700;
}

.compliance-panel__status {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(52, 211, 153, 0.42);
    background: rgba(52, 211, 153, 0.12);
    color: #a7f6d7;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.52rem;
    white-space: nowrap;
}

.compliance-table {
    border-radius: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 10, 16, 0.8);
    overflow: hidden;
}

.compliance-table__row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: 0.5rem;
    padding: 0.55rem 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    color: #d9e4f3;
}

.compliance-table__row span {
    line-height: 1.35;
}

.compliance-table__row--head {
    border-top: 0;
    font-family: "JetBrains Mono", monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.63rem;
    color: #8ba1bd;
    background: rgba(255, 255, 255, 0.03);
}

.compliance-table__row .is-negative {
    color: #f2bac0;
}

.compliance-table__row .is-positive {
    color: #9ff2cf;
}

.compliance-panel__gain {
    margin-top: 0.8rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.08);
    padding: 0.55rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.compliance-panel__gain span {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.63rem;
    letter-spacing: 0.05em;
    color: #f7e4a1;
}

.compliance-panel__gain strong {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 700;
}

.compliance-panel__note {
    margin: 0.65rem 0 0;
    font-size: 0.64rem;
    color: #8ba1bd;
}

/* Card 02 - Spots em tempo real */
.media-spot-shell {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.35rem;
    border-radius: 1.8rem;
    border: 1px solid rgba(165, 225, 255, 0.18);
    background: linear-gradient(160deg, rgba(8, 17, 28, 0.88) 0%, rgba(8, 14, 24, 0.74) 58%, rgba(13, 21, 33, 0.84) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -28px 80px rgba(0, 0, 0, 0.36);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.media-spot-shell::before {
    content: "";
    position: absolute;
    inset: -20% -30%;
    background: radial-gradient(circle at 50% 72%, rgba(0, 240, 255, 0.2), transparent 58%);
    pointer-events: none;
}

.media-spot-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 468px);
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(180deg, rgba(8, 11, 19, 0.9) 0%, rgba(7, 12, 20, 0.84) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 1rem;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.media-spot-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.media-spot-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(0, 240, 255, 0.28);
    background: rgba(0, 240, 255, 0.1);
    color: #94f8ff;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
}

.media-spot-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #ecf4ff;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
}

.media-spot-status-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 9999px;
    background: #34d399;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.85);
    animation: mediaSpotPulse 1.5s ease-in-out infinite;
}

.media-spot-panel__field {
    position: relative;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(8, 14, 24, 0.96) 0%, rgba(6, 11, 19, 0.9) 100%);
    overflow: hidden;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.78rem;
}

.media-spot-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.media-spot-flow__step {
    border-radius: 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.44rem 0.48rem;
}

.media-spot-flow__step span {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    color: #8fb0cf;
    margin-bottom: 0.2rem;
}

.media-spot-flow__step p {
    margin: 0;
    color: #dce8f9;
    font-size: 0.68rem;
    line-height: 1.35;
}

.media-spot-flow__step.is-complete {
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.08);
}

.media-spot-flow__step.is-live {
    border-color: rgba(255, 215, 0, 0.34);
    background: rgba(255, 215, 0, 0.09);
}

.media-spot-chart {
    position: relative;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(180deg, rgba(6, 10, 17, 0.94) 0%, rgba(4, 8, 14, 0.92) 100%);
    padding: 0.75rem 0.72rem 0.65rem;
    overflow: hidden;
}

.media-spot-chart::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 52px),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px);
    pointer-events: none;
}

.media-spot-chart__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.media-spot-chart__header span {
    color: #c4d5ea;
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    font-family: "JetBrains Mono", monospace;
}

.media-spot-chart__header strong {
    color: #8ef7ff;
    font-size: 0.72rem;
    font-family: "Space Grotesk", sans-serif;
    text-shadow: 0 0 14px rgba(0, 240, 255, 0.25);
}

.media-spot-bars {
    position: relative;
    z-index: 1;
    height: 122px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
}

.media-spot-bar {
    position: relative;
    width: clamp(2rem, 4vw, 2.35rem);
    border-radius: 0.48rem 0.48rem 0.18rem 0.18rem;
    border: 1px solid rgba(142, 247, 255, 0.45);
    background: linear-gradient(180deg, rgba(134, 242, 255, 0.95) 0%, rgba(25, 141, 178, 0.66) 58%, rgba(9, 30, 43, 0.4) 100%);
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform-origin: bottom center;
    animation: mediaSpotBarPulse 2.8s ease-in-out infinite;
}

.media-spot-bar em {
    position: absolute;
    top: -1.15rem;
    left: 50%;
    transform: translateX(-50%);
    font-style: normal;
    font-family: "JetBrains Mono", monospace;
    color: #f2f7ff;
    font-size: 0.62rem;
    white-space: nowrap;
}

.media-spot-bar small {
    position: absolute;
    left: 50%;
    bottom: -1.15rem;
    transform: translateX(-50%);
    color: #9bb1ce;
    font-size: 0.56rem;
    font-family: "JetBrains Mono", monospace;
    white-space: nowrap;
}

.media-spot-bar--cold {
    border-color: rgba(209, 225, 255, 0.18);
    background: linear-gradient(180deg, rgba(208, 221, 240, 0.35) 0%, rgba(105, 120, 142, 0.28) 62%, rgba(20, 28, 40, 0.3) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.media-spot-bar--gold {
    border-color: rgba(255, 221, 125, 0.68);
    background: linear-gradient(180deg, rgba(255, 236, 167, 0.96) 0%, rgba(255, 195, 67, 0.72) 58%, rgba(85, 54, 10, 0.42) 100%);
    box-shadow: 0 0 18px rgba(255, 213, 64, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.media-spot-bar--1 {
    height: 45px;
    animation-delay: 0.1s;
}

.media-spot-bar--2 {
    height: 78px;
    animation-delay: 0.35s;
}

.media-spot-bar--3 {
    height: 104px;
    animation-delay: 0.2s;
}

.media-spot-bar--4 {
    height: 94px;
    animation-delay: 0.55s;
}

.media-spot-bar--5 {
    height: 68px;
    animation-delay: 0.85s;
}

.media-spot-wave {
    position: absolute;
    left: -35%;
    right: -35%;
    bottom: 2rem;
    height: 2px;
    z-index: 0;
    background: linear-gradient(90deg, transparent, rgba(145, 245, 255, 0.15) 20%, rgba(0, 240, 255, 0.65) 50%, rgba(145, 245, 255, 0.15) 80%, transparent);
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.3));
    animation: mediaSpotWaveMove 3.6s linear infinite;
}

.media-spot-panel__footer {
    margin-top: 0.75rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    color: #c6d5ea;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.67rem;
    letter-spacing: 0.05em;
    gap: 0.7rem;
}

.media-spot-panel__footer strong {
    color: #8ef7ff;
    font-size: 0.93rem;
    text-shadow: 0 0 14px rgba(0, 240, 255, 0.3);
    white-space: nowrap;
}

/* Card 03 - Escala de rede */
.network-panel {
    width: min(100%, 500px);
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(180deg, rgba(9, 12, 19, 0.94) 0%, rgba(8, 11, 18, 0.88) 100%);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.network-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}

.network-panel__eyebrow {
    margin: 0;
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.63rem;
    color: #8ea7c4;
}

.network-panel__title {
    margin: 0.2rem 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem;
    color: #f0f5ff;
}

.network-panel__status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(52, 211, 153, 0.38);
    background: rgba(52, 211, 153, 0.1);
    padding: 0.26rem 0.5rem;
    color: #a4f3d4;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.61rem;
    letter-spacing: 0.06em;
}

.network-panel__status span {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: #34d399;
    box-shadow: 0 0 9px rgba(52, 211, 153, 0.72);
}

.network-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.network-kpis article {
    border-radius: 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.45rem 0.48rem;
    display: flex;
    flex-direction: column;
    gap: 0.16rem;
}

.network-kpis article span {
    font-size: 0.62rem;
    color: #91a8c7;
    line-height: 1.3;
}

.network-kpis article strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
    color: #f7fbff;
}

.network-sync-list {
    display: flex;
    flex-direction: column;
    gap: 0.36rem;
}

.network-sync-item {
    border-radius: 0.68rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.46rem 0.55rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    color: #d7e3f2;
    font-size: 0.69rem;
}

.network-sync-item strong {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
}

.network-sync-item .is-ok {
    color: #9ff2ce;
}

.network-sync-item .is-live {
    color: #8ef7ff;
}

.network-panel__dispatch {
    border-radius: 0.8rem;
    border: 1px solid rgba(0, 240, 255, 0.16);
    background: rgba(0, 240, 255, 0.08);
    padding: 0.55rem 0.62rem;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.network-panel__dispatch span {
    font-size: 0.67rem;
    color: #cce9f7;
    line-height: 1.35;
}

.network-panel__dispatch strong {
    color: #8ef7ff;
    font-size: 0.75rem;
}

@keyframes mediaSpotBarPulse {
    0%,
    100% {
        transform: scaleY(0.88);
    }
    48% {
        transform: scaleY(1.05);
    }
    70% {
        transform: scaleY(0.96);
    }
}

@keyframes mediaSpotWaveMove {
    0% {
        transform: translateX(-14%);
    }
    100% {
        transform: translateX(14%);
    }
}

@keyframes mediaSpotPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.28);
        opacity: 0.65;
    }
}

@media (max-width: 768px) {
    #stack-card-1,
    #stack-card-2,
    #stack-card-3 {
        height: auto !important;
        min-height: 92vh;
    }

    .solution-proof-list li {
        font-size: 0.84rem;
    }

    .compliance-table__row {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .compliance-table__row--head {
        display: none;
    }

    .compliance-table__row span:first-child {
        color: #9db4ce;
        font-family: "JetBrains Mono", monospace;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.58rem;
    }

    .compliance-table__row .is-negative,
    .compliance-table__row .is-positive {
        font-size: 0.72rem;
    }

    .media-spot-shell {
        padding: 1rem;
    }

    .media-spot-panel__field {
        padding: 0.65rem;
    }

    .media-spot-flow {
        grid-template-columns: 1fr;
    }

    .media-spot-bars {
        height: 112px;
    }

    .media-spot-bar {
        width: 2rem;
    }

    .media-spot-bar small {
        bottom: -1rem;
        font-size: 0.5rem;
    }

    .network-kpis {
        grid-template-columns: 1fr;
    }

    .network-sync-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.28rem;
    }
}

@media (max-width: 1200px), (prefers-reduced-motion: reduce) {
    .noise-overlay {
        display: none;
    }

    .ambient-light-cyan,
    .ambient-light-gold {
        filter: blur(95px);
        opacity: 0.1;
    }

    .glass-panel {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .stack-glass {
        backdrop-filter: blur(8px) saturate(105%);
        -webkit-backdrop-filter: blur(8px) saturate(105%);
        background:
            linear-gradient(150deg, rgba(13, 18, 29, 0.95) 0%, rgba(11, 16, 25, 0.92) 56%, rgba(15, 21, 34, 0.93) 100%),
            rgba(10, 14, 22, 0.84);
    }

    .stack-glass::before {
        opacity: 0.46;
    }

}

@media (prefers-reduced-motion: reduce) {
    .stack-glass::before,
    .stack-glass::after {
        opacity: 0.3;
    }

    .media-spot-status-dot,
    .media-spot-bar,
    .media-spot-wave {
        animation: none !important;
    }
}

/* Inputs/Select da modal */
#trial-lead-form input::placeholder,
#trial-token-form input::placeholder {
    color: rgba(216, 225, 238, 0.72);
}

#trial-lead-form select option {
    color: #090a0f;
    background: #fff;
}

/* Shuffler Cards */
.shuffler-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: top center;
    border-radius: 1.35rem;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 1.25rem;
    background: linear-gradient(165deg, rgba(9, 12, 18, 0.88) 0%, rgba(12, 18, 28, 0.8) 58%, rgba(8, 12, 20, 0.86) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.54),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(26px) saturate(160%);
    -webkit-backdrop-filter: blur(26px) saturate(160%);
    --tone-rgb: 0, 240, 255;
    --tone-color: #8ef7ff;
}

.shuffler-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 15%, rgba(var(--tone-rgb), 0.32), transparent 55%),
        radial-gradient(circle at 78% 82%, rgba(var(--tone-rgb), 0.2), transparent 60%),
        linear-gradient(180deg, rgba(var(--tone-rgb), 0.1), rgba(6, 8, 13, 0.28));
    opacity: 0.92;
}

.shuffler-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 7%;
    width: 86%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
    opacity: 0.8;
}

.shuffler-card.tone-cyan {
    --tone-rgb: 0, 240, 255;
    --tone-color: #8ef7ff;
}

.shuffler-card.tone-gold {
    --tone-rgb: 255, 215, 0;
    --tone-color: #ffe07a;
}

.shuffler-card.tone-emerald {
    --tone-rgb: 52, 211, 153;
    --tone-color: #82f6cd;
}

.shuffler-value {
    color: var(--tone-color);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: clamp(1.7rem, 4.2vw, 2.25rem);
    letter-spacing: -0.03em;
    line-height: 1;
    text-shadow: 0 0 18px rgba(var(--tone-rgb), 0.22);
}

.shuffler-label {
    color: rgba(230, 236, 250, 0.85);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-align: center;
    text-shadow: 0 0 8px rgba(5, 8, 14, 0.45);
}

/* Typewriter Cursor */
.cursor-blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Equalizer Animation (Estúdio) */
@keyframes eq {
    0% {
        height: 10%;
    }
    50% {
        height: 100%;
    }
    100% {
        height: 10%;
    }
}

.eq-bar {
    animation: eq 1.5s ease-in-out infinite alternate;
}

.eq-bar:nth-child(2) {
    animation-delay: 0.2s;
}

.eq-bar:nth-child(3) {
    animation-delay: 0.4s;
}

.eq-bar:nth-child(4) {
    animation-delay: 0.1s;
}

.eq-bar:nth-child(5) {
    animation-delay: 0.5s;
}
