﻿:root {
    color-scheme: dark;
    font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
    --bg: #02050a;
    --panel: rgba(9, 16, 27, .94);
    --panel-soft: rgba(13, 22, 35, .86);
    --line: rgba(255, 255, 255, .09);
    --violet: #9b56ff;
    --cyan: #00aef3;
    --amber: #ffbf00;
    --orange: #ff4b27;
    --green: #33cf75;
    --lime: #b7e900;
    --teal: #13dbc6;
    --text: #f0f4fb;
    --muted: #a7b0bd;
    --dim: #788492;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    color: var(--text);
    background: radial-gradient(circle at 18% 6%, rgba(0, 174, 243, .08), transparent 28rem),
        radial-gradient(circle at 85% 12%, rgba(155, 86, 255, .10), transparent 30rem),
        linear-gradient(135deg, #02050a 0%, #06111d 52%, #02050a 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    color: var(--muted);
    line-height: 1.45;
    margin: 0;
}

h1, h2, h3 {
    margin: 0;
}

button {
    font: inherit;
    color: inherit;
}

.app-shell,
.home-dashboard {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.home-topbar {
    height: 39px;
    display: grid;
    align-items: center;
    border-bottom: 0.75px solid var(--line);
    background: rgba(0, 0, 0, .46);
}

.brand-area {
    height: 39px;
    display: flex;
    align-items: center;
    padding-left: 16.5px;
    border-right: 0.75px solid var(--line);
    min-width: 0;
}

.brand-logo {
    font-size: 42px;
    line-height: 1;
    color: #f8b52c;
    font-weight: 800;
    letter-spacing: -0.11em;
}

.brand-name {
    font-weight: 650;
    letter-spacing: .04em;
    white-space: nowrap;
}

.main-nav {
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10.5px, 1.4vw, 21px);
    min-width: 0;
    overflow: hidden;
}

.main-nav a {
    height: 39px;
    display: inline-flex;
    align-items: center;
    position: relative;
    color: #eef1f6;
    font-size: 15.75px;
    font-weight: 650;
    white-space: nowrap;
}

.main-nav a.active {
    color: #b777ff;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4.5px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--violet), transparent);
}

.top-actions {
    height: 39px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 16.5px;
    border-left: 0.75px solid var(--line);
}

.top-register {
    height: 28.5px;
    border: 0.75px solid rgba(155, 86, 255, .65);
    border-radius: 4.5px;
    color: #c899ff;
    background: rgba(34, 14, 64, .30);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15.75px;
    font-weight: 700;
}

.language-pill {
    font-size: 15.75px;
    color: #f4f4f7;
}

.four-column-dashboard {
    height: calc(100vh - 39px);
    display: grid;
    min-height: 0;
    overflow: hidden;
}

.dashboard-panel {
    min-height: 0;
    height: 100%;
    border-right: 0.75px solid var(--line);
    background: linear-gradient(180deg, rgba(12, 20, 32, .90), rgba(5, 11, 19, .96));
    overflow: hidden;
}

.panel-one {
    grid-template-rows: auto 142.5px minmax(82.5px, 1fr) auto;
    background: rgba(4, 11, 19, .82);
}

.intro-block h1 {
    max-width: 258.75px;
    font-size: 17.719px;
    line-height: 1.28;
    letter-spacing: -.03em;
    font-weight: 560;
}

.intro-accent {
    max-width: 262.5px;
    margin-top: 9px;
    color: var(--amber);
    font-size: 18px;
    font-weight: 540;
}

.intro-line {
    width: 100%;
    height: 0.75px;
    margin: 11.25px 0 12px;
    background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(155,86,255,.72), rgba(255,255,255,.06));
}

.intro-block p:last-child {
    max-width: 262.5px;
    font-size: 12.656px;
}

.action-panel,
.brand-panel {
    border: 0.75px solid rgba(255,255,255,.07);
    border-radius: 6px;
    background: rgba(4, 10, 17, .46);
    overflow: hidden;
}

.action-scroll,
.brand-scroll,
.project-scroll,
.meta-scroll,
.content-description {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.action-scroll {
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    align-content: start;
}

.action-button {
    height: 70.5px;
    border: 0.75px solid rgba(255,255,255,.09);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(18,26,38,.90), rgba(8,13,20,.88));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4.5px;
    padding: 4.5px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease, background .14s ease;
}

.action-button::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at 50% 0%, rgba(155, 86, 255, .24), transparent 52%);
    transition: opacity .14s ease;
}

.action-button:hover,
.action-button:focus-visible {
    transform: translateY(-1.5px);
    border-color: rgba(155, 86, 255, .72);
    box-shadow: 0 0 0 0.75px rgba(155,86,255,.18), 0 7.5px 18px rgba(0,0,0,.28);
    outline: none;
}

.action-button:hover::before,
.action-button:focus-visible::before {
    opacity: 1;
}

.action-icon {
    position: relative;
    z-index: 1;
    font-size: 34.5px;
    line-height: 1;
}

.action-icon.violet {
    color: var(--violet);
}

.action-icon.cyan {
    color: var(--cyan);
}

.action-icon.lime {
    color: var(--lime);
}

.action-icon.amber {
    color: var(--amber);
}

.action-icon.orange {
    color: var(--orange);
}

.action-icon.teal {
    color: var(--teal);
}

.action-button strong {
    position: relative;
    z-index: 1;
    font-size: 15.75px;
}

.action-button small {
    position: relative;
    z-index: 1;
    color: #b9c0ca;
    font-size: 13.5px;
    line-height: 1.25;
}

.brand-scroll {
    padding: 7.5px 9px 7.5px 7.5px;
    display: grid;
    gap: 7.5px;
    align-content: start;
}

.brand-button {
    min-height: 26.25px;
    width: 100%;
    border: 0.75px solid rgba(255,255,255,.09);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(17,25,36,.90), rgba(6,11,18,.92));
    display: grid;
    grid-template-columns: 31.5px 1fr;
    align-items: center;
    padding: 0 10.5px 0 7.5px;
    text-align: left;
    cursor: pointer;
    letter-spacing: .02em;
    font-weight: 800;
    transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}

.brand-button:hover,
.brand-button:focus-visible {
    transform: translateY(-1.5px);
    border-color: rgba(0,174,243,.34);
    box-shadow: 0 0 12px rgba(0,174,243,.10);
    outline: none;
}

.brand-button span {
    width: 16.5px;
    height: 18px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: 16.5px;
    font-weight: 900;
}

.brand-button strong {
    font-size: 15px;
}

.brand-button.keyence span {
    background: #df1f2d;
    color: white;
}

.brand-button.keyence strong {
    color: #fff;
}

.brand-button.cognex span {
    background: #ffe200;
    color: black;
}

.brand-button.cognex strong {
    color: #ffe200;
}

.brand-button.universal span {
    background: white;
    color: #0f74ba;
}

.brand-button.universal strong {
    color: white;
}

.brand-button.arduino span {
    background: #22c9cf;
    color: #062426;
}

.brand-button.arduino strong {
    color: #22c9cf;
}

.brand-button.microchip span {
    background: #e63d32;
    color: white;
}

.brand-button.microchip strong {
    color: white;
}

.left-footer {
    display: grid;
    gap: 9px;
    color: #a3aab4;
    font-size: 13.5px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 22.5px;
}

.panel-two {
    padding: 12px 7.5px 9px 10.5px;
    display: grid;
    grid-template-rows: 45px minmax(0, 1fr);
}

.panel-title {
    display: grid;
    grid-template-columns: 20.25px 1fr;
    gap: 7.5px;
    align-items: start;
}

.panel-title > span {
    color: var(--violet);
    font-size: 34.5px;
}

.panel-title h2 {
    font-size: 27px;
    font-weight: 650;
}

.panel-title p {
    font-size: 15.75px;
}

.project-button-frame {
    margin-top: 71.25px;
    height: calc(100% - 71.25px);
    border: 1.5px solid #ffbf00;
    border-radius: 13.5px;
    background: rgba(10, 12, 18, .32);
    box-shadow: 0 0 9px rgba(255, 191, 0, .55), 0 0 21px rgba(255, 115, 0, .35), inset 0 0 13.5px rgba(255, 191, 0, .10);
    overflow: hidden;
}

.project-scroll {
    height: 100%;
    padding: 9px 7.5px 7.5px 7.5px;
    display: grid;
    align-content: start;
    gap: 7.5px;
}

.project-button {
    min-height: 106px;
    width: 100%;
    border: 0.75px solid rgba(163, 171, 182, .65);
    border-radius: 9px;
    background: rgba(10, 17, 27, .72);
    display: grid;
    padding: 7.5px;
    text-align: left;
    cursor: pointer;
    transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease, background .14s ease;
    box-shadow: inset 0 0 9px rgba(255, 255, 255, .03);
}

.project-button:hover,
.project-button:focus-visible {
    transform: translateY(-1.5px);
    border-color: rgba(196, 201, 208, .95);
    box-shadow: 0 7.5px 18px rgba(0,0,0,.20), 0 0 9px rgba(255,255,255,.05);
    outline: none;
}

.project-button.selected {
    border-color: rgba(176, 99, 255, .98);
    background: linear-gradient(90deg, rgba(54,25,84,.72), rgba(10,17,27,.78));
    box-shadow: 0 0 0 0.75px rgba(176, 99, 255, .45), 0 0 7.5px rgba(176, 99, 255, .55), 0 0 15px rgba(176, 99, 255, .38), inset 0 0 7.5px rgba(176, 99, 255, .12);
}

.project-art {
    border-radius: 3px;
    border: 0.75px solid rgba(255,255,255,.08);
    display: grid;
    place-items: center;
    font-size: 27px;
    font-weight: 800;
}

.project-art.singularity {
    color: transparent;
    font-size: 0;
    background: #02050a url("/assets/images/singularity-escape-project-icon.webp") center / cover no-repeat;
    overflow: hidden;
}

.project-art.iqrad {
    color: #3395ff;
    background: linear-gradient(135deg, #07111f, #02050a);
}

.project-art.datagrid {
    color: #6fd0ff;
    background: linear-gradient(90deg, rgba(0,174,243,.16) 0.75px, transparent 0.75px), linear-gradient(rgba(0,174,243,.16) 0.75px, transparent 0.75px), #061525;
    background-size: 16.5px 16.5px;
}

.project-art.dictionary {
    color: #efc68c;
    background: radial-gradient(circle at 40% 50%, rgba(255, 205, 136, .38), transparent 32%), #16110d;
}

.project-art.electronics {
    color: #80f2b7;
    background: radial-gradient(circle at 32% 38%, rgba(60, 230, 150, .32), transparent 24%), linear-gradient(135deg, #08241f, #061016);
}

.project-art.automation {
    color: #b583ff;
    background: radial-gradient(circle at 50% 46%, rgba(155, 86, 255, .34), transparent 45%), #0a0715;
}

.project-text {
    display: grid;
    align-content: start;
    gap: 3.75px;
    min-width: 0;
}

.project-text strong {
    font-size: 18px;
    color: #eef2f8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-text small {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.35;
}

.project-status {
    justify-self: start;
    border-radius: 3px;
    padding: 3px 6px;
    font-size: 13.5px;
    line-height: 1;
    font-style: normal;
}

.project-status.active {
    color: #b68bff;
    background: rgba(104, 61, 185, .55);
}

.project-status.development {
    color: #111;
    background: rgba(255, 185, 0, .78);
}

.content-title h2 {
    font-size: 34.5px;
    line-height: 1;
    font-weight: 560;
}

.content-title p {
    margin-top: 5.25px;
    color: #b36dff;
    font-size: 15.75px;
}

.video-stage {
    height: 172.5px;
    border-radius: 3.75px;
    border: 0.75px solid rgba(255,255,255,.12);
    overflow: hidden;
    background: radial-gradient(circle at 50% 40%, rgba(0,174,243,.36), transparent 28%), linear-gradient(180deg, #081625, #03070c);
    position: relative;
}

.station-visual {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.station-column {
    position: absolute;
    top: 0;
    bottom: 31.5px;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(120, 185, 226, .12), transparent);
    border-left: 0.75px solid rgba(140, 210, 255, .16);
    border-right: 0.75px solid rgba(140, 210, 255, .10);
}

.station-left {
    left: 15%;
}

.station-right {
    right: 15%;
}

.energy-ring {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid rgba(95, 210, 255, .55);
    box-shadow: inset 0 0 22.5px rgba(0,174,243,.22), 0 0 30px rgba(0,174,243,.10);
}

.ring-one {
    width: 141px;
    height: 141px;
}

.ring-two {
    width: 107.25px;
    height: 107.25px;
    border-color: rgba(95,210,255,.35);
}

.ring-three {
    width: 71.25px;
    height: 71.25px;
    border-color: rgba(255,255,255,.22);
}

.energy-core {
    position: absolute;
    left: 50%;
    top: 45%;
    width: 12.75px;
    height: 12.75px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(152, 229, 255, .92);
    box-shadow: 0 0 36px 16.5px rgba(0,174,243,.25);
}

.figure {
    position: absolute;
    left: 50%;
    bottom: 26.25px;
    width: 8.25px;
    height: 27px;
    transform: translateX(-50%);
    border-radius: 6px 6px 2.25px 2.25px;
    background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.12));
    box-shadow: 0 -9.75px 0 -3px rgba(255,255,255,.76), 0 0 13.5px rgba(0,174,243,.34);
}

.floor-light {
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 15.75px;
    height: 13.5px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0,174,243,.35), transparent 68%);
}

.play-control {
    position: absolute;
    left: 50%;
    top: 51%;
    transform: translate(-50%, -50%);
    width: 37.5px;
    height: 37.5px;
    border: 1.5px solid rgba(255,255,255,.94);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.05);
    color: white;
    font-size: 28.5px;
    cursor: pointer;
}

.video-bar {
    position: absolute;
    left: 8.25px;
    right: 6.75px;
    bottom: 6.75px;
    display: grid;
    grid-template-columns: auto auto 1fr auto auto auto;
    gap: 6px;
    align-items: center;
    font-size: 15.75px;
    color: #fff;
}

.bar-line {
    height: 3px;
    border-radius: 749.25px;
    background: linear-gradient(90deg, #fff 0 22%, rgba(255,255,255,.40) 22%);
}

.thumb-row {
    height: 42px;
    margin-top: 6.75px;
    display: grid;
    grid-template-columns: 18px repeat(5, 1fr) 18px;
    gap: 7.5px;
    align-items: center;
}

.thumb-row button {
    border: 0;
    background: transparent;
    color: #99a3b2;
    font-size: 42px;
    padding: 0;
}

.thumb {
    height: 38.25px;
    border-radius: 3px;
    border: 0.75px solid rgba(255,255,255,.10);
    background: linear-gradient(180deg, rgba(18,26,38,.92), rgba(6,11,18,.96));
}

.thumb.selected {
    border-color: rgba(155, 86, 255, 1);
    box-shadow: 0 0 0 0.75px rgba(155, 86, 255, .35);
}

.thumb.scene-one {
    background: radial-gradient(circle at 50% 42%, rgba(0,174,243,.35), transparent 38%), #07121d;
}

.thumb.scene-two {
    background: linear-gradient(135deg, #261b10, #07121d);
}

.thumb.scene-three {
    background: radial-gradient(circle at 50% 42%, rgba(0,174,243,.22), transparent 32%), #111822;
}

.thumb.scene-four {
    background: linear-gradient(135deg, #2e2a22, #0a1218);
}

.thumb.scene-five {
    background: linear-gradient(135deg, #151512, #0a1018);
}

.content-tabs {
    height: 30.75px;
    display: flex;
    align-items: end;
    gap: 20.25px;
    border-top: 0.75px solid rgba(255,255,255,.06);
    border-bottom: 0.75px solid rgba(255,255,255,.06);
    padding: 0 6px;
    min-width: 0;
    overflow-x: auto;
}

.content-tabs a {
    height: 24px;
    display: inline-flex;
    align-items: center;
    color: #c2c8d2;
    font-size: 14.625px;
    white-space: nowrap;
    position: relative;
}

.content-tabs a.active {
    color: #bb7cff;
}

.content-tabs a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--violet), transparent);
}

.content-description {
    min-height: 0;
    padding: 10.5px 6px 4.5px 0;
}

.content-description p {
    font-size: 15.75px;
    margin-bottom: 8.25px;
}

.panel-four {
    gap: 10.5px;
}

.status-header {
    min-height: 21px;
}

.status-badge {
    width: 100%;
    height: 21px;
    border-radius: 4.5px;
    background: rgba(52, 30, 85, .80);
    color: #ca9cff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15.75px;
    font-weight: 650;
}

.status-content {
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 10.5px;
}

.status-content > p {
    font-size: 15.75px;
}

.meta-scroll {
    display: grid;
    align-content: start;
}

.meta-scroll div {
    min-height: 21.75px;
    border-top: 0.75px solid rgba(255,255,255,.08);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px;
    align-items: center;
    font-size: 14.625px;
}

.meta-scroll span {
    color: #9ea8b4;
}

.meta-scroll strong {
    color: #dbe4ee;
    font-weight: 500;
    text-align: right;
}

.meta-scroll div:first-child strong {
    color: var(--green);
}

.purchase-actions {
    display: grid;
    gap: 6.75px;
}

.purchase-actions a {
    min-height: 29.25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3.75px;
    font-size: 15px;
}

.download-demo {
    border: 0.75px solid rgba(155, 86, 255, .75);
    background: rgba(84, 47, 146, .72);
    color: #eadbff;
}

.buy-premium {
    border: 0.75px solid rgba(255, 191, 0, .42);
    background: rgba(74, 46, 0, .26);
    color: var(--amber);
}

.action-scroll::-webkit-scrollbar,
.brand-scroll::-webkit-scrollbar,
.project-scroll::-webkit-scrollbar,
.meta-scroll::-webkit-scrollbar,
.content-description::-webkit-scrollbar,
.content-tabs::-webkit-scrollbar {
    width: 10.5px;
    height: 6px;
}

.action-scroll::-webkit-scrollbar-track,
.brand-scroll::-webkit-scrollbar-track,
.project-scroll::-webkit-scrollbar-track,
.meta-scroll::-webkit-scrollbar-track,
.content-description::-webkit-scrollbar-track,
.content-tabs::-webkit-scrollbar-track {
    background: rgba(255,255,255,.06);
    border-radius: 749.25px;
}

.action-scroll::-webkit-scrollbar-thumb,
.brand-scroll::-webkit-scrollbar-thumb,
.project-scroll::-webkit-scrollbar-thumb,
.meta-scroll::-webkit-scrollbar-thumb,
.content-description::-webkit-scrollbar-thumb,
.content-tabs::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.24);
    border-radius: 749.25px;
    border: 2.25px solid transparent;
    background-clip: padding-box;
}

.page-header {
    margin: 24px auto 18px;
    max-width: 735px;
    padding: 0 18px;
}

.page-header h1 {
    font-size: clamp(4.2rem, 10vw, 8rem);
    line-height: 1;
}

.lead {
    color: #c7eaff;
    font-size: 2.4rem;
}

.panel,
.feature-card,
.form-panel {
    border: 0.75px solid rgba(255,255,255,.09);
    border-radius: 10.5px;
    background: rgba(10, 17, 28, .90);
    padding: 18px;
}

.module-grid,
.admin-modules {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 885px;
    margin: 15px auto;
    padding: 0 18px;
}

.form-panel {
    max-width: 720px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.form-grid.compact {
    grid-template-columns: minmax(180px, 315px);
}

label {
    display: grid;
    gap: 6px;
    color: #dbefff;
}

input,
textarea {
    width: 100%;
    border: 0.75px solid rgba(68,198,255,.25);
    border-radius: 7.5px;
    padding: 9px 10.5px;
    background: rgba(1,8,18,.76);
    color: var(--text);
    outline: none;
}

textarea {
    min-height: 135px;
    resize: vertical;
}

.checks {
    display: grid;
    gap: 7.5px;
    margin: 15px 0;
}

.checks label {
    display: flex;
    align-items: center;
    gap: 7.5px;
    color: var(--muted);
}

.checks input {
    width: auto;
}

.button-primary,
.button-secondary,
.button-ghost {
    border-radius: 7.5px;
    border: 0.75px solid rgba(155,86,255,.45);
    padding: 9px 13.5px;
    min-height: 33px;
    background: rgba(17,24,37,.88);
    color: var(--text);
    cursor: pointer;
}

.button-primary {
    background: rgba(84, 47, 146, .72);
}

.button-secondary {
    background: rgba(0,174,243,.14);
}

.button-ghost {
    color: var(--amber);
    border-color: rgba(255,191,0,.35);
}

.alert {
    margin-top: 13.5px;
    border: 0.75px solid rgba(68,198,255,.18);
    border-radius: 9px;
    padding: 10.5px 12px;
    background: rgba(68,198,255,.08);
}

.alert.success {
    border-color: rgba(51,207,117,.45);
    color: var(--green);
}

.alert.danger {
    border-color: rgba(255,107,107,.45);
    color: #ff6b6b;
}

.alert.warning {
    border-color: rgba(255,191,0,.45);
    color: var(--amber);
}

.data-grid {
    display: grid;
    gap: 9px;
}

.data-grid.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.data-grid div,
.status-list.boxed div,
.status-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border: 0.75px solid rgba(255,255,255,.08);
    border-radius: 7.5px;
    padding: 9px 10.5px;
    background: rgba(1,8,18,.36);
}

.status-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 7.5px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10.5px;
}

.table th,
.table td {
    border-bottom: 0.75px solid rgba(255,255,255,.08);
    padding: 9px;
    text-align: left;
    color: var(--muted);
    vertical-align: top;
}

.table th {
    color: #dbefff;
    font-weight: 500;
}

.pill {
    display: inline-block;
    border-radius: 749.25px;
    padding: 3px 7.5px;
    border: 0.75px solid rgba(68,198,255,.18);
    color: var(--muted);
}

.pill.ok {
    color: var(--green);
    border-color: rgba(51,207,117,.34);
}

.pill.pending {
    color: var(--amber);
    border-color: rgba(255,191,0,.34);
}

.pill.mismatch {
    color: #ff7b7b;
    border-color: rgba(255, 83, 83, .55);
    background: rgba(120, 20, 20, .18);
}

.migration-hash-mismatch {
    display: block;
    margin-top: 4px;
    color: #ff9b9b;
    font-size: .72rem;
}

@media (max-width: 885px) {
    html,
    body {
        overflow: auto;
    }

    .app-shell,
    .home-dashboard {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .home-topbar {
        height: auto;
        grid-template-columns: 1fr;
    }

    .brand-area,
    .main-nav,
    .top-actions {
        height: auto;
        min-height: 39px;
        justify-content: flex-start;
        padding: 6px 16.5px;
        border-right: 0;
        border-left: 0;
        flex-wrap: wrap;
    }

    .four-column-dashboard {
        height: auto;
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .dashboard-panel {
        height: auto;
        min-height: auto;
        border-right: 0;
        border-bottom: 0.75px solid var(--line);
    }

    .panel-one,
    .panel-two,
    .panel-three,
    .panel-four {
        display: block;
    }

    .action-panel,
    .brand-panel,
    .project-scroll,
    .meta-scroll,
    .content-description {
        max-height: 315px;
    }

    .feature-row,
    .action-scroll {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .action-scroll,
    .feature-row,
    .module-grid,
    .admin-modules,
    .form-grid,
    .data-grid.two-cols {
        grid-template-columns: 1fr;
    }

    .thumb-row {
        grid-template-columns: 18px repeat(3, 1fr) 18px;
    }

    .thumb-row .thumb:nth-of-type(n/**/+4) {
        display: none;
    }
}

.panel-three {
    position: relative;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.panel-three > .panel-three-main {
    left: 0;
    top: 0;
    width: 100%;
    padding: 15px 15.75px 0;
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr) auto;
    gap: 10.5px;
}

.panel-three > .panel-three-actions {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

.panel-three > .panel-three-actions > .action-scroll {
    gap: 6px;
    overflow: hidden;
    align-content: stretch;
}

.panel-three > .panel-three-actions .action-icon {
    font-size: 16.5px;
    line-height: 16.5px;
}

.panel-three .content-description,
.panel-three .project-media,
.panel-three .content-tabs,
.panel-three .feature-row {
    min-height: 0;
}

@media (max-width: 885px) {
    .panel-three {
        position: static;
        height: auto;
        overflow: visible;
    }

    .panel-three > .panel-three-main,
    .panel-three > .panel-three-actions {
        position: static;
        width: auto;
        height: auto;
    }

    .panel-three > .panel-three-actions {
        min-height: 142.5px;
        margin-top: 10.5px;
    }
}

.real-video-area {
    height: auto;
    display: inline-grid;
    justify-content: start;
    align-content: start;
    gap: 9px;
    border: 1.5px solid #ffbf00;
    border-radius: 13.5px;
    background: rgba(10, 12, 18, .32);
    box-shadow: 0 0 9px rgba(255, 191, 0, .55), 0 0 21px rgba(255, 115, 0, .35), inset 0 0 13.5px rgba(255, 191, 0, .10);
    overflow: hidden;
    margin-top: 39.75px;
}

.real-project-video {
    display: block;
    border: 0;
    border-radius: 9px;
    background: #000;
    box-shadow: none;
}

.video-thumb-row {
    height: 72px;
    display: flex;
    gap: 7.5px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1.5px 1.5px 7.5px;
}

.video-thumb-button {
    flex: 0 0 99px;
    border: 0.75px solid rgba(255,255,255,.16);
    border-radius: 7.5px;
    background: rgba(10, 17, 27, .76);
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    display: grid;
    grid-template-rows: 1fr;
    box-shadow: none;
}

.video-thumb-button.selected {
    border-color: rgba(176, 99, 255, .98);
    box-shadow: 0 0 0 0.75px rgba(176, 99, 255, .45), 0 0 7.5px rgba(176, 99, 255, .55), 0 0 15px rgba(176, 99, 255, .38), inset 0 0 7.5px rgba(176, 99, 255, .12);
}

.video-thumb-button img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-thumb-row::-webkit-scrollbar {
    height: 7.5px;
}

.video-thumb-row::-webkit-scrollbar-track {
    background: rgba(255,255,255,.08);
    border-radius: 749.25px;
}

.video-thumb-row::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(255, 191, 0, .72), rgba(255, 115, 0, .72));
    border-radius: 749.25px;
}

.video-thumb-row {
    scrollbar-color: rgba(255, 191, 0, .72) rgba(255,255,255,.08);
    scrollbar-width: thin;
}

.panel-three-main.placeholder-mode {
    display: block;
}

.work-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 15px;
}

.work-placeholder-inner {
    width: min(615px, 100%);
    min-height: 390px;
    border: 0.75px solid rgba(255,255,255,.08);
    border-radius: 16.5px;
    background: radial-gradient(circle at 50% 18%, rgba(255, 191, 0, .10), transparent 26%), linear-gradient(180deg, rgba(12, 20, 32, .92), rgba(5, 11, 19, .96));
    display: grid;
    place-items: center;
    justify-items: center;
    gap: 7.5px;
    text-align: center;
    padding: 25.5px 18px 21px;
    box-shadow: inset 0 0 22.5px rgba(255,255,255,.03);
}

.work-placeholder-inner h3 {
    margin: 0;
    color: #f4f6fb;
    font-size: 28.5px;
    line-height: 1.1;
    font-weight: 650;
}

.work-placeholder-inner p {
    width: min(480px, 100%);
    margin: 0;
    color: #c8d0da;
    font-size: 16.5px;
    line-height: 1.45;
}

.work-placeholder-inner p strong {
    color: #ffd54a;
    font-weight: 700;
}

.cartoon-worker-scene {
    position: relative;
    width: 270px;
    height: 210px;
    display: block;
}

.worker-sun {
    position: absolute;
    right: 18px;
    top: 4.5px;
    width: 40.5px;
    height: 40.5px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff6bf, #ffbf00 62%, #ff8c00 100%);
    box-shadow: 0 0 18px rgba(255,191,0,.50);
}

.worker-body-wrap {
    position: absolute;
    left: 87px;
    top: 25.5px;
    width: 105px;
    height: 142.5px;
    animation: worker-bob .5s ease-in-out infinite;
}

.worker-head {
    position: absolute;
    left: 35.25px;
    top: 13.5px;
    width: 31.5px;
    height: 31.5px;
    border-radius: 50%;
    background: #ffd7b2;
    z-index: 2;
}

.worker-helmet {
    position: absolute;
    left: 30px;
    top: 3px;
    width: 43.5px;
    height: 21px;
    border-radius: 21px 21px 10.5px 10.5px;
    background: linear-gradient(180deg, #ffd75e, #ffae00);
    box-shadow: inset 0 -3px 0 rgba(0,0,0,.12);
    z-index: 3;
}

.worker-torso {
    position: absolute;
    left: 25.5px;
    top: 46.5px;
    width: 51px;
    height: 43.5px;
    border-radius: 13.5px;
    background: linear-gradient(180deg, #ff9b00, #ea7300);
    box-shadow: inset 0 0 0 4.5px rgba(255, 239, 154, .28);
}

.worker-arm {
    position: absolute;
    top: 55.5px;
    width: 13.5px;
    height: 48px;
    border-radius: 15px;
    background: #ffd7b2;
    z-index: 1;
}

.worker-arm-left {
    left: 15px;
    transform: rotate(24deg);
}

.worker-arm-right {
    right: 10.5px;
    transform: rotate(-18deg);
}

.worker-leg {
    position: absolute;
    top: 88.5px;
    width: 16.5px;
    height: 54px;
    border-radius: 15px;
    background: #354b69;
}

.worker-leg-left {
    left: 33px;
    transform: rotate(6deg);
}

.worker-leg-right {
    left: 54px;
    transform: rotate(-6deg);
}

.worker-leg::after {
    content: "";
    position: absolute;
    left: -4.5px;
    bottom: -6px;
    width: 25.5px;
    height: 10.5px;
    border-radius: 9px;
    background: #20242a;
}

.worker-jackhammer {
    position: absolute;
    left: 61.5px;
    top: 61.5px;
    width: 39px;
    height: 82.5px;
    animation: jackhammer-hit .22s linear infinite;
}

.jackhammer-handle {
    position: absolute;
    left: 1.5px;
    top: 0;
    width: 36px;
    height: 10.5px;
    border-radius: 9px;
    background: #353d49;
}

.jackhammer-body {
    position: absolute;
    left: 9px;
    top: 9px;
    width: 19.5px;
    height: 46.5px;
    border-radius: 9px;
    background: linear-gradient(180deg, #26c3ff, #0a8fe1);
    box-shadow: inset 0 0 0 3px rgba(255,255,255,.14);
}

.jackhammer-tip {
    position: absolute;
    left: 17.25px;
    top: 54px;
    width: 3px;
    height: 28.5px;
    border-radius: 3px;
    background: #d8dee6;
}

.worker-ground {
    position: absolute;
    left: 21px;
    right: 21px;
    bottom: 18px;
    height: 19.5px;
    border-radius: 13.5px;
    background: linear-gradient(180deg, #5a6270, #333a44);
    box-shadow: inset 0 3px 6px rgba(255,255,255,.08);
}

.worker-spark {
    position: absolute;
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffe088 0%, #ff9b00 72%, transparent 73%);
    opacity: .9;
    animation: spark-jump .42s linear infinite;
}

.spark-one {
    left: 132px;
    bottom: 34.5px;
    animation-delay: 0s;
}

.spark-two {
    left: 144px;
    bottom: 30px;
    animation-delay: .14s;
}

.spark-three {
    left: 121.5px;
    bottom: 31.5px;
    animation-delay: .28s;
}

@keyframes worker-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

@keyframes jackhammer-hit {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4.5px); }
}

@keyframes spark-jump {
    0% { transform: translate(0, 0) scale(.6); opacity: .2; }
    40% { transform: translate(-4.5px, -9px) scale(1); opacity: 1; }
    100% { transform: translate(7.5px, -22.5px) scale(.4); opacity: 0; }
}

.project-art-wrap {
    display: grid;
    justify-items: center;
    align-items: start;
}

.project-art-wrap .project-status {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: .04em;
    margin-top: 0;
    white-space: nowrap;
    padding: 0;
    box-sizing: border-box;
}

.project-text .project-status {
    display: none;
}

.working-image-frame {
    width: min(225px, 100%);
    display: grid;
    place-items: center;
    border: 0.75px solid rgba(255,255,255,.08);
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(15, 26, 40, .96), rgba(8, 15, 24, .96));
    padding: 10.5px;
    box-shadow: 0 0 18px rgba(0, 174, 243, .12), inset 0 0 18px rgba(255,255,255,.03);
    overflow: hidden;
}

.working-image {
    width: 80%;
    max-width: 156px;
    height: auto;
    display: block;
    border-radius: 10.5px;
}

.projects-title h2 {
    font-size: 34.5px;
    line-height: 1;
    font-weight: 560;
}

.projects-title > div {
    margin-left: 11.25px;
}

.projects-title h2,
.projects-title p {
    color: #b36dff;
}

.projects-title h2 {
    color: #ffffff;
}

.projects-title p {
    margin-top: 3px;
}

.projects-title h2 {
    position: relative;
    top: 3.75px;
}

.projects-title p {
    position: relative;
    top: 3.75px;
}

.panel-two .project-button-frame {
    width: 100%;
}

.panel-two .project-scroll {
    width: calc(100% - 18px);
    box-sizing: border-box;
}

.project-button.project-skin-singularity {
    grid-template-columns: 84px 1fr;
    gap: 12px;
}

.project-button.project-skin-singularity .project-art-wrap {
    width: 84px;
    grid-template-rows: 63px 16.5px;
    gap: 4.5px;
}

.project-button.project-skin-singularity .project-art.singularity {
    width: 84px;
    height: 63px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.project-button.project-skin-singularity .project-status {
    margin-top: 3px;
}

.project-button.project-skin-singularity .project-text {
    padding-top: 1.5px;
}

.project-button.project-skin-singularity .project-art-wrap .project-status {
    width: 84px;
    height: 18px;
    font-size: 12.75px;
    line-height: 14.25px;
}

.project-button {
    grid-template-columns: 84px 1fr;
    gap: 12px;
}

.project-art-wrap {
    width: 84px;
    grid-template-rows: 63px 18px;
    gap: 4.5px;
}

.project-art {
    width: 84px;
    height: 63px;
}

.project-art-wrap .project-status {
    width: 84px;
    height: 18px;
    font-size: 12.75px;
    line-height: 14.25px;
}

.project-text {
    padding-top: 1.5px;
}

.panel-three > .panel-three-main.placeholder-mode {
    place-items: center;
}

.panel-three > .panel-three-main.placeholder-mode .work-placeholder {
    place-items: center;
}

.panel-three > .panel-three-main.placeholder-mode {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.panel-three > .panel-three-main.placeholder-mode .work-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}

.panel-three > .panel-three-main.placeholder-mode .work-placeholder-inner {
    margin: 0 auto;
}

.empty-logo-panel {
    width: 225px;
    height: 525px;
    min-width: 225px;
    min-height: 525px;
    max-width: 225px;
    max-height: 525px;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    overflow: visible;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    align-self: flex-start;
}

.empty-logo-grid {
    width: 225px;
    height: 525px;
    min-width: 225px;
    min-height: 525px;
    max-width: 225px;
    max-height: 525px;
    display: grid;
    grid-template-columns: repeat(3, 75px);
    grid-template-rows: repeat(7, 75px);
    gap: 0;
    padding: 0;
    margin: 0;
    background: #ffffff;
    overflow: visible;
    box-sizing: border-box;
}

.empty-logo-button {
    width: 75px;
    height: 75px;
    min-width: 75px;
    min-height: 75px;
    max-width: 75px;
    max-height: 75px;
    padding: 0;
    margin: 0;
    border: 1px solid #bfbfbf;
    border-radius: 0;
    background: #ffffff;
    display: block;
    box-sizing: border-box;
    appearance: none;
}

.empty-logo-button:hover,
.empty-logo-button:focus-visible,
.empty-logo-button:active {
    transform: none;
    outline: none;
    box-shadow: none;
    background: #ffffff;
    border: 1px solid #bfbfbf;
}

.matrix-copyright {
    width: 225px;
    margin-top: 12px;
    color: #d7ddff;
    font-size: 0.82rem;
    line-height: 1.35;
    text-align: center;
}

.left-footer,
.socials {
    display: none !important;
}

.panel-one > .matrix-copyright {
    grid-row: 4 !important;
}

.empty-logo-button {
    overflow: hidden;
}

.empty-logo-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #ffffff;
    pointer-events: none;
    user-select: none;
}

.panel-five {
    border-right: 0 !important;
    background: linear-gradient(180deg, rgba(12, 20, 32, .90), rgba(5, 11, 19, .96)) !important;
}

.panel-five-empty {
    width: 100% !important;
    height: 100% !important;
    border: 0.75px solid rgba(255,255,255,.14) !important;
    border-radius: 6px !important;
    background: rgba(4, 10, 17, .46) !important;
    box-sizing: border-box !important;
}

.panel-one {
    display: flex !important;
    flex-direction: column !important;
    gap: 10.5px !important;
    padding: 16.5px !important;
}

.panel-one > .matrix-copyright {
    margin-top: auto !important;
    align-self: center !important;
}

.panel-five {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0 !important;
}

.panel-five-spacer {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    width: 100% !important;
}

.panel-five-empty {
    display: none !important;
}

.panel-five > .empty-logo-panel {
    align-self: center !important;
    margin: 0 !important;
}

.panel-five > .empty-logo-panel {
    width: 249px !important;
    min-width: 249px !important;
    max-width: 249px !important;
    height: 549px !important;
    min-height: 549px !important;
    max-height: 549px !important;
    padding: 10px !important;
    box-sizing: border-box !important;
    background: #000000 !important;
    border: 1.5px solid #ffbf00 !important;
    border-radius: 13.5px !important;
    box-shadow: 0 0 9px rgba(255, 191, 0, .55),
                0 0 21px rgba(255, 115, 0, .35),
                inset 0 0 13.5px rgba(255, 191, 0, .10) !important;
    overflow: hidden !important;
}

.panel-five > .empty-logo-panel > .empty-logo-grid {
    width: 225px !important;
    min-width: 225px !important;
    max-width: 225px !important;
    height: 525px !important;
    min-height: 525px !important;
    max-height: 525px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #000000 !important;
    box-sizing: border-box !important;
}

.panel-five > .empty-logo-panel .empty-logo-button {
    background: #ffffff !important;
}

.panel-five {
    width: 275px !important;
    min-width: 275px !important;
    max-width: 275px !important;
    padding: 5px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.panel-five > .empty-logo-panel {
    flex: 0 0 auto !important;
}

.panel-five > .matrix-disclaimer {
    flex: 0 0 auto !important;
    width: 249px !important;
    max-width: 249px !important;
    padding: 0 !important;
    color: #d7ddff !important;
    text-align: center !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.panel-five > .matrix-disclaimer h2 {
    margin: 0 0 5px 0 !important;
    color: #ffbf00 !important;
    font-weight: 500 !important;
    text-shadow: 0 0 7.5px rgba(255, 191, 0, .35) !important;
}

.panel-five > .matrix-disclaimer p {
    margin: 0 !important;
    color: #c8d0da !important;
    font-weight: 400 !important;
}

.panel-five > .matrix-disclaimer h2 {
    font-size: 1.088rem !important;
    line-height: 1.08 !important;
}

.panel-five > .matrix-disclaimer p {
    font-size: 0.832rem !important;
    line-height: 1.12 !important;
}

.action-card-image {
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    pointer-events: none !important;
    user-select: none !important;
    filter: drop-shadow(0 0 8px rgba(0, 174, 243, .18)) !important;
}

.panel-three > .panel-three-actions > .action-scroll {
    width: 100% !important;
    height: 100% !important;
    margin-left: 0 !important;
    box-sizing: border-box !important;
    column-gap: 6px !important;
    row-gap: 0 !important;
    padding: 6px 7.5px !important;
}

.panel-three > .panel-three-actions .action-button {
    justify-self: stretch !important;
    align-self: stretch !important;
}

.action-card-image {
    width: 88px !important;
    height: 88px !important;
    margin: 0 auto 6px auto !important;
    border-radius: 9px !important;
}

.panel-three > .panel-three-actions .action-button small {
    margin-top: 2px !important;
}

.panel-three > .panel-three-actions > .action-scroll {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    grid-template-rows: 1fr !important;
    align-items: stretch !important;
    justify-items: stretch !important;
}

.panel-three {
    width: 799.75px !important;
    min-width: 799.75px !important;
    max-width: 799.75px !important;
}

.panel-four {
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
    border-right: 0.75px solid var(--line) !important;
}

.panel-three .content-title,
.panel-three .real-video-area {
    transform: translateX(65px) !important;
}

.panel-three > .panel-three-main {
    overflow: hidden !important;
}

.panel-three > .panel-three-actions {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.panel-three > .panel-three-actions > .action-frame {
    display: inline-block !important;
    padding: 0 !important;
    border: 1.5px solid #ffbf00 !important;
    border-radius: 13.5px !important;
    background: rgba(10, 12, 18, .32) !important;
    box-shadow: 0 0 9px rgba(255, 191, 0, .55), 0 0 21px rgba(255, 115, 0, .35), inset 0 0 13.5px rgba(255, 191, 0, .10) !important;
}

.panel-three > .panel-three-actions > .action-frame > .action-scroll {
    margin: 0 !important;
}

.panel-three > .panel-three-actions .action-button {
    display: grid !important;
    align-items: center !important;
    justify-items: center !important;
    align-content: center !important;
    justify-content: center !important;
}

.panel-three > .panel-three-actions .action-card-image {
    grid-row: 1 !important;
    object-fit: cover !important;
    object-position: center !important;
    align-self: center !important;
    justify-self: center !important;
    margin: 0 !important;
    display: block !important;
    border-radius: 5.76px !important;
}

.panel-three > .panel-three-actions .action-button strong {
    grid-row: 2 !important;
    align-self: center !important;
    justify-self: center !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

.panel-three > .panel-three-actions .action-button small {
    grid-row: 3 !important;
    align-self: start !important;
    justify-self: center !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    hyphens: none !important;
}

.panel-three > .panel-three-actions {
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
}

.panel-three > .panel-three-actions > .action-frame {
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    bottom: 10px !important;
    margin: 0 !important;
}

.top-actions {
    gap: 9px !important;
}

.top-register {
    width: auto !important;
    min-width: 87px !important;
    padding: 0 7.5px !important;
    white-space: nowrap !important;
}

.top-language-button {
    height: 28.5px;
    min-width: 72px;
    padding: 0 10.5px;
    border: 0.75px solid rgba(255, 191, 0, .70);
    border-radius: 4.5px;
    color: #ffd56a;
    background: rgba(54, 35, 5, .30);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15.75px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 0 7.5px rgba(255, 191, 0, .22), inset 0 0 7.5px rgba(255, 191, 0, .08);
}

.top-language-button:hover,
.top-language-button:focus-visible {
    border-color: rgba(255, 191, 0, 1);
    box-shadow: 0 0 10.5px rgba(255, 191, 0, .38), 0 0 18px rgba(255, 115, 0, .18), inset 0 0 9px rgba(255, 191, 0, .10);
    outline: none;
}

.language-pill {
    min-width: 33px;
    white-space: nowrap;
}

.language-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    padding: 36px;
    background: rgba(0, 0, 0, .68);
    backdrop-filter: blur(3px);
}

.language-modal {
    width: min(720px, calc(100vw - 72px));
    max-height: calc(100vh - 72px);
    padding: 18px;
    border: 1.5px solid #ffbf00;
    border-radius: 13.5px;
    background: linear-gradient(180deg, rgba(13, 20, 31, .97), rgba(5, 10, 17, .98));
    box-shadow: 0 0 9px rgba(255, 191, 0, .55), 0 0 21px rgba(255, 115, 0, .35), inset 0 0 13.5px rgba(255, 191, 0, .10);
    overflow: hidden;
}

.language-modal-header {
    display: grid;
    align-items: start;
    gap: 13.5px;
    margin-bottom: 15px;
}

.language-modal-header h2 {
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 0 10.5px rgba(255, 191, 0, .28);
}

.language-modal-header p {
    margin-top: 6px;
    color: #c9d1dd;
    font-size: 15px;
}

.language-modal-close {
    width: 36px;
    height: 36px;
    border: 0.75px solid rgba(255, 191, 0, .72);
    border-radius: 7.5px;
    background: rgba(54, 35, 5, .30);
    color: #ffd56a;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 0 7.5px rgba(255, 191, 0, .22), inset 0 0 7.5px rgba(255, 191, 0, .08);
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10.5px;
    max-height: calc(100vh - 210px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.5px 3px 3px 1.5px;
}

.language-choice {
    min-height: 66px;
    padding: 9px 7.5px;
    border: 0.75px solid rgba(255, 255, 255, .10);
    border-radius: 9px;
    background: linear-gradient(180deg, rgba(18,26,38,.90), rgba(8,13,20,.88));
    display: grid;
    grid-template-rows: auto auto;
    align-content: center;
    justify-items: center;
    gap: 4.5px;
    cursor: pointer;
    overflow: hidden;
}

.language-choice-main {
    display: inline-grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
}

.language-native-name {
    color: #fff;
    font-size: 17.25px;
    line-height: 1.05;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
}

.mini-flag {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 19px;
    border-radius: 3px;
    overflow: hidden;
    border: 0.75px solid rgba(255,255,255,.28);
    box-shadow: 0 0 4px rgba(255, 191, 0, .18), inset 0 0 0.75px rgba(255,255,255,.22);
}

.flag-mx {
    background: linear-gradient(90deg, #006847 0 33.33%, #ffffff 33.33% 66.66%, #ce1126 66.66% 100%);
}

.flag-us {
    background: linear-gradient(90deg, #3c3b6e 0 40%, transparent 40%),
        repeating-linear-gradient(180deg, #b22234 0 7.69%, #ffffff 7.69% 15.38%);
}

.flag-fr {
    background: linear-gradient(90deg, #0055a4 0 33.33%, #ffffff 33.33% 66.66%, #ef4135 66.66% 100%);
}

.flag-pt {
    background: linear-gradient(90deg, #006600 0 40%, #ff0000 40% 100%);
}

.flag-de {
    background: linear-gradient(180deg, #000000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.flag-it {
    background: linear-gradient(90deg, #009246 0 33.33%, #ffffff 33.33% 66.66%, #ce2b37 66.66% 100%);
}

.flag-dk {
    background: linear-gradient(90deg, transparent 0 31%, #ffffff 31% 38%, transparent 38% 100%),
        linear-gradient(180deg, transparent 0 43%, #ffffff 43% 57%, transparent 57% 100%),
        #c60c30;
}

.flag-nl {
    background: linear-gradient(180deg, #ae1c28 0 33.33%, #ffffff 33.33% 66.66%, #21468b 66.66% 100%);
}

.flag-sa {
    background: #006c35;
}

.flag-sa::after {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    top: 8px;
    height: 2px;
    background: rgba(255,255,255,.92);
    border-radius: 2px;
}

.flag-jp {
    background: #ffffff;
}

.flag-jp::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bc002d;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flag-kr {
    background: #ffffff;
}

.flag-kr::before,
.flag-kr::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 50%;
}

.flag-kr::before {
    left: calc(50% - 5px);
    transform: translateY(-50%);
    background: #cd2e3a;
}

.flag-kr::after {
    left: calc(50% - 1px);
    transform: translateY(-50%);
    background: #0047a0;
}

.flag-cn {
    background: #de2910;
}

.flag-cn::after {
    content: "★";
    position: absolute;
    left: 4px;
    top: 1px;
    font-size: 9px;
    line-height: 1;
    color: #ffde00;
}

.flag-ru {
    background: linear-gradient(180deg, #ffffff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66% 100%);
}

.flag-in {
    background: linear-gradient(180deg, #ff9933 0 33.33%, #ffffff 33.33% 66.66%, #138808 66.66% 100%);
}

.flag-in::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 1px solid #000080;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flag-se {
    background: linear-gradient(90deg, transparent 0 31%, #fecc00 31% 40%, transparent 40% 100%),
        linear-gradient(180deg, transparent 0 43%, #fecc00 43% 57%, transparent 57% 100%),
        #006aa7;
}

.flag-no {
    background: linear-gradient(90deg, transparent 0 29%, #ffffff 29% 41%, transparent 41% 100%),
        linear-gradient(180deg, transparent 0 42%, #ffffff 42% 58%, transparent 58% 100%),
        #ba0c2f;
}

.flag-no::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0 32%, #00205b 32% 38%, transparent 38% 100%),
        linear-gradient(180deg, transparent 0 44%, #00205b 44% 56%, transparent 56% 100%);
}

.language-choice small {
    color: #aeb7c4;
    font-size: 12.75px;
    line-height: 1.05;
    text-align: center;
    white-space: nowrap;
}

.language-choice:hover,
.language-choice:focus-visible,
.language-choice.selected {
    border-color: rgba(255, 191, 0, .95);
    background: linear-gradient(180deg, rgba(45, 31, 10, .88), rgba(12, 16, 22, .92));
    box-shadow: 0 0 9px rgba(255, 191, 0, .32), inset 0 0 12px rgba(255, 191, 0, .08);
    outline: none;
}

@media (max-width: 885px) {
    .home-topbar {
        grid-template-columns: 1fr !important;
    }

    .language-modal {
        width: min(520px, calc(100vw - 36px));
    }

    .language-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.panel-three > .panel-three-main {
    height: 70% !important;
}

.panel-three > .panel-three-actions {
    height: 30% !important;
}

.panel-three > .panel-three-actions > .action-frame > .action-scroll {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.panel-three > .panel-three-actions .action-button {
    padding-top: 4px !important;
    padding-bottom: 5px !important;
}

.panel-three > .panel-three-actions > .action-frame {
    width: 799.75px !important;
    min-width: 799.75px !important;
    max-width: 799.75px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.panel-three > .panel-three-actions > .action-frame > .action-scroll {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    grid-template-rows: 1fr !important;
    grid-auto-flow: column !important;
    grid-auto-rows: 1fr !important;
    column-gap: 3.84px !important;
    row-gap: 0 !important;
    box-sizing: border-box !important;
    align-items: stretch !important;
    justify-items: stretch !important;
    overflow: hidden !important;
}

.panel-three > .panel-three-actions .action-button {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    padding: 4px 3.2px 5px 3.2px !important;
    gap: 1.5px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.panel-three > .panel-three-actions .action-button strong {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    font-size: 14.88px !important;
    white-space: normal !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    box-sizing: border-box !important;
}

.panel-three > .panel-three-actions .action-button small {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    font-size: 14.1696px !important;
    white-space: normal !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    box-sizing: border-box !important;
}

.panel-three > .panel-three-actions .action-card-image {
    width: 76.8px !important;
    height: 76.8px !important;
    max-width: 76.8px !important;
    max-height: 76.8px !important;
}

.panel-three > .panel-three-actions > .action-frame {
    height: 186.6px !important;
    min-height: 186.6px !important;
    max-height: 186.6px !important;
}

.panel-three > .panel-three-actions .action-button {
    grid-template-rows: 76.8px 32px 52px !important;
}

.panel-three > .panel-three-actions .action-button strong {
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    line-height: 16px !important;
    -webkit-line-clamp: 2 !important;
}

.panel-three > .panel-three-actions .action-button small {
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
    line-height: 15px !important;
    -webkit-line-clamp: 3 !important;
}

.panel-five > .matrix-disclaimer {
    margin: 8px auto 40px auto !important;
}

.action-modal-button {
    font-family: inherit !important;
    color: inherit !important;
    cursor: pointer !important;
    appearance: none !important;
}

.work-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 5100;
    display: grid;
    place-items: center;
    padding: 36px;
    background: rgba(0, 0, 0, .68);
    backdrop-filter: blur(3px);
}

.work-modal {
    position: relative;
    width: min(675px, calc(100vw - 72px));
    max-height: calc(100vh - 72px);
    padding: 0;
    border: 1.5px solid #ffbf00;
    border-radius: 13.5px;
    background: linear-gradient(180deg, rgba(13, 20, 31, .97), rgba(5, 10, 17, .98));
    box-shadow: 0 0 9px rgba(255, 191, 0, .55),
                0 0 21px rgba(255, 115, 0, .35),
                inset 0 0 13.5px rgba(255, 191, 0, .10);
    overflow: hidden;
}

.modal-work-placeholder {
    width: 100%;
    height: auto;
    min-height: 450px;
    padding: 24px;
}

.modal-work-placeholder .work-placeholder-inner {
    width: 100%;
    min-height: 390px;
}

.work-modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0.75px solid rgba(255, 191, 0, .72);
    border-radius: 7.5px;
    background: rgba(54, 35, 5, .30);
    color: #ffd56a;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 0 7.5px rgba(255, 191, 0, .22), inset 0 0 7.5px rgba(255, 191, 0, .08);
}

.work-modal-close:hover,
.work-modal-close:focus-visible {
    border-color: rgba(255, 191, 0, .95);
    box-shadow: 0 0 9px rgba(255, 191, 0, .32), inset 0 0 12px rgba(255, 191, 0, .08);
    outline: none;
}

.panel-five > .empty-logo-panel {
    position: relative !important;
}

.panel-five > .empty-logo-panel::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 5 !important;
    pointer-events: none !important;
    opacity: 1 !important;
    transition: opacity .18s ease !important;
}

.panel-five > .empty-logo-panel .empty-logo-image {
    transition: filter .18s ease !important;
}

.panel-five > .empty-logo-panel:hover::after,
.panel-five > .empty-logo-panel:focus-within::after {
    opacity: 0 !important;
}

.panel-five > .empty-logo-panel::after {
    background: rgba(22, 27, 32, .58) !important;
    box-shadow: inset 0 0 42px rgba(0, 0, 0, .30) !important;
}

.panel-five > .empty-logo-panel .empty-logo-image {
    filter: grayscale(.34) saturate(.54) brightness(.70) contrast(.90) !important;
}

.panel-five > .empty-logo-panel:hover .empty-logo-image,
.panel-five > .empty-logo-panel:focus-within .empty-logo-image {
    filter: none !important;
}

.contact-modal-content {
    width: 100% !important;
    box-sizing: border-box !important;
}

.contact-modal-header {
    width: 100% !important;
    text-align: center !important;
}

.contact-modal-header h3 {
    margin: 0 0 8px 0 !important;
    color: #ffe27d !important;
    font-size: 1.62rem !important;
    line-height: 1.05 !important;
    letter-spacing: .03em !important;
    text-shadow: 0 0 12px rgba(255, 191, 0, .42) !important;
}

.contact-modal-header p {
    color: #c7d2df !important;
    font-size: .94rem !important;
    line-height: 1.35 !important;
}

.contact-option-grid {
    display: grid !important;
    width: 100% !important;
}

.contact-option {
    display: grid !important;
    align-items: center !important;
    justify-items: center !important;
    text-decoration: none !important;
    border-color: rgba(255, 255, 255, .12) !important;
    background: linear-gradient(180deg, rgba(18, 26, 38, .92), rgba(8, 13, 20, .90)) !important;
}

.contact-option:hover::before,
.contact-option:focus-visible::before {
    opacity: 1 !important;
}

.contact-card-icon {
    grid-row: 1 !important;
    width: 76.8px !important;
    height: 76.8px !important;
    max-width: 76.8px !important;
    max-height: 76.8px !important;
    border-radius: 9px !important;
    display: grid !important;
    place-items: center !important;
    margin: 0 !important;
    font-size: 40px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, .26) !important;
    box-shadow: inset 0 0 18px rgba(255, 255, 255, .08),
                0 0 10px rgba(0, 174, 243, .20) !important;
    pointer-events: none !important;
    user-select: none !important;
}

.contact-icon-whatsapp {
    background: radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .22), transparent 32%),
                linear-gradient(135deg, rgba(37, 211, 102, .94), rgba(7, 94, 84, .94)) !important;
}

.contact-icon-facebook {
    background: radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .20), transparent 32%),
                linear-gradient(135deg, rgba(24, 119, 242, .94), rgba(8, 37, 94, .96)) !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 48px !important;
}

.contact-icon-gmail {
    background: radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .20), transparent 32%),
                linear-gradient(135deg, rgba(234, 67, 53, .94), rgba(251, 188, 5, .88) 48%, rgba(52, 168, 83, .92)) !important;
}

.contact-icon-instagram {
    background: radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .20), transparent 32%),
                linear-gradient(135deg, rgba(131, 58, 180, .96), rgba(253, 29, 29, .92) 48%, rgba(252, 176, 69, .92)) !important;
}

.contact-option strong {
    grid-row: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    text-align: center !important;
    white-space: normal !important;
    overflow: hidden !important;
}

.contact-option small {
    grid-row: 3 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #b9c0ca !important;
    text-align: center !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
}

.contact-whatsapp:hover,
.contact-whatsapp:focus-visible {
    border-color: rgba(37, 211, 102, .82) !important;
    box-shadow: 0 0 0 .75px rgba(37, 211, 102, .25),
                0 7.5px 18px rgba(0, 0, 0, .28),
                0 0 20px rgba(37, 211, 102, .22) !important;
}

.contact-facebook:hover,
.contact-facebook:focus-visible {
    border-color: rgba(24, 119, 242, .82) !important;
    box-shadow: 0 0 0 .75px rgba(24, 119, 242, .25),
                0 7.5px 18px rgba(0, 0, 0, .28),
                0 0 20px rgba(24, 119, 242, .22) !important;
}

.contact-gmail:hover,
.contact-gmail:focus-visible {
    border-color: rgba(234, 67, 53, .82) !important;
    box-shadow: 0 0 0 .75px rgba(234, 67, 53, .25),
                0 7.5px 18px rgba(0, 0, 0, .28),
                0 0 20px rgba(234, 67, 53, .20) !important;
}

@media (max-width: 760px) {
    .contact-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .contact-modal-content {
        min-height: 520px !important;
    }
}

.contact-option-grid {
    align-items: stretch !important;
}

.contact-option {
    border-radius: 15px !important;
    overflow: hidden !important;
}

.contact-option::before {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0) 28%),
        linear-gradient(180deg, rgba(16, 24, 39, .90), rgba(7, 12, 20, .97)) !important;
    opacity: 1 !important;
}

.contact-brand-art {
    grid-row: 1 !important;
    align-self: end !important;
    justify-self: center !important;
    position: relative !important;
    border-radius: 15px !important;
    padding: 8px !important;
    box-sizing: border-box !important;
    background: linear-gradient(180deg, rgba(7, 12, 20, .98), rgba(5, 9, 15, .94)) !important;
    overflow: hidden !important;
}

.contact-brand-art::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: 15px !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06) !important;
    pointer-events: none !important;
}

.contact-brand-art-frame {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px !important;
    display: grid !important;
    align-items: center !important;
    justify-items: center !important;
    box-sizing: border-box !important;
    background: radial-gradient(circle at 50% 28%, rgba(255,255,255,.18), transparent 30%),
        linear-gradient(180deg, rgba(10, 18, 28, .92), rgba(7, 13, 20, .95)) !important;
    overflow: hidden !important;
}

.contact-brand-art-frame::before {
    content: "" !important;
    position: absolute !important;
    inset: 3px !important;
    border-radius: 10px !important;
    border: 1px solid currentColor !important;
    opacity: .85 !important;
    box-shadow: 0 0 12px currentColor,
        inset 0 0 14px color-mix(in srgb, currentColor 38%, transparent) !important;
    pointer-events: none !important;
}

.contact-brand-art-frame::after {
    content: "" !important;
    position: absolute !important;
    left: 12px !important;
    right: 12px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, transparent, currentColor 16%, currentColor 84%, transparent) !important;
    filter: blur(.2px) !important;
    pointer-events: none !important;
}

.contact-brand-core {
    position: relative !important;
    z-index: 1 !important;
    font-size: 42px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    color: currentColor !important;
}

.contact-brand-caption {
    position: relative !important;
    z-index: 1 !important;
    padding: 2px 8px !important;
    border-radius: 999px !important;
    border: 1px solid color-mix(in srgb, currentColor 55%, transparent) !important;
    background: rgba(4, 8, 14, .82) !important;
    color: #dfe7f4 !important;
    font-size: 9.8px !important;
    line-height: 1.1 !important;
    letter-spacing: .04em !important;
    text-transform: none !important;
    box-shadow: inset 0 0 8px color-mix(in srgb, currentColor 20%, transparent) !important;
}

.contact-option strong {
    line-height: 1.06 !important;
}

.contact-option small {
    line-height: 1.08 !important;
}

.contact-whatsapp .contact-brand-art,
.contact-whatsapp .contact-brand-art-frame {
    color: #2cf6a0 !important;
}

.contact-facebook .contact-brand-art,
.contact-facebook .contact-brand-art-frame {
    color: #28a7ff !important;
}

.contact-gmail .contact-brand-art,
.contact-gmail .contact-brand-art-frame {
    color: #ff7446 !important;
}

.contact-whatsapp .contact-brand-art {
    box-shadow: 0 0 16px rgba(44, 246, 160, .24), inset 0 0 24px rgba(44, 246, 160, .05) !important;
}

.contact-facebook .contact-brand-art {
    box-shadow: 0 0 16px rgba(40, 167, 255, .24), inset 0 0 24px rgba(40, 167, 255, .05) !important;
}

.contact-gmail .contact-brand-art {
    box-shadow: 0 0 16px rgba(255, 116, 70, .22), inset 0 0 24px rgba(255, 116, 70, .05) !important;
}

.contact-option:hover .contact-brand-art,
.contact-option:focus-visible .contact-brand-art {
    transform: translateY(-1px) !important;
    filter: brightness(1.06) saturate(1.08) !important;
}

.contact-option:hover .contact-brand-art-frame::before,
.contact-option:focus-visible .contact-brand-art-frame::before {
    box-shadow: 0 0 16px currentColor,
        inset 0 0 18px color-mix(in srgb, currentColor 46%, transparent) !important;
}

.contact-option:hover .contact-brand-core,
.contact-option:focus-visible .contact-brand-core {
    text-shadow: 0 0 12px color-mix(in srgb, currentColor 82%, white 18%),
        0 0 26px color-mix(in srgb, currentColor 74%, transparent) !important;
}

@media (max-width: 920px) {
    .contact-modal {
        width: min(780px, calc(100vw - 40px)) !important;
    }

    .contact-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .contact-modal-content {
        min-height: 560px !important;
    }
}

@media (max-width: 520px) {
    .contact-modal {
        width: calc(100vw - 24px) !important;
    }

    .contact-modal-content {
        padding: 24px 14px 18px 14px !important;
    }

    .contact-option {
        min-height: 224px !important;
        height: 224px !important;
    }

    .contact-brand-art {
        width: 112px !important;
        height: 90px !important;
    }
}

.contact-x .contact-brand-art {
    box-shadow: 0 0 16px rgba(232, 241, 255, .22),
                inset 0 0 24px rgba(232, 241, 255, .045) !important;
}

.contact-x:hover,
.contact-x:focus-visible {
    border-color: rgba(232, 241, 255, .78) !important;
    box-shadow: 0 0 0 .75px rgba(232, 241, 255, .20),
                0 7.5px 18px rgba(0, 0, 0, .28),
                0 0 20px rgba(232, 241, 255, .18) !important;
}

.contact-x .contact-brand-core {
    font-size: 43px !important;
    font-family: Arial, Helvetica, sans-serif !important;
    letter-spacing: -.04em !important;
}

@media (max-width: 1080px) {
    .contact-modal {
        width: min(900px, calc(100vw - 40px)) !important;
    }

    .contact-option-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .contact-modal-content {
        min-height: 610px !important;
    }
}

@media (max-width: 700px) {
    .contact-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .contact-modal-content {
        min-height: 820px !important;
    }
}

.contact-brand-core {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    text-shadow: none !important;
}

.contact-brand-logo {
    display: block !important;
    object-fit: contain !important;
    filter: drop-shadow(0 0 8px rgba(255,255,255,.10)) !important;
}

.contact-option:hover .contact-brand-logo,
.contact-option:focus-visible .contact-brand-logo {
    transform: scale(1.02) !important;
}

.contact-brand-core img {
    border-radius: 0 !important;
}

.contact-brand-art-frame {
    grid-template-rows: 1fr !important;
}

.contact-brand-art-frame::after {
    bottom: 12px !important;
    height: 7px !important;
    opacity: .22 !important;
}

.contact-brand-caption {
    display: none !important;
}

.contact-brand-core {
    align-self: center !important;
}

.contact-x .contact-brand-art,
.contact-x .contact-brand-art-frame {
    color: #ffffff !important;
}

.contact-x .contact-brand-logo {
    object-fit: contain !important;
    filter: none !important;
    transform: none !important;
}

.contact-x:hover .contact-brand-logo,
.contact-x:focus-visible .contact-brand-logo {
    transform: none !important;
}

.contact-instagram .contact-brand-art,
.contact-instagram .contact-brand-art-frame {
    color: #c89bff !important;
}

.contact-instagram .contact-brand-art {
    box-shadow: 0 0 16px rgba(200, 155, 255, .28),
                inset 0 0 24px rgba(200, 155, 255, .06) !important;
}

.contact-instagram:hover,
.contact-instagram:focus-visible {
    border-color: rgba(200, 155, 255, .84) !important;
    box-shadow: 0 0 0 .75px rgba(200, 155, 255, .28),
                0 7.5px 18px rgba(0, 0, 0, .28),
                0 0 22px rgba(200, 155, 255, .24) !important;
}

.contact-instagram:hover .contact-brand-art-frame::before,
.contact-instagram:focus-visible .contact-brand-art-frame::before {
    box-shadow: 0 0 16px #c89bff,
                inset 0 0 18px rgba(200, 155, 255, .30) !important;
}

.contact-github .contact-brand-art,
.contact-github .contact-brand-art-frame {
    color: #eef4ff !important;
}

.contact-github .contact-brand-art {
    box-shadow: 0 0 16px rgba(238, 244, 255, .18),
                inset 0 0 24px rgba(238, 244, 255, .04) !important;
}

.contact-github:hover,
.contact-github:focus-visible {
    border-color: rgba(238, 244, 255, .78) !important;
    box-shadow: 0 0 0 .75px rgba(238, 244, 255, .20),
                0 7.5px 18px rgba(0, 0, 0, .28),
                0 0 20px rgba(238, 244, 255, .18) !important;
}

.contact-discord .contact-brand-art,
.contact-discord .contact-brand-art-frame {
    color: #90a1ff !important;
}

.contact-discord .contact-brand-art {
    box-shadow: 0 0 16px rgba(144, 161, 255, .26),
                inset 0 0 24px rgba(144, 161, 255, .05) !important;
}

.contact-discord:hover,
.contact-discord:focus-visible {
    border-color: rgba(144, 161, 255, .82) !important;
    box-shadow: 0 0 0 .75px rgba(144, 161, 255, .24),
                0 7.5px 18px rgba(0, 0, 0, .28),
                0 0 22px rgba(144, 161, 255, .22) !important;
}

.contact-youtube .contact-brand-art,
.contact-youtube .contact-brand-art-frame {
    color: #ff5b5b !important;
}

.contact-youtube .contact-brand-art {
    box-shadow: 0 0 16px rgba(255, 91, 91, .24),
                inset 0 0 24px rgba(255, 91, 91, .05) !important;
}

.contact-youtube:hover,
.contact-youtube:focus-visible {
    border-color: rgba(255, 91, 91, .84) !important;
    box-shadow: 0 0 0 .75px rgba(255, 91, 91, .24),
                0 7.5px 18px rgba(0, 0, 0, .28),
                0 0 22px rgba(255, 91, 91, .22) !important;
}

.contact-linkedin .contact-brand-art,
.contact-linkedin .contact-brand-art-frame {
    color: #67b3ff !important;
}

.contact-linkedin .contact-brand-art {
    box-shadow: 0 0 16px rgba(103, 179, 255, .24),
                inset 0 0 24px rgba(103, 179, 255, .05) !important;
}

.contact-linkedin:hover,
.contact-linkedin:focus-visible {
    border-color: rgba(103, 179, 255, .84) !important;
    box-shadow: 0 0 0 .75px rgba(103, 179, 255, .24),
                0 7.5px 18px rgba(0, 0, 0, .28),
                0 0 22px rgba(103, 179, 255, .22) !important;
}

@media (max-width: 1080px) {
    .contact-modal {
        width: min(980px, calc(100vw - 40px)) !important;
    }
}

@media (max-width: 860px) {
    .contact-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .contact-modal-content {
        min-height: 1180px !important;
    }
}

@media (max-width: 540px) {
    .contact-option-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }

    .contact-modal-content {
        min-height: 2140px !important;
    }
}

.contact-option strong {
    font-size: 15px !important;
}

.contact-option small {
    font-size: 12.8px !important;
}

@media (max-width: 860px) {
    .contact-option {
        min-height: 202px !important;
        height: 202px !important;
    }

    .contact-modal-content {
        min-height: 1085px !important;
    }
}

@media (max-width: 540px) {
    .contact-option {
        min-height: 194px !important;
        height: 194px !important;
        grid-template-rows: 90px 34px 40px !important;
    }

    .contact-brand-art {
        width: 104px !important;
        height: 78px !important;
    }

    .contact-modal-content {
        min-height: 1980px !important;
    }
}

.contact-modal {
    width: min(560px, calc(100vw - 72px)) !important;
}

.contact-modal-content {
    min-height: 0 !important;
    padding: 18px 18px 18px 18px !important;
}

.contact-modal-header {
    margin: 0 0 12px 0 !important;
}

.contact-modal-header h3 {
    margin-bottom: 4px !important;
}

.contact-modal-header p {
    max-width: 420px !important;
    margin: 0 auto !important;
}

.contact-option-grid {
    grid-template-columns: repeat(3, 138px) !important;
    justify-content: center !important;
    gap: 8px !important;
}

.contact-option {
    width: 138px !important;
    min-width: 138px !important;
    max-width: 138px !important;
    min-height: 184px !important;
    height: 184px !important;
    grid-template-rows: 84px 30px 38px !important;
    padding: 12px !important;
    gap: 2px !important;
    box-sizing: border-box !important;
}

.contact-brand-art {
    width: 110px !important;
    height: 84px !important;
}

.contact-brand-art-frame {
    padding: 7px 5px 7px 5px !important;
}

.contact-brand-logo {
    max-width: 56px !important;
    max-height: 56px !important;
    width: 56px !important;
    height: 56px !important;
}

.contact-whatsapp .contact-brand-logo {
    width: 52px !important;
    height: 52px !important;
}

.contact-facebook .contact-brand-logo {
    width: 50px !important;
    height: 50px !important;
}

.contact-x .contact-brand-logo {
    width: 58px !important;
    height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
}

.contact-gmail .contact-brand-logo {
    width: 58px !important;
    height: 58px !important;
}

.contact-github .contact-brand-logo {
    width: 52px !important;
    height: 52px !important;
}

.contact-youtube .contact-brand-logo {
    width: 56px !important;
    height: 56px !important;
}

.contact-linkedin .contact-brand-logo {
    width: 50px !important;
    height: 50px !important;
}

.contact-option strong {
    height: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
}

.contact-option small {
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    -webkit-line-clamp: 2 !important;
}

@media (max-width: 560px) {
    .contact-modal {
        width: min(440px, calc(100vw - 24px)) !important;
    }

    .contact-option-grid {
        grid-template-columns: repeat(2, 138px) !important;
    }
}

@media (max-width: 340px) {
    .contact-option-grid {
        grid-template-columns: repeat(1, 138px) !important;
    }
}

.contact-discord .contact-brand-logo {
    filter: none !important;
    transform: none !important;
}

.contact-discord .contact-brand-logo {
    width: 46px !important;
    height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    object-fit: cover !important;
    background: transparent !important;
    box-shadow: 0 0 0 1px rgba(255,255,255,.06) !important;
}

.contact-discord:hover .contact-brand-logo,
.contact-discord:focus-visible .contact-brand-logo {
    border-radius: 12px !important;
    transform: none !important;
}

.contact-instagram .contact-brand-logo {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    object-fit: contain !important;
    border-radius: 14px !important;
    background: transparent !important;
    filter: none !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.contact-instagram:hover .contact-brand-logo,
.contact-instagram:focus-visible .contact-brand-logo {
    transform: none !important;
    border-radius: 14px !important;
}

.about-modal {
    border-color: rgba(255, 191, 0, .82) !important;
}

.about-modal-content {
    width: 100% !important;
    max-height: calc(100vh - 92px) !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
}

.about-modal-header {
    margin: 0 0 18px 0 !important;
    padding-right: 42px !important;
}

.about-modal-kicker {
    margin: 0 0 6px 0 !important;
    color: #7fdcff !important;
    font-size: .82rem !important;
    line-height: 1.1 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    text-shadow: 0 0 10px rgba(0, 174, 243, .42) !important;
}

.about-modal-header h3 {
    margin: 0 !important;
    color: #ffe27d !important;
    font-size: 1.72rem !important;
    line-height: 1.05 !important;
    letter-spacing: .025em !important;
    text-shadow: 0 0 12px rgba(255, 191, 0, .42) !important;
}

.about-modal-body {
    display: grid !important;
    gap: 12px !important;
    color: #d7e2ee !important;
    font-size: .98rem !important;
    line-height: 1.56 !important;
}

.about-modal-body p {
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 1px solid rgba(0, 174, 243, .16) !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, rgba(18, 26, 38, .62), rgba(8, 13, 20, .54)) !important;
    box-shadow: inset 0 0 18px rgba(0, 174, 243, .045) !important;
}

@media (max-width: 620px) {
    .about-modal {
        width: min(520px, calc(100vw - 28px)) !important;
    }

    .about-modal-content {
        padding: 28px 18px 22px 18px !important;
    }

    .about-modal-header h3 {
        font-size: 1.42rem !important;
    }

    .about-modal-body {
        font-size: .92rem !important;
        line-height: 1.46 !important;
    }
}

.branded-modal {
    position: relative !important;
}

.modal-brand-badge {
    position: absolute !important;
    top: 14px !important;
    left: 16px !important;
    z-index: 3 !important;
    width: 84px !important;
    height: 62px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    pointer-events: none !important;
}

.modal-brand-logo {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 84px !important;
    max-height: 62px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 0 10px rgba(255, 191, 0, .28)) !important;
}

.language-modal {
    position: relative !important;
    padding-top: 16px !important;
}

.language-modal-header {
    grid-template-columns: minmax(0, 1fr) 36px !important;
    padding-left: 96px !important;
}

.modal-work-placeholder {
    padding-top: 58px !important;
}

.about-modal-content {
    padding-top: 38px !important;
}

.about-modal-header {
    padding-left: 96px !important;
}

.contact-modal-content {
    padding-top: 44px !important;
}

.contact-modal-header {
    padding-left: 96px !important;
}

@media (max-width: 620px) {
    .modal-brand-badge {
        top: 14px !important;
        left: 14px !important;
        width: 72px !important;
        height: 54px !important;
    }

    .modal-brand-logo {
        max-width: 72px !important;
        max-height: 54px !important;
    }

    .language-modal-header,
    .about-modal-header,
    .contact-modal-header {
        padding-left: 82px !important;
    }

    .contact-modal-content {
        padding-top: 38px !important;
    }

    .about-modal-content {
        padding-top: 34px !important;
    }
}

.brand-logo-image-wrap {
    width: 216px !important;
    height: 128px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 0 0 216px !important;
    font-size: 0 !important;
    letter-spacing: 0 !important;
    color: transparent !important;
}

.brand-logo-image {
    display: block !important;
    width: 216px !important;
    height: auto !important;
    max-height: 128px !important;
    object-fit: contain !important;
}

.brand-area {
    gap: 9px !important;
}

.panel-one .intro-block .intro-title,
.panel-one .intro-block .intro-title:focus,
.panel-one .intro-block .intro-title:focus-visible,
.panel-one .intro-block .intro-title:focus-within {
    outline: 0 !important;
    outline-width: 0 !important;
    outline-style: none !important;
    border: 0 !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none !important;
}

.panel-one .intro-block .intro-title::selection,
.panel-one .intro-block .intro-title *::selection {
    background: transparent !important;
    color: inherit !important;
}

.panel-one .intro-block .intro-title::-moz-selection,
.panel-one .intro-block .intro-title *::-moz-selection {
    background: transparent !important;
    color: inherit !important;
}

.panel-one .intro-block .intro-title::before,
.panel-one .intro-block .intro-title::after {
    content: none !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.empty-logo-panel {
    cursor: default !important;
}

.empty-logo-button {
    pointer-events: none !important;
    cursor: default !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.empty-logo-button:focus,
.empty-logo-button:focus-visible,
.empty-logo-button:active {
    outline: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.panel-five > .empty-logo-panel:hover::after {
    opacity: 0 !important;
}

.panel-five > .empty-logo-panel:hover .empty-logo-image {
    filter: none !important;
}

.panel-four {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.panel-four .status-badge {
    height: 19px !important;
    font-size: 13.5px !important;
}

.panel-four .status-content {
    gap: 8px !important;
}

.panel-four .meta-scroll {
    overflow-x: hidden !important;
    gap: 0 !important;
}

.panel-four .meta-scroll div {
    min-height: 20px !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(72px, .95fr) !important;
    gap: 6px !important;
    align-items: center !important;
    padding: 2px 0 !important;
}

.panel-four .meta-scroll span {
    min-width: 0 !important;
    color: #9ea8b4 !important;
    overflow-wrap: break-word !important;
}

.panel-four .meta-scroll strong {
    min-width: 0 !important;
    text-align: right !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
}

.panel-four .purchase-actions {
    gap: 5px !important;
}

.panel-four .purchase-actions a {
    min-height: 25px !important;
    font-size: 12.5px !important;
}

.panel-four .meta-scroll strong {
    color: var(--green) !important;
}

.panel-four .meta-scroll div:first-child strong {
    color: var(--green) !important;
    font-weight: 400 !important;
}

.panel-four .status-content > p {
    font-size: 13.2px !important;
    line-height: 1.34 !important;
}

.panel-four .meta-scroll div {
    font-size: 13.2px !important;
    line-height: 1.14 !important;
}

.panel-four .meta-scroll span {
    font-size: 13.2px !important;
    line-height: 1.14 !important;
}

.panel-four .meta-scroll strong {
    font-size: 13.35px !important;
    line-height: 1.12 !important;
    font-weight: 400 !important;
}

.panel-four .meta-scroll div:nth-child(6) strong,
.panel-four .meta-scroll div:nth-child(9) strong {
    font-size: 12.85px !important;
    line-height: 1.08 !important;
    font-weight: 400 !important;
}

.real-project-video {
    width: 480px !important;
    height: 270px !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
}

.video-thumb-row {
    width: 480px !important;
}

.video-thumb-button {
    flex-basis: 78px !important;
    height: 48px !important;
}

.real-video-area {
    margin-left: -80px !important;
}

.panel-three > .panel-three-main {
    position: relative !important;
}

.project-inline-info {
    left: 513px !important;
    top: 130px !important;
    width: 270px !important;
    padding: 9px 10px 10px !important;
    border-radius: 13.5px !important;
    box-sizing: border-box !important;
}

.project-inline-status {
    height: 22px !important;
    margin: 0 0 7px !important;
    border-radius: 5px !important;
    background: rgba(52, 30, 85, .80) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.project-inline-status span {
    color: #ca9cff !important;
    font-size: 13.5px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
}

.project-inline-description {
    margin: 0 0 7px !important;
    color: #c8d7e8 !important;
    font-size: 11.5px !important;
    line-height: 1.25 !important;
}

.project-inline-meta {
    display: grid !important;
    align-content: start !important;
}

.project-inline-meta div {
    min-height: 20px !important;
    border-top: 0.75px solid rgba(255,255,255,.08) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(74px, .92fr) !important;
    gap: 6px !important;
    align-items: center !important;
    padding: 1px 0 !important;
    font-size: 11.35px !important;
    line-height: 1.08 !important;
}

.project-inline-meta span {
    min-width: 0 !important;
    color: #aab4c2 !important;
    overflow-wrap: break-word !important;
}

.project-inline-meta strong {
    min-width: 0 !important;
    color: var(--green) !important;
    font-size: 11.45px !important;
    line-height: 1.06 !important;
    font-weight: 400 !important;
    text-align: right !important;
    overflow-wrap: break-word !important;
}

.project-inline-info {
    border: 0 !important;
    box-shadow: none !important;
    background: rgba(10, 12, 18, .12) !important;
}

.real-video-area {
    width: 798px !important;
}

.panel-three > .panel-three-actions > .action-frame > .action-scroll {
    padding: 3.84px 3.8px 3.84px 4.8px !important;
}

.project-inline-info {
    grid-template-rows: auto auto 1fr auto !important;
}

.project-inline-actions {
    align-self: end !important;
}

.project-inline-info .project-inline-meta {
    min-height: 0 !important;
}

.project-inline-info {
    display: block !important;
    position: absolute !important;
}

.project-inline-actions {
    position: absolute !important;
    left: 10px !important;
    right: 10px !important;
    bottom: -10px !important;
    margin-top: 0 !important;
    display: grid !important;
    gap: 6px !important;
}

.project-inline-actions a {
    min-height: 27px !important;
    font-size: 13.5px !important;
    border-radius: 5px !important;
}

.real-video-area {
    padding: 9px 9px 39px 9px !important;
}

.project-inline-info {
    height: 380px !important;
    max-height: 380px !important;
    overflow: visible !important;
}

.panel-four {
    padding: 12px 7.5px 9px 10.5px;
    display: grid;
    grid-template-rows: 45px minmax(0, 1fr);
    align-content: start;
}

.panel-four-title > div {
    margin-left: 11.25px;
}

.panel-four-title h2 {
    font-size: 27px;
    line-height: 1;
    font-weight: 560;
    color: #ffffff;
    position: relative;
    top: 3.75px;
}

.panel-four-title p {
    font-size: 15.75px;
    color: #b36dff;
    margin-top: 3px;
    position: relative;
    top: 3.75px;
}

.panel-four-empty {
    min-height: 0;
}

.projects-title {
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    align-items: center;
}

.projects-title-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.content-title {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    align-items: center;
}

.content-title > div {
    min-width: 0;
}

.panel-four-title {
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    align-items: center;
}

.section-title-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.content-title {
    margin-left: -65px;
    width: calc(100% + 65px);
}

.brand-logo-image-wrap,
.brand-name {
    position: relative !important;
    top: 30px !important;
}

.panel-one .intro-block {
    position: relative !important;
    top: 146px !important;
}

.brand-name {
    overflow: visible !important;
    text-overflow: clip !important;
    max-width: none !important;
    flex: 0 0 auto !important;
}

.brand-area {
    overflow: visible !important;
}

.brand-logo-image-wrap {
    top: 60px !important;
}

.brand-logo-image-wrap {
    left: -30px !important;
}

.brand-name {
    top: 150px !important;
    left: -223px !important;
    font-size: 16.2px !important;
}

.brand-name {
    color: #ffbf00 !important;
    text-shadow: 0 0 1px rgba(255, 191, 0, .95),
        0 0 3px rgba(255, 191, 0, .55) !important;
}

.brand-logo-image {
    filter: drop-shadow(0 0 1px rgba(255, 191, 0, .95))
        drop-shadow(0 0 3px rgba(255, 191, 0, .50)) !important;
}

.about-modal {
    width: min(1080px, calc(100vw - 72px)) !important;
}

.about-modal-content {
    padding: 34px 38px 34px 38px !important;
}

.about-modal-layout {
    display: grid !important;
    grid-template-columns: 318px minmax(0, 1fr) !important;
    gap: 20px !important;
    align-items: start !important;
}

.about-modal-photo-frame {
    margin: 0 !important;
    padding: 9px !important;
    border: 1px solid rgba(255, 191, 0, .72) !important;
    border-radius: 16px !important;
    background: radial-gradient(circle at 48% 2%, rgba(255, 191, 0, .18), transparent 32%),
        linear-gradient(180deg, rgba(18, 26, 38, .80), rgba(5, 10, 17, .88)) !important;
    box-shadow: 0 0 12px rgba(255, 191, 0, .26),
        inset 0 0 14px rgba(0, 174, 243, .08) !important;
    overflow: hidden !important;
}

.about-modal-photo {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 11px !important;
    object-fit: contain !important;
    object-position: center top !important;
    box-shadow: 0 0 18px rgba(0, 0, 0, .38),
        0 0 10px rgba(0, 174, 243, .13) !important;
}

@media (max-width: 900px) {
    .about-modal {
        width: min(680px, calc(100vw - 36px)) !important;
    }

    .about-modal-layout {
        grid-template-columns: 1fr !important;
    }

    .about-modal-photo-frame {
        width: min(320px, 100%) !important;
        justify-self: center !important;
    }
}

.about-modal .modal-brand-badge {
    left: 36px !important;
}

.about-modal .about-modal-header {
    position: relative !important;
    left: 20px !important;
}

.home-topbar {
    grid-template-columns: 253.75px minmax(0, 1fr) 231.75px !important;
}

.panel-six {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    border-right: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
}

.four-column-dashboard {
    grid-template-columns: 253.75px 311px 799.75px 276px 275px 1fr !important;
}


/* =========================================================
   V_294 - Desktop Home Bootstrap 3 / 6 / 3 after column swap
   - panel-two is left col-3 (25%)
   - panel-three is center col-6 (50%) and keeps the video in the middle
   - panel-one is right col-3 (25%)
   - Former panel-four (Novedades) and panel-five (Marcas) stay in top-menu modals
   - Mobile/Tablet CSS is intentionally untouched in /profiles/mobile-tablet/
   ========================================================= */
.home-topbar {
    grid-template-columns: 253.75px minmax(0, 1fr) 260px !important;
}

.main-nav {
    gap: clamp(5px, .62vw, 12px) !important;
}

.main-nav a {
    font-size: clamp(11.5px, .68vw, 14px) !important;
    letter-spacing: .01em !important;
}

.top-actions {
    gap: 6px !important;
    padding-right: 10px !important;
}

.top-register {
    min-width: 75px !important;
    padding: 0 6px !important;
    font-size: 13px !important;
}

.top-language-button {
    min-width: 64px !important;
    padding: 0 7px !important;
    font-size: 13px !important;
}

.language-pill {
    font-size: 13px !important;
}

.four-column-dashboard {
    display: block !important;
    height: calc(100vh - 39px) !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

.desktop-main-row {
    height: 100% !important;
    min-height: 0 !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
}

.desktop-main-row > .dashboard-panel {
    height: 100% !important;
    min-height: 0 !important;
    min-width: 0 !important;
    flex-shrink: 0 !important;
}

.desktop-main-row > .panel-two {
    flex-basis: 25% !important;
    width: 25% !important;
    max-width: 25% !important;
}

.desktop-main-row > .panel-three {
    flex-basis: 50% !important;
    width: 50% !important;
    max-width: 50% !important;
}

.desktop-main-row > .panel-one {
    flex-basis: 25% !important;
    width: 25% !important;
    max-width: 25% !important;
}

.desktop-main-row > .panel-three .content-title {
    margin-left: 0 !important;
    width: 100% !important;
}

.desktop-main-row > .panel-three .real-project-video,
.desktop-main-row > .panel-three .video-thumb-row {
    width: 100% !important;
    max-width: 100% !important;
}

.desktop-main-row > .panel-three .real-project-video {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
}

.desktop-main-row > .panel-three .video-thumb-button {
    flex: 0 0 68px !important;
}

.detached-panel-modal {
    width: min(1040px, calc(100vw - 72px)) !important;
    height: min(760px, calc(100vh - 72px)) !important;
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 38px 28px 26px !important;
}

.detached-panel-title {
    color: #ffbf00 !important;
    font-size: 22px !important;
    font-weight: 560 !important;
    letter-spacing: .05em !important;
    text-transform: uppercase !important;
    text-shadow: 0 0 8px rgba(255, 191, 0, .32) !important;
}

.panel-detached-content {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    border: 0.75px solid rgba(255, 255, 255, .12) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.news-modal .panel-four {
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) !important;
    padding: 18px !important;
}

.brands-modal .panel-five {
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) !important;
    padding: 18px !important;
}

.brands-modal .panel-five-spacer {
    display: none !important;
}

.brands-modal .matrix-disclaimer {
    margin: 0 0 14px 0 !important;
}

.brands-modal .empty-logo-panel {
    height: 100% !important;
    min-height: 0 !important;
}

.brands-modal .empty-logo-grid {
    height: 100% !important;
    overflow-y: auto !important;
}


/* =========================================================
   V_295 - Desktop Home paneles lógicos Bootstrap 3 / 6 / 3
   - Panel 1 lógico: Proyectos = desktop-panel-one = col-3 = 25%
   - Panel 2 lógico: Video = desktop-panel-two = col-6 = 50%
   - Panel 3 lógico: Logotipo IQ / Intro = desktop-panel-three = col-3 = 25%
   - Se conservan las clases visuales históricas para no romper estilos acumulados.
   - Mobile/Tablet queda intacto.
   ========================================================= */
.desktop-main-row > .desktop-panel-one {
    order: 1 !important;
    flex: 0 0 25% !important;
    flex-basis: 25% !important;
    width: 25% !important;
    max-width: 25% !important;
}

.desktop-main-row > .desktop-panel-two {
    order: 2 !important;
    flex: 0 0 50% !important;
    flex-basis: 50% !important;
    width: 50% !important;
    max-width: 50% !important;
}

.desktop-main-row > .desktop-panel-three {
    order: 3 !important;
    flex: 0 0 25% !important;
    flex-basis: 25% !important;
    width: 25% !important;
    max-width: 25% !important;
}

.desktop-main-row > .desktop-panel-two .content-title {
    margin-left: 0 !important;
    width: 100% !important;
}

.desktop-main-row > .desktop-panel-two .real-project-video,
.desktop-main-row > .desktop-panel-two .video-thumb-row {
    width: 100% !important;
    max-width: 100% !important;
}

.desktop-main-row > .desktop-panel-two .real-project-video {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
}

/* =========================================================
   V_296 - Detalle Desktop Panel 2 y marca en Panel 3
   - Panel 2 conserva Bootstrap principal col-6.
   - Dentro del Panel 2: video col-8 + descripción/características col-4.
   - El video conserva siempre relación 16:9.
   - Panel 3 muestra logotipo IQ + IGNACIO QUIJAS RIVERA arriba del texto existente.
   - Mobile/Tablet queda intacto.
   ========================================================= */
.desktop-main-row > .desktop-panel-two > .panel-three-main {
    display: grid !important;
    grid-template-rows: auto auto minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 12px 12px 0 !important;
    min-height: 0 !important;
}

.desktop-main-row > .desktop-panel-two .project-video-detail-layout {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

.desktop-main-row > .desktop-panel-two .video-detail-row {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    margin: 0 !important;
}

.desktop-main-row > .desktop-panel-two .video-detail-media-col {
    flex: 0 0 66.66666667% !important;
    width: 66.66666667% !important;
    max-width: 66.66666667% !important;
    min-width: 0 !important;
    padding-right: 7px !important;
}

.desktop-main-row > .desktop-panel-two .video-detail-info-col {
    flex: 0 0 33.33333333% !important;
    width: 33.33333333% !important;
    max-width: 33.33333333% !important;
    min-width: 0 !important;
    padding-left: 7px !important;
}

.desktop-main-row > .desktop-panel-two .real-video-area {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 8px !important;
    display: grid !important;
    grid-template-rows: auto auto !important;
    gap: 8px !important;
    box-sizing: border-box !important;
    justify-content: stretch !important;
    align-content: start !important;
    overflow: hidden !important;
}

.desktop-main-row > .desktop-panel-two .real-project-video {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: contain !important;
    display: block !important;
    background: #000 !important;
}

.desktop-main-row > .desktop-panel-two .video-thumb-row {
    width: 100% !important;
    max-width: 100% !important;
    height: 54px !important;
    padding: 0 0 5px !important;
}

.desktop-main-row > .desktop-panel-two .video-thumb-button {
    flex: 0 0 72px !important;
    height: 46px !important;
}

.desktop-main-row > .desktop-panel-two .project-inline-info {
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 8px 9px 9px !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-rows: auto auto auto auto !important;
    overflow: hidden !important;
}

.desktop-main-row > .desktop-panel-two .project-inline-description {
    font-size: 11px !important;
    line-height: 1.22 !important;
    margin-bottom: 6px !important;
}

.desktop-main-row > .desktop-panel-two .project-inline-meta {
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
}

.desktop-main-row > .desktop-panel-two .project-inline-meta div {
    min-height: 18px !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr) !important;
    gap: 4px !important;
    font-size: 10.6px !important;
    line-height: 1.05 !important;
}

.desktop-main-row > .desktop-panel-two .project-inline-meta strong {
    font-size: 10.75px !important;
    line-height: 1.05 !important;
}

.desktop-main-row > .desktop-panel-two .project-inline-actions {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 8px !important;
    display: grid !important;
    gap: 6px !important;
}

.desktop-main-row > .desktop-panel-two .project-inline-actions a {
    min-height: 26px !important;
    font-size: 12.4px !important;
    border-radius: 5px !important;
}

.desktop-main-row > .desktop-panel-three {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 16px 14px 10px !important;
    gap: 10px !important;
}

.desktop-panel-three-brand {
    width: 100% !important;
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    padding: 6px 0 8px !important;
    border-bottom: 0.75px solid rgba(255, 191, 0, .28) !important;
}

.desktop-panel-three-logo-wrap {
    width: min(118px, 58%) !important;
    aspect-ratio: 1 / 1 !important;
    display: grid !important;
    place-items: center !important;
}

.desktop-panel-three-logo {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

.desktop-panel-three-brand-name {
    color: #ffbf00 !important;
    font-size: clamp(15px, 1.05vw, 22px) !important;
    line-height: 1.05 !important;
    letter-spacing: .07em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    text-shadow: 0 0 8px rgba(255, 191, 0, .35) !important;
    white-space: normal !important;
}

.desktop-main-row > .desktop-panel-three .intro-block {
    position: relative !important;
    top: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.desktop-main-row > .desktop-panel-three .intro-block h1,
.desktop-main-row > .desktop-panel-three .intro-block p {
    max-width: 100% !important;
}

.desktop-main-row > .desktop-panel-three .matrix-copyright {
    margin-top: auto !important;
    width: 100% !important;
}

/* =========================================================
   V_297 - Desktop Bootstrap cleanup: paneles sin clases históricas cruzadas
   - Panel 1: Proyectos = desktop-panel-one col-3, sin logotipo/nombre.
   - Panel 2: Video = desktop-panel-two col-6, interno col-8 video 16:9 + col-4 características.
   - Panel 3: Logotipo IQ + IGNACIO QUIJAS RIVERA = desktop-panel-three col-3.
   - Bootstrap manda en la estructura; CSS propio queda solo para acabado visual mínimo.
   - Mobile/Tablet queda intacto.
   ========================================================= */
.home-topbar {
    grid-template-columns: 72px minmax(0, 1fr) 260px !important;
}

.home-topbar .desktop-brand-placeholder {
    height: 39px !important;
    min-width: 0 !important;
    padding: 0 !important;
    display: block !important;
    border-right: 0.75px solid var(--line) !important;
    overflow: hidden !important;
}

.home-topbar .brand-logo-image-wrap,
.home-topbar .brand-name {
    display: none !important;
}

.desktop-main-row > .dashboard-panel {
    height: 100% !important;
    min-height: 0 !important;
    min-width: 0 !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-one {
    order: 1 !important;
    flex: 0 0 25% !important;
    flex-basis: 25% !important;
    width: 25% !important;
    max-width: 25% !important;
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 12px !important;
    background: var(--bs-dark) !important;
    color: var(--bs-light) !important;
    overflow: hidden !important;
}

.desktop-panel-one .projects-title {
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: 40px minmax(0, 1fr) !important;
    align-items: center !important;
}

.desktop-panel-one .projects-title > div {
    min-width: 0 !important;
    margin-left: 0 !important;
}

.desktop-panel-one .project-button-frame {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.desktop-panel-one .project-scroll {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-two {
    order: 2 !important;
    flex: 0 0 50% !important;
    flex-basis: 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    display: grid !important;
    grid-template-rows: minmax(0, 70%) minmax(0, 30%) !important;
    padding: 0 !important;
    background: var(--bs-black) !important;
    color: var(--bs-light) !important;
    overflow: hidden !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-main {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 12px !important;
    margin: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-two .content-title,
.desktop-main-row > .desktop-panel-two .real-video-area {
    transform: none !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
}

.desktop-main-row > .desktop-panel-two .content-title {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.desktop-main-row > .desktop-panel-two .project-video-detail-layout {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.desktop-main-row > .desktop-panel-two .video-detail-row {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.desktop-main-row > .desktop-panel-two .video-detail-media-col {
    flex: 0 0 66.66666667% !important;
    width: 66.66666667% !important;
    max-width: 66.66666667% !important;
    min-width: 0 !important;
    height: 100% !important;
    padding-right: 7px !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-two .video-detail-info-col {
    flex: 0 0 33.33333333% !important;
    width: 33.33333333% !important;
    max-width: 33.33333333% !important;
    min-width: 0 !important;
    height: 100% !important;
    padding-left: 7px !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-two .real-video-area {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 8px !important;
    display: grid !important;
    grid-template-rows: auto auto !important;
    gap: 8px !important;
    justify-content: stretch !important;
    align-content: start !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-two .real-project-video {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: contain !important;
    background: #000 !important;
}

.desktop-main-row > .desktop-panel-two .video-thumb-row {
    width: 100% !important;
    max-width: 100% !important;
    height: 54px !important;
    padding: 0 0 5px !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-two .video-thumb-button {
    flex: 0 0 72px !important;
    height: 46px !important;
}

.desktop-main-row > .desktop-panel-two .project-inline-info {
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 8px 9px 9px !important;
    display: grid !important;
    grid-template-rows: auto auto auto auto !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-two .project-inline-actions {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 8px !important;
    display: grid !important;
    gap: 6px !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-actions {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-actions > .action-frame {
    width: 100% !important;
    height: calc(100% - 10px) !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1.5px solid #ffbf00 !important;
    border-radius: 13.5px !important;
    background: rgba(10, 12, 18, .32) !important;
    box-shadow: 0 0 9px rgba(255, 191, 0, .55), 0 0 21px rgba(255, 115, 0, .35), inset 0 0 13.5px rgba(255, 191, 0, .10) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-actions > .action-frame > .action-scroll {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    grid-template-rows: 1fr !important;
    grid-auto-flow: column !important;
    column-gap: 3.84px !important;
    row-gap: 0 !important;
    padding: 5px 4px !important;
    align-items: stretch !important;
    justify-items: stretch !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-actions .action-button {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    display: grid !important;
    grid-template-rows: 76.8px 32px 52px !important;
    align-items: center !important;
    justify-items: center !important;
    padding: 4px 3.2px 5px !important;
    gap: 1.5px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-actions .action-card-image {
    grid-row: 1 !important;
    width: 76.8px !important;
    height: 76.8px !important;
    max-width: 76.8px !important;
    max-height: 76.8px !important;
    object-fit: cover !important;
    object-position: center !important;
    margin: 0 !important;
    display: block !important;
    border-radius: 5.76px !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-actions .action-button strong {
    grid-row: 2 !important;
    width: 100% !important;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14.88px !important;
    line-height: 16px !important;
    text-align: center !important;
    white-space: normal !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-actions .action-button small {
    grid-row: 3 !important;
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14.1696px !important;
    line-height: 15px !important;
    text-align: center !important;
    white-space: normal !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-three {
    order: 3 !important;
    flex: 0 0 25% !important;
    flex-basis: 25% !important;
    width: 25% !important;
    max-width: 25% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 16px 14px 10px !important;
    gap: 10px !important;
    background: var(--bs-dark) !important;
    color: var(--bs-light) !important;
    overflow: hidden !important;
}

.desktop-panel-three-brand {
    width: 100% !important;
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    padding: 6px 0 8px !important;
    border-bottom: 0.75px solid rgba(255, 191, 0, .28) !important;
}

.desktop-panel-three-logo-wrap {
    width: min(118px, 58%) !important;
    aspect-ratio: 1 / 1 !important;
    display: grid !important;
    place-items: center !important;
}

.desktop-panel-three-logo {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

.desktop-panel-three-brand-name {
    color: #ffbf00 !important;
    font-size: clamp(15px, 1.05vw, 22px) !important;
    line-height: 1.05 !important;
    letter-spacing: .07em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    text-shadow: 0 0 8px rgba(255, 191, 0, .35) !important;
    white-space: normal !important;
}

.desktop-main-row > .desktop-panel-three .intro-block {
    position: relative !important;
    top: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.desktop-main-row > .desktop-panel-three .intro-block h1,
.desktop-main-row > .desktop-panel-three .intro-block p {
    max-width: 100% !important;
}

.desktop-main-row > .desktop-panel-three .matrix-copyright {
    margin-top: auto !important;
    width: 100% !important;
}

.desktop-main-row > .desktop-panel-three .intro-title,
.desktop-main-row > .desktop-panel-three .intro-title:focus,
.desktop-main-row > .desktop-panel-three .intro-title:focus-visible,
.desktop-main-row > .desktop-panel-three .intro-title:focus-within {
    outline: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none !important;
}



/* ============================================================
   V_299 - Panel 2: quitar solo altura sobrante del contenedor
   Objetivo: no modificar tamaños internos de imagen, título ni descripción.
   Scope: Desktop únicamente, dentro de Panel 2 > marco amarillo.
   ============================================================ */
.desktop-main-row > .desktop-panel-two > .panel-three-actions > .action-frame > .action-scroll {
    align-items: start !important;
    align-content: start !important;
    grid-template-rows: auto !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-actions .action-button {
    height: auto !important;
    max-height: none !important;
    align-self: start !important;
}

/* ============================================================
   V_300 - Panel 2: marco amarillo al fondo y envoltura cercana
   Objetivo:
   - Marco amarillo siempre al fondo de la Columna 2.
   - Quitar altura sobrante del contenedor sin tocar tamaños internos.
   - Dejar 3px entre el marco amarillo y los botones.
   - No modificar imagen, título, descripción ni fuentes de los botones.
   Scope: Desktop únicamente, Panel 2 > marco amarillo.
   ============================================================ */
.desktop-main-row > .desktop-panel-two > .panel-three-actions {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-actions > .action-frame {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100% - 20px) !important;
    margin: 0 !important;
    padding: 3px !important;
    align-self: flex-end !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-actions > .action-frame > .action-scroll {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: 100% !important;
    padding: 0 !important;
    grid-template-rows: auto !important;
    align-items: start !important;
    align-content: start !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-actions .action-button {
    height: auto !important;
    max-height: none !important;
    align-self: start !important;
}


/* ============================================================
   V_302 - Panel 3: Mi Portada + símbolo Movimiento Azteca
   Objetivo:
   - Mantener el branding de la tercera columna estructurado.
   - Agregar símbolo del Movimiento Azteca y título Mi Portada.
   - Igualar el tamaño del título a Proyectos / Singularity Escape.
   - No modificar Mobile/Tablet.
   ============================================================ */
.desktop-main-row > .desktop-panel-three .desktop-panel-three-cover-title {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 0 8px !important;
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr) !important;
    column-gap: 12px !important;
    align-items: center !important;
    align-self: stretch !important;
    border-bottom: 0.75px solid rgba(179, 109, 255, .30) !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-three .desktop-panel-three-cover-title .section-title-icon {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
    display: block !important;
}

.desktop-main-row > .desktop-panel-three .desktop-panel-three-cover-title > div {
    min-width: 0 !important;
    margin-left: 11.25px !important;
}

.desktop-main-row > .desktop-panel-three .desktop-panel-three-cover-title h2 {
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: 34.5px !important;
    line-height: 1 !important;
    font-weight: 560 !important;
    position: relative !important;
    top: 3.75px !important;
    white-space: normal !important;
}

/* ============================================================
   V_302 - Panel 3: cabecera Mi Portada alineada con Proyectos
   Objetivo:
   - Mantener solo símbolo Azteca + Mi Portada arriba del logotipo IQ.
   - Igualar tamaño del símbolo y font con Proyectos / Singularity Escape.
   - No modificar logotipo IQ ni texto IGNACIO QUIJAS RIVERA.
   - No modificar Mobile/Tablet.
   ============================================================ */
.desktop-main-row > .desktop-panel-three .desktop-panel-three-cover-title,
.desktop-main-row > .desktop-panel-three .panel-title.projects-title.desktop-panel-three-cover-title {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 0 8px !important;
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr) !important;
    column-gap: 12px !important;
    align-items: center !important;
    justify-items: start !important;
    align-self: stretch !important;
    text-align: left !important;
    border-bottom: 0.75px solid rgba(179, 109, 255, .30) !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-three .desktop-panel-three-cover-title .projects-title-icon,
.desktop-main-row > .desktop-panel-three .desktop-panel-three-cover-title .section-title-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    object-fit: contain !important;
    display: block !important;
    justify-self: start !important;
    align-self: center !important;
    margin: 0 !important;
}

.desktop-main-row > .desktop-panel-three .desktop-panel-three-cover-title > div {
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    justify-self: start !important;
    align-self: center !important;
    text-align: left !important;
}

.desktop-main-row > .desktop-panel-three .desktop-panel-three-cover-title h2 {
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: 34.5px !important;
    line-height: 1 !important;
    font-weight: 560 !important;
    position: relative !important;
    top: 3.75px !important;
    white-space: nowrap !important;
    text-align: left !important;
}


/* ============================================================
   V_303 - Panel 3: subtítulo Mi Portada
   Objetivo:
   - Reemplazar la línea morada inferior por el texto
     Perfil • Experiencia • Visión.
   - Mantener símbolo y título con la misma línea visual de
     Proyectos y Singularity Escape.
   - No modificar el logotipo IQ ni el texto IGNACIO QUIJAS RIVERA.
   - No modificar Mobile/Tablet.
   ============================================================ */
.desktop-main-row > .desktop-panel-three .desktop-panel-three-cover-title,
.desktop-main-row > .desktop-panel-three .panel-title.projects-title.desktop-panel-three-cover-title {
    border-bottom: none !important;
    padding: 0 0 8px !important;
    align-items: center !important;
}

.desktop-main-row > .desktop-panel-three .desktop-panel-three-cover-title p {
    margin: 3px 0 0 !important;
    padding: 0 !important;
    color: #b36dff !important;
    font-size: 15.75px !important;
    line-height: 1.15 !important;
    font-weight: 400 !important;
    position: relative !important;
    top: 3.75px !important;
    white-space: nowrap !important;
    text-align: left !important;
}

/* V_333 - regreso a pantalla/ventana llamadora */
.return-to-caller-row {
    width: min(735px, calc(100% - 36px));
    margin: 15px auto 12px;
    display: flex;
    justify-content: flex-start;
}

.return-to-caller-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

/* V_335 - Modal "Estamos trabajando" con imagen NachoQuijas */
.work-modal .working-image-frame,
.modal-work-placeholder .working-image-frame {
    width: min(360px, 92vw) !important;
    padding: 3px !important;
    border-color: rgba(0, 210, 255, .45) !important;
    background: rgba(3, 10, 18, .96) !important;
    box-shadow: 0 0 18px rgba(0, 210, 255, .28), inset 0 0 16px rgba(255,255,255,.04) !important;
}

.work-modal .working-image,
.modal-work-placeholder .working-image,
.work-placeholder .working-image {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 10px !important;
    display: block !important;
}

.work-modal .work-placeholder-inner,
.modal-work-placeholder .work-placeholder-inner {
    width: min(440px, calc(100vw - 48px)) !important;
    min-height: 0 !important;
    padding: 16px 12px 14px !important;
    gap: 8px !important;
}

.work-modal .work-placeholder-inner h3,
.modal-work-placeholder .work-placeholder-inner h3 {
    font-size: clamp(20px, 3vw, 28px) !important;
}

.work-modal .work-placeholder-inner p,
.modal-work-placeholder .work-placeholder-inner p {
    font-size: clamp(12px, 1.7vw, 16px) !important;
    line-height: 1.35 !important;
}

/* V_337 - Newsletter: indicación visible para regresar a la ventana llamadora */
.newsletter-return-hint {
    width: min(735px, calc(100% - 36px));
    margin: 15px auto 0;
    padding: 10px 12px;
    border: 1px solid rgba(0, 210, 255, .28);
    border-radius: 14px;
    background: rgba(4, 13, 24, .72);
    color: #dff8ff;
    box-shadow: 0 0 14px rgba(0, 210, 255, .14);
}

.newsletter-return-hint p {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
}

.newsletter-return-hint .return-to-caller-row {
    width: 100%;
    margin: 0;
}


/* ============================================================
   V_343 - Desktop: menú de acciones en franja superior
   Objetivo:
   - Aumentar altura del topbar Desktop.
   - Subir al encabezado las acciones principales de la segunda columna.
   - Agregar Novedades, Marcas y Tienda en la misma línea visual.
   - No modificar Celular/Tablet.
   ============================================================ */
.home-dashboard > .home-topbar.desktop-expanded-topbar {
    height: 172px !important;
    min-height: 172px !important;
    max-height: 172px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: 39px 133px !important;
    align-items: stretch !important;
    border-bottom: 0.75px solid var(--line) !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, .72), rgba(7, 11, 20, .92)) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.home-dashboard > .home-topbar.desktop-expanded-topbar > .desktop-menu-row {
    height: 39px !important;
    min-height: 39px !important;
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr) 260px !important;
    align-items: center !important;
    border-bottom: 0.75px solid rgba(255, 255, 255, .08) !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

.home-dashboard > .home-topbar.desktop-expanded-topbar > .desktop-menu-row > .desktop-brand-placeholder {
    height: 39px !important;
}

.home-dashboard > .home-topbar.desktop-expanded-topbar > .desktop-menu-row > .main-nav,
.home-dashboard > .home-topbar.desktop-expanded-topbar > .desktop-menu-row > .top-actions {
    height: 39px !important;
}

.home-dashboard > .home-topbar.desktop-expanded-topbar > .desktop-top-action-panel {
    width: 100% !important;
    height: 133px !important;
    min-height: 133px !important;
    padding: 7px 10px 8px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: radial-gradient(circle at 50% 0%, rgba(155, 86, 255, .16), transparent 52%), rgba(3, 8, 16, .68) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.desktop-top-action-frame {
    width: 100% !important;
    height: 100% !important;
    padding: 3px !important;
    border: 1.5px solid rgba(255, 191, 0, .78) !important;
    border-radius: 13.5px !important;
    background: rgba(10, 12, 18, .32) !important;
    box-shadow: 0 0 9px rgba(255, 191, 0, .46), 0 0 21px rgba(255, 115, 0, .24), inset 0 0 13.5px rgba(255, 191, 0, .09) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.desktop-top-action-scroll {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(9, minmax(82px, 1fr)) !important;
    grid-template-rows: 1fr !important;
    gap: 4px !important;
    padding: 0 !important;
    align-items: stretch !important;
    justify-items: stretch !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    box-sizing: border-box !important;
    scrollbar-width: thin !important;
}

.desktop-top-action-scroll::-webkit-scrollbar {
    height: 6px !important;
}

.desktop-top-action-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05) !important;
}

.desktop-top-action-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 191, 0, .55) !important;
    border-radius: 999px !important;
}

.desktop-top-action-scroll > .desktop-top-action-button {
    width: 100% !important;
    min-width: 82px !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    display: grid !important;
    grid-template-rows: 58px 20px 24px !important;
    align-items: center !important;
    justify-items: center !important;
    gap: 1px !important;
    padding: 4px 3px 5px !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    text-decoration: none !important;
}

.desktop-top-action-scroll > .desktop-top-action-button .action-card-image,
.desktop-top-action-scroll > .desktop-top-action-button > .action-card-image {
    grid-row: 1 !important;
    width: 58px !important;
    height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 5px !important;
    margin: 0 !important;
    display: block !important;
}

.desktop-top-action-scroll > .desktop-top-action-button strong {
    grid-row: 2 !important;
    width: 100% !important;
    height: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: clamp(10px, .72vw, 13px) !important;
    line-height: 10px !important;
    text-align: center !important;
    white-space: normal !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
}

.desktop-top-action-scroll > .desktop-top-action-button small {
    grid-row: 3 !important;
    width: 100% !important;
    height: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #b9c0ca !important;
    font-size: clamp(8.5px, .58vw, 10.5px) !important;
    line-height: 8px !important;
    text-align: center !important;
    white-space: normal !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
}

.home-dashboard > .four-column-dashboard {
    height: calc(100vh - 172px) !important;
    min-height: 0 !important;
}

.desktop-main-row > .desktop-panel-two {
    grid-template-rows: minmax(0, 1fr) !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-main {
    height: 100% !important;
}


/* ============================================================
   V_347 - Desktop: Acerca de mí al inicio, Registro/Idioma al final
   - Se elimina Inicio del menú superior.
   - Acerca de mí queda al principio de la línea superior.
   - Registro e Idioma quedan al final de la misma línea.
   - Los botones visuales grandes permanecen debajo.
   - Celular/Tablet no se modifica.
   ============================================================ */
.home-dashboard > .home-topbar.desktop-expanded-topbar > .desktop-menu-row.desktop-about-controls-row {
    grid-template-columns: minmax(0, 1fr) auto !important;
    column-gap: 12px !important;
    padding: 0 10px 0 12px !important;
    box-sizing: border-box !important;
}

.home-dashboard > .home-topbar.desktop-expanded-topbar > .desktop-menu-row.desktop-about-controls-row > .desktop-about-nav {
    justify-content: flex-start !important;
    gap: 0 !important;
    padding-left: 0 !important;
    border-left: 0 !important;
    min-width: 0 !important;
}

.home-dashboard > .home-topbar.desktop-expanded-topbar > .desktop-menu-row.desktop-about-controls-row > .desktop-about-nav a {
    height: 28.5px !important;
    min-width: 94px !important;
    padding: 0 12px !important;
    border: .75px solid rgba(155, 86, 255, .65) !important;
    border-radius: 4.5px !important;
    color: #c899ff !important;
    background: rgba(34, 14, 64, .30) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.home-dashboard > .home-topbar.desktop-expanded-topbar > .desktop-menu-row.desktop-about-controls-row > .desktop-about-nav a::after {
    display: none !important;
}

.home-dashboard > .home-topbar.desktop-expanded-topbar > .desktop-menu-row.desktop-about-controls-row > .desktop-right-controls {
    justify-content: flex-end !important;
    padding-right: 0 !important;
    border-left: 0 !important;
    min-width: 0 !important;
}


/* ============================================================
   V_349 - Desktop: centrar "Estamos trabajando" en columna 2
   - Solo afecta el placeholder del proyecto seleccionado en Desktop.
   - No vuelve a modal.
   - Centrado vertical y horizontal dentro del marco de la columna 2.
   - Celular/Tablet no se modifica.
   ============================================================ */
.desktop-main-row > .desktop-panel-two > .panel-three-main.placeholder-mode {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    display: grid !important;
    grid-template-rows: minmax(0, 1fr) !important;
    align-items: center !important;
    justify-items: center !important;
    place-items: center !important;
    padding: 12px !important;
    margin: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-main.placeholder-mode > .work-placeholder {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    display: grid !important;
    align-items: center !important;
    justify-items: center !important;
    place-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.desktop-main-row > .desktop-panel-two > .panel-three-main.placeholder-mode .work-placeholder-inner {
    align-self: center !important;
    justify-self: center !important;
    margin: auto !important;
}

/* V_351 - Desktop top action hover/focus only, aligned with Project selected style */
.home-dashboard .desktop-top-action-scroll > .desktop-top-action-button:hover,
.home-dashboard .desktop-top-action-scroll > .desktop-top-action-button:focus-visible {
    border-color: rgba(176, 99, 255, .98) !important;
    background: linear-gradient(90deg, rgba(54,25,84,.72), rgba(10,17,27,.78)) !important;
    box-shadow: 0 0 0 0.75px rgba(176, 99, 255, .45), 0 0 7.5px rgba(176, 99, 255, .55), 0 0 15px rgba(176, 99, 255, .38), inset 0 0 7.5px rgba(176, 99, 255, .12) !important;
}

.home-dashboard .desktop-top-action-scroll > .desktop-top-action-button:hover::before,
.home-dashboard .desktop-top-action-scroll > .desktop-top-action-button:focus-visible::before {
    opacity: 1 !important;
    background: radial-gradient(circle at 50% 0%, rgba(176, 99, 255, .24), transparent 52%) !important;
}

.home-dashboard .desktop-top-action-scroll > .desktop-top-action-button:hover strong,
.home-dashboard .desktop-top-action-scroll > .desktop-top-action-button:hover small,
.home-dashboard .desktop-top-action-scroll > .desktop-top-action-button:hover .action-card-image,
.home-dashboard .desktop-top-action-scroll > .desktop-top-action-button:focus-visible strong,
.home-dashboard .desktop-top-action-scroll > .desktop-top-action-button:focus-visible small,
.home-dashboard .desktop-top-action-scroll > .desktop-top-action-button:focus-visible .action-card-image {
    position: relative !important;
    z-index: 1 !important;
}

/* ============================================================
   V_352 - Desktop: botón Tema y 5 skins visuales
   - Solo DesktopHome agrega clase desktop-theme-*.
   - Tema rota: SCI-FI, Ejecutivo, Blanco, Acero, Azteca.
   - Celular/Tablet no se modifica.
   ============================================================ */
.home-dashboard .top-theme-button {
    height: 28.5px !important;
    min-width: 58px !important;
    padding: 0 8px !important;
    border: 0.75px solid rgba(19, 219, 198, .72) !important;
    border-radius: 4.5px !important;
    color: #8ff7ea !important;
    background: rgba(4, 52, 58, .28) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    box-shadow: 0 0 7.5px rgba(19, 219, 198, .18), inset 0 0 7.5px rgba(19, 219, 198, .07) !important;
}

.home-dashboard .top-theme-button:hover,
.home-dashboard .top-theme-button:focus-visible {
    border-color: rgba(19, 219, 198, 1) !important;
    box-shadow: 0 0 10.5px rgba(19, 219, 198, .36), 0 0 18px rgba(0, 174, 243, .16), inset 0 0 9px rgba(19, 219, 198, .10) !important;
    outline: none !important;
}

.home-dashboard .theme-pill {
    min-width: 34px !important;
    font-size: 13px !important;
    color: #d9fffb !important;
    white-space: nowrap !important;
}

/* Tema 1: SCI-FI actual. Se deja como baseline, sin neutralizar estilos previos. */
.home-dashboard.desktop-theme-scifi {
    --desktop-theme-name: "SCI-FI";
}

/* Tema 2: Ejecutivo limpio, oscuro sobrio con acentos oro/cian suave. */
.home-dashboard.desktop-theme-executive {
    --bg: #060912;
    --panel: rgba(13, 18, 29, .96);
    --panel-soft: rgba(22, 29, 42, .92);
    --line: rgba(215, 181, 94, .22);
    --violet: #d7b55e;
    --cyan: #6aa7c8;
    --amber: #d7b55e;
    --orange: #c2784c;
    --green: #6fa27a;
    --lime: #b6bc76;
    --teal: #7bbfba;
    --text: #f6f1e6;
    --muted: #c9c2b4;
    --dim: #958e82;
    background: radial-gradient(circle at 20% 0%, rgba(215, 181, 94, .11), transparent 26rem), linear-gradient(135deg, #050810, #111827 54%, #07090e) !important;
}

.home-dashboard.desktop-theme-executive > .home-topbar.desktop-expanded-topbar {
    background: linear-gradient(180deg, rgba(4, 7, 13, .93), rgba(17, 24, 39, .96)) !important;
    border-bottom-color: rgba(215, 181, 94, .32) !important;
}

.home-dashboard.desktop-theme-executive .desktop-top-action-panel {
    background: radial-gradient(circle at 50% 0%, rgba(215, 181, 94, .16), transparent 52%), rgba(11, 16, 26, .84) !important;
}

.home-dashboard.desktop-theme-executive .desktop-top-action-frame,
.home-dashboard.desktop-theme-executive .project-button-frame {
    border-color: rgba(215, 181, 94, .82) !important;
    box-shadow: 0 0 9px rgba(215, 181, 94, .33), inset 0 0 12px rgba(215, 181, 94, .10) !important;
}

.home-dashboard.desktop-theme-executive .dashboard-panel,
.home-dashboard.desktop-theme-executive .panel-three-main,
.home-dashboard.desktop-theme-executive .branded-modal {
    background: linear-gradient(180deg, rgba(18, 25, 38, .97), rgba(9, 13, 22, .98)) !important;
    color: var(--text) !important;
}

.home-dashboard.desktop-theme-executive .desktop-top-action-button,
.home-dashboard.desktop-theme-executive .project-button {
    background: linear-gradient(180deg, rgba(23, 30, 43, .95), rgba(9, 13, 22, .98)) !important;
    border-color: rgba(215, 181, 94, .24) !important;
}

.home-dashboard.desktop-theme-executive .action-card-image {
    filter: saturate(.82) contrast(.96) brightness(.98) sepia(.10) !important;
}

/* Tema 3: Blanco conservador, más limpio y ejecutivo. */
.home-dashboard.desktop-theme-white {
    --bg: #f4f7fb;
    --panel: rgba(255, 255, 255, .96);
    --panel-soft: rgba(246, 249, 253, .94);
    --line: rgba(32, 48, 72, .14);
    --violet: #315783;
    --cyan: #31759a;
    --amber: #b48322;
    --orange: #b66031;
    --green: #557b5d;
    --lime: #6f7f2e;
    --teal: #407f7a;
    --text: #142033;
    --muted: #526072;
    --dim: #7b8794;
    background: linear-gradient(135deg, #f7f9fc 0%, #e8edf5 52%, #ffffff 100%) !important;
    color: var(--text) !important;
}

.home-dashboard.desktop-theme-white > .home-topbar.desktop-expanded-topbar {
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(235,241,249,.96)) !important;
    border-bottom-color: rgba(32, 48, 72, .18) !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-panel {
    background: linear-gradient(180deg, rgba(247, 250, 254, .98), rgba(230, 237, 247, .95)) !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-frame,
.home-dashboard.desktop-theme-white .project-button-frame {
    border-color: rgba(49, 87, 131, .42) !important;
    background: rgba(255, 255, 255, .76) !important;
    box-shadow: 0 0 0 1px rgba(49, 87, 131, .08), 0 8px 22px rgba(39, 58, 88, .12), inset 0 0 0 1px rgba(255,255,255,.72) !important;
}

.home-dashboard.desktop-theme-white .dashboard-panel,
.home-dashboard.desktop-theme-white .panel-three-main,
.home-dashboard.desktop-theme-white .branded-modal {
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(237,242,249,.96)) !important;
    color: var(--text) !important;
    border-color: rgba(32, 48, 72, .14) !important;
}

.home-dashboard.desktop-theme-white p,
.home-dashboard.desktop-theme-white small,
.home-dashboard.desktop-theme-white .desktop-panel-three-brand-name,
.home-dashboard.desktop-theme-white .project-text small,
.home-dashboard.desktop-theme-white .desktop-top-action-button small {
    color: var(--muted) !important;
}

.home-dashboard.desktop-theme-white h1,
.home-dashboard.desktop-theme-white h2,
.home-dashboard.desktop-theme-white h3,
.home-dashboard.desktop-theme-white strong,
.home-dashboard.desktop-theme-white .desktop-top-action-button strong,
.home-dashboard.desktop-theme-white .project-text strong {
    color: var(--text) !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-button,
.home-dashboard.desktop-theme-white .project-button,
.home-dashboard.desktop-theme-white .top-register,
.home-dashboard.desktop-theme-white .top-language-button,
.home-dashboard.desktop-theme-white .top-theme-button,
.home-dashboard.desktop-theme-white .desktop-about-nav a {
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(237,242,249,.94)) !important;
    border-color: rgba(49, 87, 131, .26) !important;
    color: #224568 !important;
    box-shadow: 0 3px 12px rgba(39, 58, 88, .10) !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-button:hover,
.home-dashboard.desktop-theme-white .desktop-top-action-button:focus-visible,
.home-dashboard.desktop-theme-white .project-button.selected,
.home-dashboard.desktop-theme-white .project-button:hover,
.home-dashboard.desktop-theme-white .project-button:focus-visible {
    background: linear-gradient(180deg, rgba(232, 240, 250, .98), rgba(210, 224, 242, .96)) !important;
    border-color: rgba(49, 87, 131, .68) !important;
    box-shadow: 0 0 0 1px rgba(49, 87, 131, .20), 0 8px 20px rgba(49, 87, 131, .18) !important;
}

.home-dashboard.desktop-theme-white .action-card-image {
    filter: saturate(.58) contrast(.92) brightness(1.08) !important;
    box-shadow: 0 5px 13px rgba(26, 42, 64, .14) !important;
}

.home-dashboard.desktop-theme-white .language-pill,
.home-dashboard.desktop-theme-white .theme-pill {
    color: #224568 !important;
}

/* Tema 4: Acero profesional, gris grafito y azul técnico. */
.home-dashboard.desktop-theme-steel {
    --bg: #0b1118;
    --panel: rgba(18, 25, 33, .97);
    --panel-soft: rgba(28, 37, 47, .92);
    --line: rgba(138, 166, 194, .18);
    --violet: #7aa4c7;
    --cyan: #82c4ef;
    --amber: #a9b8c8;
    --orange: #8a9cab;
    --green: #84b29b;
    --lime: #b7c6a0;
    --teal: #8bc6c2;
    --text: #edf4f8;
    --muted: #b5c1ca;
    --dim: #7e8a95;
    background: radial-gradient(circle at 50% 0%, rgba(130, 196, 239, .10), transparent 28rem), linear-gradient(135deg, #0a0f15, #1c2630 55%, #080c11) !important;
}

.home-dashboard.desktop-theme-steel > .home-topbar.desktop-expanded-topbar,
.home-dashboard.desktop-theme-steel .dashboard-panel,
.home-dashboard.desktop-theme-steel .panel-three-main,
.home-dashboard.desktop-theme-steel .branded-modal {
    background: linear-gradient(180deg, rgba(28, 37, 47, .98), rgba(11, 16, 22, .98)) !important;
}

.home-dashboard.desktop-theme-steel .desktop-top-action-frame,
.home-dashboard.desktop-theme-steel .project-button-frame {
    border-color: rgba(130, 196, 239, .54) !important;
    box-shadow: 0 0 10px rgba(130, 196, 239, .18), inset 0 0 14px rgba(130, 196, 239, .08) !important;
}

.home-dashboard.desktop-theme-steel .desktop-top-action-button,
.home-dashboard.desktop-theme-steel .project-button {
    background: linear-gradient(180deg, rgba(35, 45, 56, .96), rgba(15, 21, 28, .98)) !important;
    border-color: rgba(130, 196, 239, .18) !important;
}

.home-dashboard.desktop-theme-steel .action-card-image {
    filter: saturate(.72) contrast(.98) brightness(.94) !important;
}

/* Tema 5: Azteca elegante, cálido y sobrio sin perder el branding. */
.home-dashboard.desktop-theme-aztec {
    --bg: #100c08;
    --panel: rgba(25, 17, 12, .97);
    --panel-soft: rgba(42, 27, 18, .92);
    --line: rgba(255, 195, 83, .20);
    --violet: #d78c3b;
    --cyan: #49b8aa;
    --amber: #ffc353;
    --orange: #d76b32;
    --green: #79a95d;
    --lime: #b7bf4e;
    --teal: #49b8aa;
    --text: #fff4df;
    --muted: #d7c5a7;
    --dim: #99856b;
    background: radial-gradient(circle at 16% 0%, rgba(255, 195, 83, .13), transparent 28rem), radial-gradient(circle at 80% 4%, rgba(73, 184, 170, .09), transparent 28rem), linear-gradient(135deg, #0c0805, #2a160d 54%, #0e0905) !important;
}

.home-dashboard.desktop-theme-aztec > .home-topbar.desktop-expanded-topbar,
.home-dashboard.desktop-theme-aztec .dashboard-panel,
.home-dashboard.desktop-theme-aztec .panel-three-main,
.home-dashboard.desktop-theme-aztec .branded-modal {
    background: linear-gradient(180deg, rgba(39, 25, 15, .98), rgba(14, 9, 5, .98)) !important;
}

.home-dashboard.desktop-theme-aztec .desktop-top-action-frame,
.home-dashboard.desktop-theme-aztec .project-button-frame {
    border-color: rgba(255, 195, 83, .72) !important;
    box-shadow: 0 0 10px rgba(255, 195, 83, .28), 0 0 18px rgba(215, 107, 50, .12), inset 0 0 13px rgba(255, 195, 83, .08) !important;
}

.home-dashboard.desktop-theme-aztec .desktop-top-action-button,
.home-dashboard.desktop-theme-aztec .project-button {
    background: linear-gradient(180deg, rgba(48, 31, 19, .96), rgba(18, 11, 7, .98)) !important;
    border-color: rgba(255, 195, 83, .20) !important;
}

.home-dashboard.desktop-theme-aztec .action-card-image {
    filter: saturate(.90) contrast(1.02) brightness(.95) sepia(.08) !important;
}


/* ============================================================
   V_353 - Desktop: iconos tradicionales para temas no SCI-FI
   - El tema SCI-FI conserva imágenes neón originales.
   - Ejecutivo/Blanco/Acero/Azteca usan assets tradicionales.
   - Solo afecta DesktopHome.
   ============================================================ */
.home-dashboard:not(.desktop-theme-scifi) .desktop-top-action-scroll > .desktop-top-action-button .action-card-image {
    object-fit: cover !important;
    border-radius: 6px !important;
    filter: none !important;
    box-shadow: 0 4px 12px rgba(16, 28, 44, .16) !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-scroll > .desktop-top-action-button .action-card-image {
    box-shadow: 0 5px 14px rgba(26, 42, 64, .13) !important;
}

.home-dashboard.desktop-theme-executive .desktop-top-action-scroll > .desktop-top-action-button .action-card-image,
.home-dashboard.desktop-theme-steel .desktop-top-action-scroll > .desktop-top-action-button .action-card-image,
.home-dashboard.desktop-theme-aztec .desktop-top-action-scroll > .desktop-top-action-button .action-card-image {
    box-shadow: 0 4px 13px rgba(0, 0, 0, .24) !important;
}


/* ============================================================
   V_354 - Desktop: tema blanco real e iconos tradicionales color
   - Recupera fondos claros/blancos en tema Blanco y Ejecutivo.
   - Iconos no SCI-FI ahora son coloridos, limpios y conservadores.
   ============================================================ */
.home-dashboard.desktop-theme-white,
.home-dashboard.desktop-theme-white .four-column-dashboard,
.home-dashboard.desktop-theme-white .desktop-main-row,
.home-dashboard.desktop-theme-white .bg-dark,
.home-dashboard.desktop-theme-white .bg-black,
.home-dashboard.desktop-theme-white .dashboard-panel,
.home-dashboard.desktop-theme-white .desktop-panel-one,
.home-dashboard.desktop-theme-white .desktop-panel-two,
.home-dashboard.desktop-theme-white .desktop-panel-three,
.home-dashboard.desktop-theme-white .panel-three-main {
    background: linear-gradient(135deg, #fbfcff 0%, #eef3fa 55%, #ffffff 100%) !important;
    color: #142033 !important;
}

.home-dashboard.desktop-theme-white .home-topbar.desktop-expanded-topbar,
.home-dashboard.desktop-theme-white > .home-topbar.desktop-expanded-topbar,
.home-dashboard.desktop-theme-white .desktop-top-action-panel {
    background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%) !important;
    color: #142033 !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-frame {
    background: rgba(255, 255, 255, .92) !important;
    border-color: rgba(49, 87, 131, .36) !important;
    box-shadow: 0 10px 26px rgba(33, 52, 82, .12), inset 0 0 0 1px rgba(255,255,255,.85) !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-scroll > .desktop-top-action-button {
    background: linear-gradient(180deg, #ffffff, #edf3fa) !important;
    border-color: rgba(50, 76, 112, .24) !important;
    color: #142033 !important;
    box-shadow: 0 5px 16px rgba(40, 60, 92, .13) !important;
}

.home-dashboard.desktop-theme-white .project-button,
.home-dashboard.desktop-theme-white .project-button-frame,
.home-dashboard.desktop-theme-white .project-scroll,
.home-dashboard.desktop-theme-white .project-inline-info,
.home-dashboard.desktop-theme-white .intro-block,
.home-dashboard.desktop-theme-white .content-title,
.home-dashboard.desktop-theme-white .work-placeholder-inner {
    background: rgba(255, 255, 255, .86) !important;
    color: #142033 !important;
    border-color: rgba(49, 87, 131, .20) !important;
}

.home-dashboard.desktop-theme-white .project-text strong,
.home-dashboard.desktop-theme-white .project-text small,
.home-dashboard.desktop-theme-white .intro-block p,
.home-dashboard.desktop-theme-white .project-inline-description,
.home-dashboard.desktop-theme-white .project-inline-meta span,
.home-dashboard.desktop-theme-white .project-inline-meta strong,
.home-dashboard.desktop-theme-white .matrix-copyright {
    color: #142033 !important;
}

.home-dashboard.desktop-theme-executive,
.home-dashboard.desktop-theme-executive .four-column-dashboard,
.home-dashboard.desktop-theme-executive .desktop-main-row,
.home-dashboard.desktop-theme-executive .bg-dark,
.home-dashboard.desktop-theme-executive .bg-black,
.home-dashboard.desktop-theme-executive .dashboard-panel,
.home-dashboard.desktop-theme-executive .desktop-panel-one,
.home-dashboard.desktop-theme-executive .desktop-panel-two,
.home-dashboard.desktop-theme-executive .desktop-panel-three,
.home-dashboard.desktop-theme-executive .panel-three-main {
    background: linear-gradient(135deg, #f4f1ea 0%, #e5edf7 52%, #ffffff 100%) !important;
    color: #1b2738 !important;
}

.home-dashboard.desktop-theme-executive > .home-topbar.desktop-expanded-topbar,
.home-dashboard.desktop-theme-executive .desktop-top-action-panel {
    background: linear-gradient(180deg, #ffffff 0%, #edf1f7 100%) !important;
    color: #1b2738 !important;
}

.home-dashboard.desktop-theme-executive .desktop-top-action-frame {
    background: rgba(255, 255, 255, .82) !important;
    border-color: rgba(188, 140, 49, .48) !important;
    box-shadow: 0 10px 24px rgba(49, 65, 89, .12), inset 0 0 0 1px rgba(255,255,255,.8) !important;
}

.home-dashboard.desktop-theme-executive .desktop-top-action-scroll > .desktop-top-action-button {
    background: linear-gradient(180deg, #ffffff, #eef1f6) !important;
    border-color: rgba(188, 140, 49, .26) !important;
    color: #1b2738 !important;
    box-shadow: 0 5px 16px rgba(49, 65, 89, .14) !important;
}

.home-dashboard.desktop-theme-executive .project-button,
.home-dashboard.desktop-theme-executive .project-button-frame,
.home-dashboard.desktop-theme-executive .intro-block,
.home-dashboard.desktop-theme-executive .content-title,
.home-dashboard.desktop-theme-executive .work-placeholder-inner {
    background: rgba(255, 255, 255, .84) !important;
    color: #1b2738 !important;
    border-color: rgba(188, 140, 49, .22) !important;
}

.home-dashboard.desktop-theme-executive p,
.home-dashboard.desktop-theme-executive small,
.home-dashboard.desktop-theme-executive strong,
.home-dashboard.desktop-theme-executive h1,
.home-dashboard.desktop-theme-executive h2,
.home-dashboard.desktop-theme-executive h3,
.home-dashboard.desktop-theme-executive .desktop-panel-three-brand-name,
.home-dashboard.desktop-theme-executive .matrix-copyright {
    color: #1b2738 !important;
}

.home-dashboard:not(.desktop-theme-scifi) .desktop-top-action-scroll > .desktop-top-action-button .action-card-image {
    object-fit: contain !important;
    border-radius: 10px !important;
    background: transparent !important;
    filter: none !important;
    box-shadow: none !important;
}

.home-dashboard:not(.desktop-theme-scifi) .desktop-top-action-scroll > .desktop-top-action-button:hover .action-card-image,
.home-dashboard:not(.desktop-theme-scifi) .desktop-top-action-scroll > .desktop-top-action-button:focus-visible .action-card-image {
    transform: translateY(-1px) scale(1.03) !important;
    filter: saturate(1.08) contrast(1.02) !important;
}


/* ============================================================
   V_355 - Desktop: Tema Corporativo Web inspirado en agencia web
   - Aplica al tema "white" / WEB.
   - Fondo blanco real, acentos azules, tarjetas limpias.
   - Iconos business coloridos y conservadores.
   - Solo Desktop.
   ============================================================ */
.home-dashboard.desktop-theme-white {
    --bg: #f6f9ff !important;
    --panel: #ffffff !important;
    --panel-soft: #f8fbff !important;
    --line: #dfe8f4 !important;
    --violet: #0b6fe8 !important;
    --cyan: #0b6fe8 !important;
    --amber: #f28a13 !important;
    --orange: #f28a13 !important;
    --green: #29a954 !important;
    --lime: #29a954 !important;
    --teal: #16a99a !important;
    --text: #0e1d34 !important;
    --muted: #52657e !important;
    --dim: #6c7f99 !important;
    background:
        radial-gradient(circle at 82% 4%, rgba(11, 111, 232, .10), transparent 26rem),
        radial-gradient(circle at 10% 80%, rgba(30, 156, 255, .08), transparent 30rem),
        linear-gradient(135deg, #fbfdff 0%, #f3f7fc 54%, #ffffff 100%) !important;
    color: #0e1d34 !important;
}

.home-dashboard.desktop-theme-white > .home-topbar.desktop-expanded-topbar {
    height: 178px !important;
    min-height: 178px !important;
    max-height: 178px !important;
    grid-template-rows: 48px 130px !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e3ebf6 !important;
    box-shadow: 0 6px 20px rgba(19, 55, 98, .08) !important;
}

.home-dashboard.desktop-theme-white > .four-column-dashboard {
    height: calc(100vh - 178px) !important;
    background: #f7faff !important;
    padding: 10px 12px 12px !important;
    box-sizing: border-box !important;
}

.home-dashboard.desktop-theme-white > .home-topbar.desktop-expanded-topbar > .desktop-menu-row.desktop-about-controls-row {
    height: 48px !important;
    min-height: 48px !important;
    background: #ffffff !important;
    border-bottom: 1px solid #edf2f8 !important;
    padding: 0 14px !important;
}

.home-dashboard.desktop-theme-white .desktop-about-nav a,
.home-dashboard.desktop-theme-white .top-register,
.home-dashboard.desktop-theme-white .top-theme-button,
.home-dashboard.desktop-theme-white .top-language-button {
    min-height: 34px !important;
    border: 1px solid #d9e4f2 !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #0e1d34 !important;
    box-shadow: 0 5px 13px rgba(18, 49, 90, .07) !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

.home-dashboard.desktop-theme-white .desktop-about-nav a::before {
    content: "●";
    color: #0b6fe8;
    font-size: 12px;
    margin-right: 7px;
}

.home-dashboard.desktop-theme-white .top-register::first-letter,
.home-dashboard.desktop-theme-white .top-theme-button::first-letter,
.home-dashboard.desktop-theme-white .top-language-button::first-letter {
    color: #0b6fe8 !important;
}

.home-dashboard.desktop-theme-white .theme-pill,
.home-dashboard.desktop-theme-white .language-pill {
    min-height: 34px !important;
    padding: 0 9px !important;
    border: 1px solid #d9e4f2 !important;
    border-radius: 10px !important;
    background: #f9fbff !important;
    color: #0b6fe8 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800 !important;
    box-shadow: 0 5px 13px rgba(18, 49, 90, .05) !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-panel {
    height: 130px !important;
    min-height: 130px !important;
    padding: 10px 16px 12px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%) !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-frame {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-scroll {
    display: grid !important;
    grid-template-columns: repeat(9, minmax(104px, 1fr)) !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 0 2px !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-scroll > .desktop-top-action-button {
    min-width: 104px !important;
    grid-template-rows: 56px 21px 19px !important;
    gap: 2px !important;
    padding: 9px 6px 7px !important;
    border: 1px solid #e0e8f4 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #0e1d34 !important;
    box-shadow: 0 8px 20px rgba(28, 61, 104, .08) !important;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-scroll > .desktop-top-action-button::before {
    display: none !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-scroll > .desktop-top-action-button .action-card-image {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    filter: none !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-scroll > .desktop-top-action-button strong {
    color: #10213b !important;
    font-size: 12px !important;
    line-height: 12px !important;
    font-weight: 800 !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-scroll > .desktop-top-action-button small {
    color: #5c6f89 !important;
    font-size: 8.8px !important;
    line-height: 9px !important;
    -webkit-line-clamp: 2 !important;
}

.home-dashboard.desktop-theme-white .desktop-top-action-scroll > .desktop-top-action-button:hover,
.home-dashboard.desktop-theme-white .desktop-top-action-scroll > .desktop-top-action-button:focus-visible {
    transform: translateY(-2px) !important;
    border-color: rgba(11,111,232,.48) !important;
    background: linear-gradient(180deg, #ffffff, #f2f7ff) !important;
    box-shadow: 0 12px 28px rgba(11, 111, 232, .15) !important;
}

.home-dashboard.desktop-theme-white .four-column-dashboard,
.home-dashboard.desktop-theme-white .desktop-main-row,
.home-dashboard.desktop-theme-white .desktop-panel-one,
.home-dashboard.desktop-theme-white .desktop-panel-two,
.home-dashboard.desktop-theme-white .desktop-panel-three,
.home-dashboard.desktop-theme-white .dashboard-panel,
.home-dashboard.desktop-theme-white .panel-three-main {
    background: transparent !important;
    color: #0e1d34 !important;
}

.home-dashboard.desktop-theme-white .desktop-main-row {
    background: transparent !important;
}

.home-dashboard.desktop-theme-white .dashboard-panel,
.home-dashboard.desktop-theme-white .panel-three-main,
.home-dashboard.desktop-theme-white .panel-three-main.placeholder-mode .work-placeholder-inner,
.home-dashboard.desktop-theme-white .project-button-frame,
.home-dashboard.desktop-theme-white .project-scroll,
.home-dashboard.desktop-theme-white .project-inline-info,
.home-dashboard.desktop-theme-white .content-title,
.home-dashboard.desktop-theme-white .intro-block,
.home-dashboard.desktop-theme-white .real-video-area,
.home-dashboard.desktop-theme-white .panel-three-main:not(.placeholder-mode) {
    background: #ffffff !important;
    color: #0e1d34 !important;
    border: 1px solid #e0e8f4 !important;
    box-shadow: 0 8px 24px rgba(22, 50, 88, .08) !important;
}

.home-dashboard.desktop-theme-white .desktop-panel-one,
.home-dashboard.desktop-theme-white .desktop-panel-two,
.home-dashboard.desktop-theme-white .desktop-panel-three {
    border-right: 0 !important;
    padding: 0 8px !important;
}

.home-dashboard.desktop-theme-white .desktop-panel-one > .panel-title,
.home-dashboard.desktop-theme-white .desktop-panel-three .desktop-panel-three-header,
.home-dashboard.desktop-theme-white .content-title,
.home-dashboard.desktop-theme-white .panel-title {
    color: #0e1d34 !important;
}

.home-dashboard.desktop-theme-white h1,
.home-dashboard.desktop-theme-white h2,
.home-dashboard.desktop-theme-white h3,
.home-dashboard.desktop-theme-white strong,
.home-dashboard.desktop-theme-white .desktop-top-action-button strong,
.home-dashboard.desktop-theme-white .project-text strong,
.home-dashboard.desktop-theme-white .intro-title,
.home-dashboard.desktop-theme-white .desktop-panel-three-brand-title,
.home-dashboard.desktop-theme-white .desktop-panel-three-brand-name {
    color: #0e1d34 !important;
}

.home-dashboard.desktop-theme-white p,
.home-dashboard.desktop-theme-white small,
.home-dashboard.desktop-theme-white .project-text small,
.home-dashboard.desktop-theme-white .intro-block p,
.home-dashboard.desktop-theme-white .project-inline-description,
.home-dashboard.desktop-theme-white .project-inline-meta span,
.home-dashboard.desktop-theme-white .matrix-copyright,
.home-dashboard.desktop-theme-white .desktop-panel-three-brand-subtitle {
    color: #52657e !important;
}

.home-dashboard.desktop-theme-white .project-button {
    background: #ffffff !important;
    border: 1px solid #e3ebf6 !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 16px rgba(22, 50, 88, .06) !important;
}

.home-dashboard.desktop-theme-white .project-button:hover,
.home-dashboard.desktop-theme-white .project-button:focus-visible,
.home-dashboard.desktop-theme-white .project-button.selected {
    background: #f4f8ff !important;
    border-color: rgba(11, 111, 232, .52) !important;
    box-shadow: 0 8px 20px rgba(11, 111, 232, .14) !important;
}

.home-dashboard.desktop-theme-white .real-video-area {
    border-radius: 14px !important;
    overflow: hidden !important;
    margin-top: 10px !important;
}

.home-dashboard.desktop-theme-white .real-project-video {
    border-radius: 12px !important;
}

.home-dashboard.desktop-theme-white .video-thumb-button {
    background: #ffffff !important;
    border-color: #d9e4f2 !important;
    box-shadow: 0 4px 12px rgba(22,50,88,.08) !important;
}

.home-dashboard.desktop-theme-white .video-thumb-button.selected {
    border-color: rgba(11,111,232,.65) !important;
    box-shadow: 0 0 0 1px rgba(11,111,232,.32), 0 8px 16px rgba(11,111,232,.15) !important;
}

.home-dashboard.desktop-theme-white .project-inline-status span,
.home-dashboard.desktop-theme-white .project-status.active,
.home-dashboard.desktop-theme-white .intro-accent,
.home-dashboard.desktop-theme-white .work-placeholder-inner p strong {
    color: #0b6fe8 !important;
}

.home-dashboard.desktop-theme-white .work-placeholder-inner {
    min-height: 380px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
}

.home-dashboard.desktop-theme-white .working-image-frame {
    background: #f7faff !important;
    border-color: #d9e4f2 !important;
    box-shadow: 0 6px 20px rgba(22,50,88,.10) !important;
}

.home-dashboard.desktop-theme-white .branded-modal {
    background: #ffffff !important;
    color: #0e1d34 !important;
    border-color: #d9e4f2 !important;
    box-shadow: 0 24px 80px rgba(22,50,88,.20) !important;
}

.home-dashboard.desktop-theme-white .modal-brand-badge {
    background: #f4f8ff !important;
    border-color: #d9e4f2 !important;
}


/* V_356 - Tema Negocio Web basado en distribución corporativa clara */
.home-dashboard.desktop-theme-business {
    --desktop-theme-name: "NEGOCIO WEB";
    background: linear-gradient(180deg, #eef4fb 0%, #f8fbff 40%, #f4f8fc 100%);
    color: #16335a;
}

.home-dashboard.desktop-theme-business > .home-topbar.desktop-expanded-topbar {
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,249,255,.97));
    border: 1px solid rgba(15, 83, 186, .09);
    box-shadow: 0 12px 28px rgba(21, 69, 125, .10);
}

.home-dashboard.desktop-theme-business .desktop-top-action-panel {
    background: transparent;
}

.home-dashboard.desktop-theme-business .desktop-top-action-frame,
.home-dashboard.desktop-theme-business .project-button-frame {
    background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(246,249,254,.92));
    border: 1px solid rgba(18, 89, 188, .10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.84), 0 14px 30px rgba(31,80,150,.08);
}

.home-dashboard.desktop-theme-business .dashboard-panel,
.home-dashboard.desktop-theme-business .panel-three-main,
.home-dashboard.desktop-theme-business .branded-modal {
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,254,.98));
    border: 1px solid rgba(18, 89, 188, .08);
    box-shadow: 0 14px 32px rgba(32, 67, 119, .08);
}

.home-dashboard.desktop-theme-business p,
.home-dashboard.desktop-theme-business small,
.home-dashboard.desktop-theme-business .desktop-panel-three-brand-name,
.home-dashboard.desktop-theme-business .project-text small,
.home-dashboard.desktop-theme-business .desktop-top-action-button small,
.home-dashboard.desktop-theme-business .desktop-panel-three-brand-subtitle,
.home-dashboard.desktop-theme-business .project-inline-description,
.home-dashboard.desktop-theme-business .intro-block p {
    color: #4d627f;
}

.home-dashboard.desktop-theme-business h1,
.home-dashboard.desktop-theme-business h2,
.home-dashboard.desktop-theme-business h3,
.home-dashboard.desktop-theme-business strong,
.home-dashboard.desktop-theme-business .desktop-top-action-button strong,
.home-dashboard.desktop-theme-business .project-text strong,
.home-dashboard.desktop-theme-business .intro-title,
.home-dashboard.desktop-theme-business .desktop-panel-three-brand-title,
.home-dashboard.desktop-theme-business .desktop-panel-three-brand-name,
.home-dashboard.desktop-theme-business .content-title,
.home-dashboard.desktop-theme-business .panel-title {
    color: #17325b;
}

.home-dashboard.desktop-theme-business .desktop-top-action-button,
.home-dashboard.desktop-theme-business .project-button,
.home-dashboard.desktop-theme-business .top-register,
.home-dashboard.desktop-theme-business .top-language-button,
.home-dashboard.desktop-theme-business .top-theme-button,
.home-dashboard.desktop-theme-business .desktop-about-nav a {
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,248,255,.98));
    color: #17325b;
    border: 1px solid rgba(20, 91, 191, .11);
    box-shadow: 0 8px 18px rgba(37, 83, 142, .08);
}

.home-dashboard.desktop-theme-business .desktop-top-action-button:hover,
.home-dashboard.desktop-theme-business .desktop-top-action-button:focus-visible,
.home-dashboard.desktop-theme-business .project-button.selected,
.home-dashboard.desktop-theme-business .project-button:hover,
.home-dashboard.desktop-theme-business .project-button:focus-visible {
    background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
    border-color: rgba(28, 96, 200, .35);
    box-shadow: 0 0 0 1px rgba(55, 121, 232, .10), 0 18px 28px rgba(33, 92, 181, .14);
}

.home-dashboard.desktop-theme-business .action-card-image {
    filter: none;
}

.home-dashboard.desktop-theme-business .language-pill,
.home-dashboard.desktop-theme-business .theme-pill {
    color: #1a4ea7;
    background: rgba(15, 93, 211, .07);
    border-color: rgba(17, 94, 206, .14);
}


/* V_357 - Tema Pantalla Web: usa exactamente la distribución visual del tema claro tipo screenshot */
.home-dashboard.desktop-theme-showcase {
    --desktop-theme-name: "PANTALLA WEB";
}


/* V_359 - Pantalla Web real con assets rediseñados desde la portada aprobada */
.home-dashboard.desktop-theme-showcase {
    background: #f8fbff;
    color: #071735;
    min-height: 100vh;
}

.home-dashboard.desktop-theme-showcase > .home-topbar.desktop-expanded-topbar {
    background: #ffffff;
    border: 1px solid #e4ebf5;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 26px rgba(13, 43, 88, .08);
    padding: 14px 18px 18px;
}

.home-dashboard.desktop-theme-showcase .desktop-menu-row.desktop-about-controls-row {
    margin-bottom: 14px;
}

.home-dashboard.desktop-theme-showcase .desktop-about-nav a,
.home-dashboard.desktop-theme-showcase .top-register,
.home-dashboard.desktop-theme-showcase .top-theme-button,
.home-dashboard.desktop-theme-showcase .top-language-button {
    background: #ffffff;
    border: 1px solid #e2e9f3;
    color: #081936;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(16, 61, 127, .07);
    font-weight: 700;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-panel,
.home-dashboard.desktop-theme-showcase .desktop-top-action-frame,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll {
    display: grid;
    grid-template-columns: repeat(9, minmax(112px, 1fr));
    gap: 14px;
    overflow: visible;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button {
    min-width: 0;
    width: 100%;
    height: 150px;
    padding: 8px 8px 10px;
    border-radius: 13px;
    background: #ffffff;
    border: 1px solid #e4ebf4;
    box-shadow: 0 10px 24px rgba(21, 61, 118, .08);
    color: #0b1b3a;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button .action-card-image {
    width: 92px;
    height: 92px;
    object-fit: contain;
    filter: none;
    margin-bottom: 4px;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button strong {
    color: #0b1b3a;
    font-size: 14px;
    line-height: 1.05;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button small {
    display: none;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:hover,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(0, 94, 255, .34);
    box-shadow: 0 15px 30px rgba(0, 86, 214, .14);
}

.home-dashboard.desktop-theme-showcase > .four-column-dashboard {
    background: #f8fbff;
    padding: 14px 16px 16px !important;
}

.home-dashboard.desktop-theme-showcase .desktop-main-row {
    gap: 16px;
    display: grid !important;
    grid-template-columns: 25% 1fr 25%;
    align-items: stretch;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one,
.home-dashboard.desktop-theme-showcase .desktop-panel-two,
.home-dashboard.desktop-theme-showcase .desktop-panel-three,
.home-dashboard.desktop-theme-showcase .dashboard-panel,
.home-dashboard.desktop-theme-showcase .panel-three-main {
    background: #ffffff !important;
    border: 1px solid #e3eaf4 !important;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(19, 55, 107, .07);
    color: #0b1b3a !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one,
.home-dashboard.desktop-theme-showcase .desktop-panel-two,
.home-dashboard.desktop-theme-showcase .desktop-panel-three {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
}

.home-dashboard.desktop-theme-showcase .panel-title,
.home-dashboard.desktop-theme-showcase .content-title {
    color: #0b1b3a;
}

.home-dashboard.desktop-theme-showcase .projects-title-icon,
.home-dashboard.desktop-theme-showcase .section-title-icon {
    display: none;
}

.home-dashboard.desktop-theme-showcase .project-button-frame,
.home-dashboard.desktop-theme-showcase .project-scroll {
    background: transparent;
    border: none;
    box-shadow: none;
}

.home-dashboard.desktop-theme-showcase .project-button {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 4px;
    min-height: 92px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #e7edf6;
    border-radius: 0;
    color: #0b1b3a;
    box-shadow: none;
}

.home-dashboard.desktop-theme-showcase .project-button.selected,
.home-dashboard.desktop-theme-showcase .project-button:hover,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible {
    background: linear-gradient(90deg, rgba(0, 103, 255, .05), rgba(255,255,255,0));
    border-color: #d7e5fb;
    box-shadow: none;
}

.home-dashboard.desktop-theme-showcase .showcase-art-wrap {
    position: relative;
    width: 112px;
    height: 76px;
    display: block;
}

.home-dashboard.desktop-theme-showcase .showcase-project-thumb {
    width: 112px;
    height: 76px;
    object-fit: cover;
    border-radius: 9px;
    border: 1px solid #dbe5f1;
    box-shadow: 0 7px 15px rgba(18, 53, 103, .12);
}

.home-dashboard.desktop-theme-showcase .project-status {
    display: none;
}

.home-dashboard.desktop-theme-showcase .project-text strong {
    font-size: 14px;
    color: #0b1b3a;
}

.home-dashboard.desktop-theme-showcase .project-text small {
    color: #4d5f78;
    font-size: 12px;
    line-height: 1.28;
}

.home-dashboard.desktop-theme-showcase .showcase-selected-card {
    height: 100%;
    min-height: 520px;
    display: grid;
    grid-template-columns: 46% 54%;
    grid-template-rows: 1fr auto;
    gap: 0;
    padding: 28px 22px 16px;
    border-radius: 14px;
    background: radial-gradient(circle at 82% 18%, rgba(0,111,255,.12), transparent 0 22%, transparent 23%), #ffffff;
    overflow: hidden;
}

.home-dashboard.desktop-theme-showcase .showcase-selected-copy {
    align-self: center;
    z-index: 1;
}

.home-dashboard.desktop-theme-showcase .showcase-kicker {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 20px;
    background: #e8f3ff;
    color: #0069ff;
    font-size: 12px;
    font-weight: 700;
}

.home-dashboard.desktop-theme-showcase .showcase-selected-copy h2 {
    margin: 18px 0 12px;
    font-size: clamp(28px, 2.45vw, 42px);
    line-height: 1.05;
    color: #071735;
    letter-spacing: -.03em;
}

.home-dashboard.desktop-theme-showcase .showcase-selected-copy p {
    color: #50627b;
    font-size: 14px;
    line-height: 1.55;
}

.home-dashboard.desktop-theme-showcase .showcase-check-list {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    display: grid;
    gap: 8px;
    color: #243654;
    font-size: 14px;
}

.home-dashboard.desktop-theme-showcase .showcase-check-list li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 17px;
    height: 17px;
    margin-right: 8px;
    border-radius: 50%;
    background: #0b73ff;
    color: #fff;
    font-size: 12px;
}

.home-dashboard.desktop-theme-showcase .showcase-selected-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.home-dashboard.desktop-theme-showcase .showcase-selected-actions button,
.home-dashboard.desktop-theme-showcase .showcase-profile-button {
    border: 0;
    border-radius: 10px;
    padding: 12px 22px;
    background: linear-gradient(180deg, #0875ff, #005bea);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0, 91, 234, .22);
}

.home-dashboard.desktop-theme-showcase .showcase-selected-actions button.secondary {
    background: #ffffff;
    color: #0b55c4;
    border: 1px solid #dce6f3;
    box-shadow: 0 8px 18px rgba(31, 71, 128, .08);
}

.home-dashboard.desktop-theme-showcase .showcase-selected-visual {
    display: grid;
    place-items: center;
}

.home-dashboard.desktop-theme-showcase .showcase-selected-visual img {
    width: min(100%, 540px);
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 24px 26px rgba(14, 53, 106, .18));
}

.home-dashboard.desktop-theme-showcase .showcase-mini-benefits {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #e3eaf3;
    padding-top: 12px;
}

.home-dashboard.desktop-theme-showcase .showcase-mini-benefits span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1a2c4a;
    font-size: 12px;
    line-height: 1.1;
    border-right: 1px solid #e1e8f2;
}

.home-dashboard.desktop-theme-showcase .showcase-mini-benefits span:last-child { border-right: 0; }
.home-dashboard.desktop-theme-showcase .showcase-mini-benefits img { width: 34px; height: 34px; object-fit: contain; }

.home-dashboard.desktop-theme-showcase .showcase-profile-card {
    height: 100%;
    padding: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.home-dashboard.desktop-theme-showcase .showcase-profile-card h2 {
    align-self: flex-start;
    margin: 0 0 4px;
    color: #0b1b3a;
}

.home-dashboard.desktop-theme-showcase .showcase-avatar-frame {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    background: #e6f1ff;
    border: 1px solid #d8e5f5;
}

.home-dashboard.desktop-theme-showcase .showcase-avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-dashboard.desktop-theme-showcase .showcase-profile-card h3 {
    color: #0b1b3a;
    font-size: 23px;
    margin: 4px 0 0;
}

.home-dashboard.desktop-theme-showcase .showcase-profile-role {
    color: #0069ff;
    font-weight: 700;
    margin: 0;
}

.home-dashboard.desktop-theme-showcase .showcase-profile-text {
    color: #52637b;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.home-dashboard.desktop-theme-showcase .showcase-social-row {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin: 4px 0;
}

.home-dashboard.desktop-theme-showcase .showcase-social-row img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.home-dashboard.desktop-theme-showcase .showcase-skill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.home-dashboard.desktop-theme-showcase .showcase-skill-grid span {
    min-height: 84px;
    padding: 8px 5px;
    border: 1px solid #e2eaf4;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    color: #142642;
    background: #fff;
}

.home-dashboard.desktop-theme-showcase .showcase-skill-grid img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.home-dashboard.desktop-theme-showcase .showcase-profile-button {
    width: 100%;
    margin-top: auto;
    font-size: 15px;
}

.home-dashboard.desktop-theme-showcase .showcase-bottom-strip {
    margin-top: 16px;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e3eaf4;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(19, 55, 107, .06);
}

.home-dashboard.desktop-theme-showcase .showcase-bottom-strip article {
    display: grid;
    grid-template-columns: 58px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    border-right: 1px solid #e3eaf4;
}

.home-dashboard.desktop-theme-showcase .showcase-bottom-strip article:last-child { border-right: 0; }
.home-dashboard.desktop-theme-showcase .showcase-bottom-strip img { width: 52px; height: 52px; object-fit: contain; grid-row: 1 / span 2; }
.home-dashboard.desktop-theme-showcase .showcase-bottom-strip strong { color: #0b1b3a; font-size: 14px; }
.home-dashboard.desktop-theme-showcase .showcase-bottom-strip span { color: #52637b; font-size: 12px; line-height: 1.25; }


/* V_360 - WEB+ depuración: Mi Portada usa personaje de Estamos trabajando */
.home-dashboard.desktop-theme-showcase .showcase-avatar-frame {
    width: 168px;
    height: 168px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f7fbff 0%, #eaf3ff 100%);
}

.home-dashboard.desktop-theme-showcase .showcase-avatar-frame img {
    object-fit: cover;
    object-position: center 28%;
}


/* V_361 - WEB+ depuración columnas 1 y 2 / proyectos sin página */
.home-dashboard.desktop-theme-showcase .panel-title,
.home-dashboard.desktop-theme-showcase .content-title {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.home-dashboard.desktop-theme-showcase .panel-title > div,
.home-dashboard.desktop-theme-showcase .content-title > div {
    width: 100%;
    min-width: 0;
}

.home-dashboard.desktop-theme-showcase .panel-title h2,
.home-dashboard.desktop-theme-showcase .content-title h2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-dashboard.desktop-theme-showcase .panel-title p,
.home-dashboard.desktop-theme-showcase .content-title p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 13px;
    line-height: 1.25;
}

.home-dashboard.desktop-theme-showcase .project-button {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 2px;
}

.home-dashboard.desktop-theme-showcase .showcase-art-wrap {
    width: 86px;
    height: 62px;
}

.home-dashboard.desktop-theme-showcase .showcase-project-thumb {
    width: 86px;
    height: 62px;
}

.home-dashboard.desktop-theme-showcase .project-text {
    min-width: 0;
    width: 100%;
}

.home-dashboard.desktop-theme-showcase .project-text strong,
.home-dashboard.desktop-theme-showcase .project-text small {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-dashboard.desktop-theme-showcase .project-video-detail-layout,
.home-dashboard.desktop-theme-showcase .video-detail-row,
.home-dashboard.desktop-theme-showcase .video-detail-media-col,
.home-dashboard.desktop-theme-showcase .video-detail-info-col,
.home-dashboard.desktop-theme-showcase .project-inline-info {
    min-width: 0;
}

.home-dashboard.desktop-theme-showcase .project-inline-description,
.home-dashboard.desktop-theme-showcase .project-inline-meta span,
.home-dashboard.desktop-theme-showcase .project-inline-meta strong {
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
}

.home-dashboard.desktop-theme-showcase .panel-three-main.placeholder-mode {
    display: grid;
    place-items: center;
}

.home-dashboard.desktop-theme-showcase .work-placeholder {
    width: 100%;
    min-height: 100%;
    display: grid;
    place-items: center;
    padding: 18px;
}

.home-dashboard.desktop-theme-showcase .work-placeholder-inner {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
    border: 1px solid #e2eaf5;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(19, 55, 107, .09);
    padding: 20px 22px;
}

.home-dashboard.desktop-theme-showcase .working-image-frame {
    width: min(100%, 420px);
    margin: 0 auto 14px;
}

.home-dashboard.desktop-theme-showcase .working-image {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
}


/* ============================================================
   V_362 - WEB+ depuración visual
   - Baja las tres columnas para que no invadan botones superiores.
   - Unifica títulos, botones, selección y acentos a paleta azul.
   - Solo aplica al tema Desktop WEB+ / Pantalla Web.
   ============================================================ */
.home-dashboard.desktop-theme-showcase {
    --violet: #0b73ff !important;
    --cyan: #1ca9ff !important;
    --amber: #0d86ff !important;
    --orange: #0b73ff !important;
    --green: #1687e8 !important;
    --lime: #1f95f2 !important;
    --teal: #25b5e8 !important;
    --showcase-blue: #0b73ff;
    --showcase-blue-dark: #074db4;
    --showcase-blue-soft: #e9f3ff;
}

.home-dashboard.desktop-theme-showcase > .home-topbar.desktop-expanded-topbar {
    position: relative !important;
    z-index: 5 !important;
    border-bottom-color: rgba(11, 115, 255, .16) !important;
}

.home-dashboard.desktop-theme-showcase > .four-column-dashboard {
    position: relative !important;
    z-index: 1 !important;
    margin-top: 30px !important;
    height: calc(100vh - 172px - 30px) !important;
    padding-top: 0 !important;
}

.home-dashboard.desktop-theme-showcase .desktop-main-row {
    padding-top: 0 !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one,
.home-dashboard.desktop-theme-showcase .desktop-panel-two,
.home-dashboard.desktop-theme-showcase .desktop-panel-three,
.home-dashboard.desktop-theme-showcase .dashboard-panel,
.home-dashboard.desktop-theme-showcase .panel-three-main {
    border-color: rgba(11, 115, 255, .14) !important;
}

.home-dashboard.desktop-theme-showcase .desktop-about-nav a,
.home-dashboard.desktop-theme-showcase .top-register,
.home-dashboard.desktop-theme-showcase .top-theme-button,
.home-dashboard.desktop-theme-showcase .top-language-button,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button,
.home-dashboard.desktop-theme-showcase .showcase-selected-actions button.secondary,
.home-dashboard.desktop-theme-showcase .showcase-profile-button {
    border-color: rgba(11, 115, 255, .16) !important;
}

.home-dashboard.desktop-theme-showcase .panel-title h2,
.home-dashboard.desktop-theme-showcase .content-title h2,
.home-dashboard.desktop-theme-showcase .showcase-profile-card h2,
.home-dashboard.desktop-theme-showcase .showcase-profile-card h3,
.home-dashboard.desktop-theme-showcase .showcase-selected-copy h2,
.home-dashboard.desktop-theme-showcase .showcase-bottom-strip strong,
.home-dashboard.desktop-theme-showcase .project-text strong,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button strong {
    color: #0a3f95 !important;
}

.home-dashboard.desktop-theme-showcase .panel-title p,
.home-dashboard.desktop-theme-showcase .content-title p,
.home-dashboard.desktop-theme-showcase .showcase-profile-role,
.home-dashboard.desktop-theme-showcase .showcase-kicker,
.home-dashboard.desktop-theme-showcase .project-inline-status span,
.home-dashboard.desktop-theme-showcase .project-status.active,
.home-dashboard.desktop-theme-showcase .intro-accent,
.home-dashboard.desktop-theme-showcase .work-placeholder-inner p strong {
    color: var(--showcase-blue) !important;
}

.home-dashboard.desktop-theme-showcase .showcase-kicker,
.home-dashboard.desktop-theme-showcase .language-pill,
.home-dashboard.desktop-theme-showcase .theme-pill {
    background: var(--showcase-blue-soft) !important;
    border-color: rgba(11, 115, 255, .16) !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:hover,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:focus-visible,
.home-dashboard.desktop-theme-showcase .project-button.selected,
.home-dashboard.desktop-theme-showcase .project-button:hover,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible,
.home-dashboard.desktop-theme-showcase .video-thumb-button.selected,
.home-dashboard.desktop-theme-showcase .video-thumb-button:hover,
.home-dashboard.desktop-theme-showcase .video-thumb-button:focus-visible {
    border-color: rgba(11, 115, 255, .38) !important;
    background: linear-gradient(90deg, rgba(11, 115, 255, .08), rgba(255,255,255,0)) !important;
    box-shadow: 0 12px 28px rgba(11, 115, 255, .14) !important;
}

.home-dashboard.desktop-theme-showcase .showcase-selected-actions button,
.home-dashboard.desktop-theme-showcase .showcase-profile-button,
.home-dashboard.desktop-theme-showcase .project-inline-actions a,
.home-dashboard.desktop-theme-showcase .project-inline-actions button {
    background: linear-gradient(180deg, #1088ff 0%, #075bd8 100%) !important;
    color: #ffffff !important;
    border-color: rgba(11, 115, 255, .24) !important;
    box-shadow: 0 12px 24px rgba(11, 115, 255, .22) !important;
}

.home-dashboard.desktop-theme-showcase .showcase-selected-actions button.secondary,
.home-dashboard.desktop-theme-showcase .project-inline-actions a.secondary,
.home-dashboard.desktop-theme-showcase .project-inline-actions button.secondary {
    background: #ffffff !important;
    color: var(--showcase-blue-dark) !important;
    border: 1px solid rgba(11, 115, 255, .18) !important;
    box-shadow: 0 8px 18px rgba(11, 115, 255, .08) !important;
}

.home-dashboard.desktop-theme-showcase .showcase-check-list li::before {
    background: var(--showcase-blue) !important;
}

.home-dashboard.desktop-theme-showcase .showcase-mini-benefits,
.home-dashboard.desktop-theme-showcase .showcase-bottom-strip,
.home-dashboard.desktop-theme-showcase .showcase-skill-grid span,
.home-dashboard.desktop-theme-showcase .work-placeholder-inner,
.home-dashboard.desktop-theme-showcase .working-image-frame {
    border-color: rgba(11, 115, 255, .14) !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll::-webkit-scrollbar-thumb {
    background: rgba(11, 115, 255, .48) !important;
}


/* ============================================================
   V_363 - WEB+ limpieza final azul/blanco
   - Más separación entre botones superiores y columnas.
   - Elimina restos morados/dorados en WEB+.
   - Ventanas llamadas desde botones superiores pasan a blanco/azul.
   ============================================================ */
.home-dashboard.desktop-theme-showcase {
    --violet: #0b73ff !important;
    --amber: #0b73ff !important;
    --gold: #0b73ff !important;
    --showcase-blue: #0b73ff;
    --showcase-blue-dark: #074db4;
    --showcase-blue-mid: #126bdf;
    --showcase-blue-soft: #eaf4ff;
    --showcase-border: rgba(11, 115, 255, .18);
}

.home-dashboard.desktop-theme-showcase > .home-topbar.desktop-expanded-topbar {
    background: #ffffff !important;
    border: 1px solid #e2ebf7 !important;
    border-bottom: 1px solid rgba(11, 115, 255, .18) !important;
    box-shadow: 0 10px 26px rgba(19, 65, 132, .08) !important;
    overflow: visible !important;
}

.home-dashboard.desktop-theme-showcase > .home-topbar.desktop-expanded-topbar > .desktop-menu-row.desktop-about-controls-row,
.home-dashboard.desktop-theme-showcase .desktop-menu-row.desktop-about-controls-row {
    background: #ffffff !important;
    border-bottom: 1px solid #eef3fa !important;
    box-shadow: none !important;
}

.home-dashboard.desktop-theme-showcase > .home-topbar.desktop-expanded-topbar > .desktop-menu-row.desktop-about-controls-row > .desktop-about-nav a,
.home-dashboard.desktop-theme-showcase .desktop-about-nav a,
.home-dashboard.desktop-theme-showcase .desktop-about-nav a.active,
.home-dashboard.desktop-theme-showcase .top-register,
.home-dashboard.desktop-theme-showcase .top-theme-button,
.home-dashboard.desktop-theme-showcase .top-language-button,
.home-dashboard.desktop-theme-showcase .theme-pill,
.home-dashboard.desktop-theme-showcase .language-pill {
    color: #0b57c5 !important;
    background: #ffffff !important;
    border-color: rgba(11, 115, 255, .20) !important;
    box-shadow: 0 6px 16px rgba(16, 74, 148, .07) !important;
    text-shadow: none !important;
}

.home-dashboard.desktop-theme-showcase .desktop-about-nav a::before,
.home-dashboard.desktop-theme-showcase .desktop-about-nav a.active::before,
.home-dashboard.desktop-theme-showcase .top-register::first-letter,
.home-dashboard.desktop-theme-showcase .top-theme-button::first-letter,
.home-dashboard.desktop-theme-showcase .top-language-button::first-letter {
    color: #0b73ff !important;
}

.home-dashboard.desktop-theme-showcase .desktop-about-nav a::after,
.home-dashboard.desktop-theme-showcase .desktop-about-nav a.active::after {
    display: none !important;
    background: transparent !important;
}

.home-dashboard.desktop-theme-showcase > .home-topbar.desktop-expanded-topbar > .desktop-top-action-panel,
.home-dashboard.desktop-theme-showcase .desktop-top-action-panel {
    background: #ffffff !important;
    border: 0 !important;
    box-shadow: none !important;
    height: 158px !important;
    min-height: 158px !important;
    padding: 12px 16px 14px !important;
    overflow: visible !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-frame {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: visible !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    gap: 14px !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button {
    background: #ffffff !important;
    border: 1px solid #e2ebf7 !important;
    color: #0b1b3a !important;
    box-shadow: 0 10px 22px rgba(19, 65, 132, .08) !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:hover,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:focus-visible {
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%) !important;
    border-color: rgba(11, 115, 255, .42) !important;
    box-shadow: 0 16px 32px rgba(11, 115, 255, .16) !important;
}

.home-dashboard.desktop-theme-showcase > .four-column-dashboard {
    margin-top: 64px !important;
    height: calc(100vh - 172px - 64px) !important;
    padding-top: 0 !important;
    background: #f8fbff !important;
}

.home-dashboard.desktop-theme-showcase .desktop-main-row {
    padding-top: 0 !important;
    align-items: stretch !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one,
.home-dashboard.desktop-theme-showcase .desktop-panel-two,
.home-dashboard.desktop-theme-showcase .desktop-panel-three,
.home-dashboard.desktop-theme-showcase .dashboard-panel,
.home-dashboard.desktop-theme-showcase .panel-three-main,
.home-dashboard.desktop-theme-showcase .project-inline-info {
    background: #ffffff !important;
    border-color: rgba(11, 115, 255, .14) !important;
    color: #0b1b3a !important;
}

.home-dashboard.desktop-theme-showcase .panel-title h2,
.home-dashboard.desktop-theme-showcase .content-title h2,
.home-dashboard.desktop-theme-showcase .showcase-profile-card h2,
.home-dashboard.desktop-theme-showcase .showcase-profile-card h3,
.home-dashboard.desktop-theme-showcase .showcase-selected-copy h2,
.home-dashboard.desktop-theme-showcase .project-text strong,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button strong,
.home-dashboard.desktop-theme-showcase .project-inline-meta strong,
.home-dashboard.desktop-theme-showcase .showcase-bottom-strip strong {
    color: #0a3f95 !important;
    text-shadow: none !important;
}

.home-dashboard.desktop-theme-showcase .panel-title p,
.home-dashboard.desktop-theme-showcase .content-title p,
.home-dashboard.desktop-theme-showcase .project-text small,
.home-dashboard.desktop-theme-showcase .project-inline-description,
.home-dashboard.desktop-theme-showcase .project-inline-meta span,
.home-dashboard.desktop-theme-showcase .showcase-profile-text,
.home-dashboard.desktop-theme-showcase .showcase-bottom-strip span {
    color: #51647f !important;
}

.home-dashboard.desktop-theme-showcase .project-inline-status,
.home-dashboard.desktop-theme-showcase .status-badge {
    background: linear-gradient(180deg, #eaf4ff 0%, #d9ebff 100%) !important;
    border: 1px solid rgba(11, 115, 255, .18) !important;
    color: #0b73ff !important;
    box-shadow: none !important;
}

.home-dashboard.desktop-theme-showcase .project-inline-status span,
.home-dashboard.desktop-theme-showcase .status-badge,
.home-dashboard.desktop-theme-showcase .project-status.active {
    color: #0b73ff !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}

.home-dashboard.desktop-theme-showcase .download-demo,
.home-dashboard.desktop-theme-showcase .buy-premium,
.home-dashboard.desktop-theme-showcase .project-inline-actions a,
.home-dashboard.desktop-theme-showcase .project-inline-actions button,
.home-dashboard.desktop-theme-showcase .showcase-selected-actions button,
.home-dashboard.desktop-theme-showcase .showcase-profile-button {
    background: linear-gradient(180deg, #1689ff 0%, #075bd8 100%) !important;
    border: 1px solid rgba(11, 115, 255, .26) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 22px rgba(11, 115, 255, .20) !important;
}

.home-dashboard.desktop-theme-showcase .showcase-selected-actions button.secondary,
.home-dashboard.desktop-theme-showcase .project-inline-actions a.secondary,
.home-dashboard.desktop-theme-showcase .project-inline-actions button.secondary {
    background: #ffffff !important;
    color: #074db4 !important;
    border: 1px solid rgba(11, 115, 255, .20) !important;
    box-shadow: 0 8px 16px rgba(11, 115, 255, .08) !important;
}

.home-dashboard.desktop-theme-showcase .project-button.selected,
.home-dashboard.desktop-theme-showcase .project-button:hover,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible,
.home-dashboard.desktop-theme-showcase .video-thumb-button.selected,
.home-dashboard.desktop-theme-showcase .video-thumb-button:hover,
.home-dashboard.desktop-theme-showcase .video-thumb-button:focus-visible {
    background: linear-gradient(90deg, rgba(11, 115, 255, .09), rgba(255,255,255,0)) !important;
    border-color: rgba(11, 115, 255, .35) !important;
    box-shadow: 0 12px 28px rgba(11, 115, 255, .13) !important;
}

/* Modales/ventanas en WEB+ fuera del contenedor principal */
.language-modal-backdrop.desktop-theme-showcase,
.work-modal-backdrop.desktop-theme-showcase {
    background: rgba(240, 246, 255, .78) !important;
    backdrop-filter: blur(4px) !important;
}

.language-modal-backdrop.desktop-theme-showcase .language-modal,
.work-modal-backdrop.desktop-theme-showcase .work-modal,
.work-modal-backdrop.desktop-theme-showcase .branded-modal,
.work-modal-backdrop.desktop-theme-showcase .panel-detached-content,
.work-modal-backdrop.desktop-theme-showcase .dashboard-panel,
.work-modal-backdrop.desktop-theme-showcase .panel-four,
.work-modal-backdrop.desktop-theme-showcase .panel-five,
.work-modal-backdrop.desktop-theme-showcase .about-modal-content,
.work-modal-backdrop.desktop-theme-showcase .contact-modal-content {
    background: #ffffff !important;
    border-color: rgba(11, 115, 255, .18) !important;
    color: #0b1b3a !important;
    box-shadow: 0 24px 54px rgba(19, 65, 132, .16) !important;
}

.language-modal-backdrop.desktop-theme-showcase .language-modal-header h2,
.work-modal-backdrop.desktop-theme-showcase .detached-panel-title,
.work-modal-backdrop.desktop-theme-showcase h2,
.work-modal-backdrop.desktop-theme-showcase h3,
.work-modal-backdrop.desktop-theme-showcase strong,
.work-modal-backdrop.desktop-theme-showcase .about-modal-header h3,
.work-modal-backdrop.desktop-theme-showcase .contact-modal-header h3,
.work-modal-backdrop.desktop-theme-showcase .panel-title h2 {
    color: #0a3f95 !important;
    text-shadow: none !important;
}

.language-modal-backdrop.desktop-theme-showcase .language-modal-header p,
.work-modal-backdrop.desktop-theme-showcase p,
.work-modal-backdrop.desktop-theme-showcase small,
.work-modal-backdrop.desktop-theme-showcase span,
.work-modal-backdrop.desktop-theme-showcase .about-modal-body,
.work-modal-backdrop.desktop-theme-showcase .contact-modal-header p,
.work-modal-backdrop.desktop-theme-showcase .panel-title p {
    color: #51647f !important;
    text-shadow: none !important;
}

.language-modal-backdrop.desktop-theme-showcase .language-modal-close,
.work-modal-backdrop.desktop-theme-showcase .work-modal-close {
    background: #ffffff !important;
    color: #0b73ff !important;
    border: 1px solid rgba(11, 115, 255, .28) !important;
    box-shadow: 0 8px 18px rgba(11, 115, 255, .12) !important;
}

.language-modal-backdrop.desktop-theme-showcase .language-choice,
.work-modal-backdrop.desktop-theme-showcase .contact-option,
.work-modal-backdrop.desktop-theme-showcase .empty-logo-button {
    background: #ffffff !important;
    border-color: rgba(11, 115, 255, .16) !important;
    color: #0b1b3a !important;
    box-shadow: 0 8px 18px rgba(19, 65, 132, .08) !important;
}

.language-modal-backdrop.desktop-theme-showcase .language-choice.selected,
.language-modal-backdrop.desktop-theme-showcase .language-choice:hover,
.work-modal-backdrop.desktop-theme-showcase .contact-option:hover,
.work-modal-backdrop.desktop-theme-showcase .empty-logo-button:hover {
    background: #f2f8ff !important;
    border-color: rgba(11, 115, 255, .38) !important;
    color: #0b57c5 !important;
}

.work-modal-backdrop.desktop-theme-showcase .modal-brand-logo,
.language-modal-backdrop.desktop-theme-showcase .modal-brand-logo {
    filter: none !important;
    opacity: .92 !important;
}

.work-modal-backdrop.desktop-theme-showcase .status-badge,
.work-modal-backdrop.desktop-theme-showcase .project-inline-status {
    background: linear-gradient(180deg, #eaf4ff 0%, #d9ebff 100%) !important;
    border: 1px solid rgba(11, 115, 255, .18) !important;
    color: #0b73ff !important;
}


/* ============================================================
   V_364 - Suavizar fondo detrás de imagen en "Estamos trabajando"
   ============================================================ */
.work-modal .working-image-frame,
.modal-work-placeholder .working-image-frame,
.work-placeholder .working-image-frame {
    background: linear-gradient(180deg, #3e536d 0%, #2d4158 100%) !important;
    border-color: rgba(117, 153, 194, .42) !important;
    box-shadow: 0 10px 24px rgba(42, 64, 92, .24), inset 0 1px 0 rgba(255,255,255,.05) !important;
}

.home-dashboard.desktop-theme-white .working-image-frame,
.home-dashboard.desktop-theme-showcase .working-image-frame,
.home-dashboard.desktop-theme-business .working-image-frame {
    background: linear-gradient(180deg, #d9e5f0 0%, #c6d6e6 100%) !important;
    border-color: rgba(86, 129, 181, .28) !important;
    box-shadow: 0 8px 24px rgba(39, 68, 108, .14) !important;
}


/* ============================================================
   V_365 - Corrección real de fondo negro y font +2 botones WEB+
   ============================================================ */
/* El negro visible venía del contenedor completo, no solo del frame de imagen. */
.work-modal .work-placeholder-inner,
.modal-work-placeholder .work-placeholder-inner,
.work-placeholder .work-placeholder-inner {
    background: linear-gradient(180deg, #d7e4f1 0%, #bfcedd 100%) !important;
    border-color: rgba(82, 125, 176, .36) !important;
    box-shadow: 0 14px 30px rgba(39, 68, 108, .18), inset 0 1px 0 rgba(255,255,255,.42) !important;
    color: #173456 !important;
}

.work-modal .work-placeholder-inner h3,
.modal-work-placeholder .work-placeholder-inner h3,
.work-placeholder .work-placeholder-inner h3 {
    color: #0a4faa !important;
    text-shadow: none !important;
}

.work-modal .work-placeholder-inner p,
.modal-work-placeholder .work-placeholder-inner p,
.work-placeholder .work-placeholder-inner p {
    color: #38536f !important;
    text-shadow: none !important;
}

.work-modal .work-placeholder-inner p strong,
.modal-work-placeholder .work-placeholder-inner p strong,
.work-placeholder .work-placeholder-inner p strong {
    color: #075bd8 !important;
}

.work-modal .working-image-frame,
.modal-work-placeholder .working-image-frame,
.work-placeholder .working-image-frame {
    background: linear-gradient(180deg, #e6eef7 0%, #cad8e8 100%) !important;
    border-color: rgba(82, 125, 176, .34) !important;
    box-shadow: 0 10px 24px rgba(42, 64, 92, .16), inset 0 1px 0 rgba(255,255,255,.45) !important;
}

/* WEB+ aún más claro y coherente con el tema blanco/azul */
.home-dashboard.desktop-theme-showcase .work-placeholder-inner,
.work-modal-backdrop.desktop-theme-showcase .work-placeholder-inner,
.work-modal-backdrop.desktop-theme-showcase .modal-work-placeholder .work-placeholder-inner {
    background: linear-gradient(180deg, #eef5fc 0%, #d9e6f3 100%) !important;
    border-color: rgba(11, 115, 255, .18) !important;
    box-shadow: 0 18px 34px rgba(26, 75, 133, .14), inset 0 1px 0 rgba(255,255,255,.70) !important;
}

.home-dashboard.desktop-theme-showcase .working-image-frame,
.work-modal-backdrop.desktop-theme-showcase .working-image-frame,
.work-modal-backdrop.desktop-theme-showcase .modal-work-placeholder .working-image-frame {
    background: linear-gradient(180deg, #f2f7fc 0%, #dbe9f6 100%) !important;
    border-color: rgba(11, 115, 255, .16) !important;
    box-shadow: 0 10px 22px rgba(26, 75, 133, .12) !important;
}

/* Botones superiores WEB+: +2 puntos de tamaño de letra */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button strong,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button strong {
    font-size: 16px !important;
    line-height: 1.08 !important;
    height: auto !important;
    min-height: 18px !important;
    max-height: none !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button small,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button small {
    font-size: 12px !important;
    line-height: 1.12 !important;
    height: auto !important;
    min-height: 14px !important;
    max-height: none !important;
}


/* V_366 - Ajuste de títulos superiores y texto de portada */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button strong,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button strong {
    font-size: 14px !important;
    line-height: 1.12 !important;
    font-weight: 700 !important;
    min-height: 18px !important;
    max-height: none !important;
}


/* V_367 - +2 puntos a títulos de botones superiores y proyectos en WEB+ */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button strong,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button strong,
.home-dashboard.desktop-theme-showcase .project-text strong {
    font-size: 16px !important;
    line-height: 1.14 !important;
    font-weight: 700 !important;
}


/* V_368 - Contacto WEB+ en azul-gris y +2 pts reales en títulos */
.work-modal-backdrop.desktop-theme-showcase .contact-option::before {
    background: linear-gradient(180deg, rgba(235, 242, 250, .92), rgba(198, 213, 228, .98)) !important;
    opacity: 1 !important;
}

.work-modal-backdrop.desktop-theme-showcase .contact-brand-art {
    background: linear-gradient(180deg, #50657c 0%, #3b526a 100%) !important;
    box-shadow: 0 8px 18px rgba(40, 65, 94, .18), inset 0 0 24px rgba(255,255,255,.04) !important;
}

.work-modal-backdrop.desktop-theme-showcase .contact-brand-art-frame {
    background: radial-gradient(circle at 50% 28%, rgba(255,255,255,.16), transparent 34%),
        linear-gradient(180deg, rgba(86, 107, 131, .96), rgba(58, 79, 102, .98)) !important;
}

.work-modal-backdrop.desktop-theme-showcase .contact-brand-caption {
    background: rgba(71, 92, 116, .92) !important;
    color: #eef5ff !important;
    border-color: rgba(255,255,255,.18) !important;
    box-shadow: inset 0 0 8px rgba(255,255,255,.08) !important;
}

.work-modal-backdrop.desktop-theme-showcase .contact-option {
    box-shadow: 0 10px 22px rgba(33, 62, 96, .12) !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button > strong,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button > strong,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button strong,
.home-dashboard.desktop-theme-showcase .project-button .project-text strong,
.home-dashboard.desktop-theme-showcase .project-text strong {
    font-size: 16px !important;
    line-height: 1.14 !important;
    font-weight: 700 !important;
}


/* ============================================================
   V_369 - Hover flotante 50% y seleccionado azul más oscuro WEB+
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-expanded-topbar,
.home-dashboard.desktop-theme-showcase .desktop-top-action-panel,
.home-dashboard.desktop-theme-showcase .desktop-top-action-frame,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll,
.home-dashboard.desktop-theme-showcase .desktop-panel-one,
.home-dashboard.desktop-theme-showcase .project-button-frame,
.home-dashboard.desktop-theme-showcase .project-scroll {
    overflow: visible !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button,
.home-dashboard.desktop-theme-showcase .project-button {
    position: relative !important;
    transform-origin: center center !important;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, color .16s ease !important;
    will-change: transform !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:hover,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:focus-visible {
    transform: scale(1.5) !important;
    z-index: 9000 !important;
    box-shadow: 0 22px 46px rgba(11, 115, 255, .30), 0 0 0 2px rgba(11, 115, 255, .22) !important;
}

.home-dashboard.desktop-theme-showcase .project-button:hover,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible {
    transform: scale(1.5) !important;
    transform-origin: left center !important;
    z-index: 9000 !important;
    box-shadow: 0 22px 46px rgba(11, 115, 255, .28), 0 0 0 2px rgba(11, 115, 255, .24) !important;
}

.home-dashboard.desktop-theme-showcase .project-button.selected {
    background: linear-gradient(180deg, #0b73ff 0%, #074fae 100%) !important;
    border-color: rgba(4, 72, 168, .72) !important;
    box-shadow: 0 12px 26px rgba(7, 79, 174, .24), inset 0 1px 0 rgba(255,255,255,.25) !important;
}

.home-dashboard.desktop-theme-showcase .project-button.selected .project-text strong,
.home-dashboard.desktop-theme-showcase .project-button.selected .project-text small {
    color: #ffffff !important;
}

.home-dashboard.desktop-theme-showcase .project-button.selected .showcase-project-thumb,
.home-dashboard.desktop-theme-showcase .project-button.selected .project-art-wrap {
    box-shadow: 0 0 0 2px rgba(255,255,255,.70), 0 10px 20px rgba(4, 50, 115, .28) !important;
}


/* V_370 - Prueba fondo gris 180 sólido en botones WEB+ */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll,
.home-dashboard.desktop-theme-showcase .project-scroll,
.home-dashboard.desktop-theme-showcase .project-button-frame,
.home-dashboard.desktop-theme-showcase .desktop-top-action-frame {
    overflow: visible !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button,
.home-dashboard.desktop-theme-showcase .project-button {
    background: rgb(180, 180, 180) !important;
    background-color: rgb(180, 180, 180) !important;
    border-color: rgba(75, 95, 120, .46) !important;
    box-shadow: 0 8px 18px rgba(70, 86, 108, .18) !important;
    color: #0c223f !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button strong,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button small,
.home-dashboard.desktop-theme-showcase .project-button .project-text strong,
.home-dashboard.desktop-theme-showcase .project-button .project-text small {
    color: #0c223f !important;
    text-shadow: none !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:hover,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:focus-visible,
.home-dashboard.desktop-theme-showcase .project-button:hover,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible {
    background: rgb(180, 180, 180) !important;
    background-color: rgb(180, 180, 180) !important;
    border-color: rgba(11, 115, 255, .42) !important;
    box-shadow: 0 24px 46px rgba(24, 54, 92, .34), 0 0 0 2px rgba(11, 115, 255, .22) !important;
    opacity: 1 !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:hover::before,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:focus-visible::before,
.home-dashboard.desktop-theme-showcase .project-button:hover::before,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible::before {
    background: rgb(180, 180, 180) !important;
    opacity: 1 !important;
}

.home-dashboard.desktop-theme-showcase .project-button.selected {
    background: #155fad !important;
    background-color: #155fad !important;
    border-color: rgba(8, 70, 145, .74) !important;
    box-shadow: 0 14px 30px rgba(10, 72, 145, .26), 0 0 0 2px rgba(255,255,255,.68) inset !important;
}

.home-dashboard.desktop-theme-showcase .project-button.selected .project-text strong,
.home-dashboard.desktop-theme-showcase .project-button.selected .project-text small {
    color: #ffffff !important;
}


/* V_371 - WEB+ gris más claro y esquinas redondeadas en imágenes */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button,
.home-dashboard.desktop-theme-showcase .project-button {
    background: rgb(238, 241, 245) !important;
    background-color: rgb(238, 241, 245) !important;
    border-color: rgba(105, 132, 166, .28) !important;
    box-shadow: 0 8px 18px rgba(70, 86, 108, .10) !important;
    color: #0c223f !important;
    opacity: 1 !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button::before,
.home-dashboard.desktop-theme-showcase .project-button::before {
    background: rgb(238, 241, 245) !important;
    opacity: 1 !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:hover,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:focus-visible,
.home-dashboard.desktop-theme-showcase .project-button:hover,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible {
    background: rgb(248, 250, 252) !important;
    background-color: rgb(248, 250, 252) !important;
    border-color: rgba(11, 115, 255, .42) !important;
    box-shadow: 0 24px 46px rgba(24, 54, 92, .26), 0 0 0 2px rgba(11, 115, 255, .20) !important;
    opacity: 1 !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:hover::before,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:focus-visible::before,
.home-dashboard.desktop-theme-showcase .project-button:hover::before,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible::before {
    background: rgb(248, 250, 252) !important;
    opacity: 1 !important;
}

.home-dashboard.desktop-theme-showcase .project-button.selected {
    background: #155fad !important;
    background-color: #155fad !important;
    border-color: rgba(8, 70, 145, .74) !important;
    box-shadow: 0 14px 30px rgba(10, 72, 145, .26), 0 0 0 2px rgba(255,255,255,.68) inset !important;
}

.home-dashboard.desktop-theme-showcase img,
.work-modal-backdrop.desktop-theme-showcase img,
.language-modal-backdrop.desktop-theme-showcase img {
    border-radius: 14px !important;
}

.home-dashboard.desktop-theme-showcase .action-card-image,
.home-dashboard.desktop-theme-showcase .showcase-project-thumb,
.home-dashboard.desktop-theme-showcase .video-thumb-button img,
.home-dashboard.desktop-theme-showcase .contact-brand-logo,
.work-modal-backdrop.desktop-theme-showcase .contact-brand-logo,
.work-modal-backdrop.desktop-theme-showcase .modal-brand-logo,
.language-modal-backdrop.desktop-theme-showcase .modal-brand-logo {
    border-radius: 12px !important;
}

.home-dashboard.desktop-theme-showcase .showcase-selected-image,
.home-dashboard.desktop-theme-showcase .showcase-profile-photo,
.home-dashboard.desktop-theme-showcase .working-image,
.work-modal-backdrop.desktop-theme-showcase .working-image {
    border-radius: 20px !important;
}


/* V_372 - Redondeo directo de imágenes internas de botones y Estamos trabajando */
.home-dashboard.desktop-theme-showcase .desktop-top-action-button .action-card-image,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button .action-card-image,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button > img.action-card-image,
.home-dashboard.desktop-theme-showcase .project-button .showcase-project-thumb,
.home-dashboard.desktop-theme-showcase .project-button img.showcase-project-thumb,
.home-dashboard.desktop-theme-showcase .project-art-wrap img,
.home-dashboard.desktop-theme-showcase .working-image,
.work-modal-backdrop.desktop-theme-showcase .working-image,
.work-modal-backdrop.desktop-theme-showcase .modal-work-placeholder .working-image,
.work-modal-backdrop.desktop-theme-showcase .work-placeholder .working-image {
    border-radius: 18px !important;
    overflow: hidden !important;
    clip-path: inset(0 round 18px) !important;
    display: block !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-button .action-card-image,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button .action-card-image {
    border-radius: 14px !important;
    clip-path: inset(0 round 14px) !important;
}

.home-dashboard.desktop-theme-showcase .project-button .showcase-project-thumb,
.home-dashboard.desktop-theme-showcase .project-art-wrap,
.home-dashboard.desktop-theme-showcase .project-art-wrap img {
    border-radius: 16px !important;
    clip-path: inset(0 round 16px) !important;
}

.home-dashboard.desktop-theme-showcase .working-image-frame,
.work-modal-backdrop.desktop-theme-showcase .working-image-frame,
.work-modal-backdrop.desktop-theme-showcase .modal-work-placeholder .working-image-frame,
.work-modal-backdrop.desktop-theme-showcase .work-placeholder .working-image-frame {
    border-radius: 22px !important;
    overflow: hidden !important;
}

.home-dashboard.desktop-theme-showcase .working-image,
.work-modal-backdrop.desktop-theme-showcase .working-image,
.work-modal-backdrop.desktop-theme-showcase .modal-work-placeholder .working-image,
.work-modal-backdrop.desktop-theme-showcase .work-placeholder .working-image {
    border-radius: 22px !important;
    clip-path: inset(0 round 22px) !important;
}


/* ============================================================
   V_374 - Correccion anti-estriado: imagen protagonista sin deformar
   Base visual retomada desde V_372, descartando V_373.
   Desktop / WEB+ Pantalla Web
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-top-action-panel,
.home-dashboard.desktop-theme-showcase .desktop-top-action-frame,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll,
.home-dashboard.desktop-theme-showcase .project-button-frame,
.home-dashboard.desktop-theme-showcase .project-scroll {
    overflow: visible !important;
}

/* Botones superiores: imagen grande, completa, sin estirar ni recortar */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll {
    gap: 10px !important;
    align-items: stretch !important;
    padding: 6px 4px !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button {
    width: 118px !important;
    min-width: 118px !important;
    height: 100% !important;
    grid-template-rows: 74px 22px 24px !important;
    gap: 3px !important;
    padding: 6px !important;
    border-radius: 16px !important;
    overflow: visible !important;
    background: rgb(246, 248, 251) !important;
    background-color: rgb(246, 248, 251) !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-button .action-card-image,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button .action-card-image,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button > img.action-card-image {
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 74px !important;
    max-height: 74px !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 14px !important;
    clip-path: inset(0 round 14px) !important;
    margin: 0 !important;
    display: block !important;
    image-rendering: auto !important;
    filter: none !important;
    transform: none !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button strong {
    grid-row: 2 !important;
    height: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    line-height: 1.05 !important;
    padding: 0 2px !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button small {
    grid-row: 3 !important;
    height: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
    line-height: 1.1 !important;
    padding: 0 2px !important;
}

/* Proyectos: miniatura más visible, completa, sin deformar */
.home-dashboard.desktop-theme-showcase .project-button {
    grid-template-columns: 88px 1fr !important;
    gap: 10px !important;
    min-height: 100px !important;
    padding: 8px 10px !important;
    border-radius: 16px !important;
    overflow: visible !important;
    background: rgb(246, 248, 251) !important;
    background-color: rgb(246, 248, 251) !important;
}

.home-dashboard.desktop-theme-showcase .project-button .project-art-wrap,
.home-dashboard.desktop-theme-showcase .project-button .showcase-art-wrap {
    width: 88px !important;
    min-width: 88px !important;
    height: 76px !important;
    min-height: 76px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgb(246, 248, 251) !important;
}

.home-dashboard.desktop-theme-showcase .project-button .showcase-project-thumb,
.home-dashboard.desktop-theme-showcase .project-button img.showcase-project-thumb,
.home-dashboard.desktop-theme-showcase .project-art-wrap img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 14px !important;
    clip-path: inset(0 round 14px) !important;
    display: block !important;
    image-rendering: auto !important;
    filter: none !important;
}

.home-dashboard.desktop-theme-showcase .project-button .project-text {
    min-width: 0 !important;
}

/* Hover sólido y por encima, sin tocar tamaños reales del layout */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:hover,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:focus-visible,
.home-dashboard.desktop-theme-showcase .project-button:hover,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible {
    background: rgb(250, 252, 255) !important;
    background-color: rgb(250, 252, 255) !important;
    opacity: 1 !important;
    transform: scale(1.5) !important;
    transform-origin: center center !important;
    z-index: 9999 !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:hover::before,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:focus-visible::before,
.home-dashboard.desktop-theme-showcase .project-button:hover::before,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible::before {
    background: rgb(250, 252, 255) !important;
    opacity: 1 !important;
}

.home-dashboard.desktop-theme-showcase .project-button.selected {
    background: #155fad !important;
    background-color: #155fad !important;
    border-color: rgba(8, 70, 145, .74) !important;
}

.home-dashboard.desktop-theme-showcase .project-button.selected .project-art-wrap,
.home-dashboard.desktop-theme-showcase .project-button.selected .showcase-art-wrap {
    background: #eaf3ff !important;
}


/* ============================================================
   V_376 - Misma medida de boton: crece solo la imagen
   Descripciones visibles fuera; descripciones en tooltip nativo.
   Desktop / WEB+ Pantalla Web
   ============================================================ */

/* No se cambia el ancho, alto ni padding del boton superior.
   Solo se usa el espacio de la descripcion para ampliar la imagen. */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button {
    grid-template-rows: 100px 22px 0 !important;
    gap: 3px !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button small,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button small,
.home-dashboard.desktop-theme-showcase .project-button .project-text small {
    display: none !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-button .action-card-image,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button .action-card-image,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button > img.action-card-image {
    width: 100% !important;
    max-width: 100% !important;
    height: 100px !important;
    max-height: 100px !important;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 0 !important;
    margin: 0 !important;
    image-rendering: auto !important;
    filter: none !important;
    transform: none !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button strong,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button strong {
    grid-row: 2 !important;
    margin: 0 !important;
}

/* No se cambia el tamano exterior del boton de proyecto.
   Solo se pasa espacio de descripcion a la imagen. */
.home-dashboard.desktop-theme-showcase .project-button {
    grid-template-columns: 112px 1fr !important;
}

.home-dashboard.desktop-theme-showcase .project-button .project-art-wrap,
.home-dashboard.desktop-theme-showcase .project-button .showcase-art-wrap {
    width: 112px !important;
    min-width: 112px !important;
    height: 84px !important;
    min-height: 84px !important;
    max-height: 84px !important;
}

.home-dashboard.desktop-theme-showcase .project-button .showcase-project-thumb,
.home-dashboard.desktop-theme-showcase .project-button img.showcase-project-thumb,
.home-dashboard.desktop-theme-showcase .project-art-wrap img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    image-rendering: auto !important;
    filter: none !important;
    transform: none !important;
}

.home-dashboard.desktop-theme-showcase .project-button .project-text {
    justify-content: center !important;
    gap: 0 !important;
}

.home-dashboard.desktop-theme-showcase .project-button .project-text strong {
    margin: 0 !important;
}


/* ============================================================
   V_377 - Ajustes ligeros Desktop / WEB+
   1) Botones superiores 16px hacia abajo.
   2) Proyectos sin hover grande para no estorbar scroll vertical.
   ============================================================ */

/* Mover visualmente cada boton superior 16px hacia abajo sin cambiar layout. */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button {
    position: relative !important;
    top: 16px !important;
}

/* Mantener hover grande solamente en botones superiores. */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:hover,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:focus-visible,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button:hover,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button:focus-visible {
    transform: scale(1.5) !important;
    transform-origin: center center !important;
    z-index: 9999 !important;
}

/* Quitar crecimiento/overlay grande de Proyectos para permitir scroll vertical limpio. */
.home-dashboard.desktop-theme-showcase .project-button:hover,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible {
    transform: none !important;
    z-index: 2 !important;
    position: relative !important;
    box-shadow: 0 10px 22px rgba(70, 86, 108, .14) !important;
}

/* Dejar el hover de Proyectos sólido pero normal, sin invadir capas. */
.home-dashboard.desktop-theme-showcase .project-button:hover::before,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible::before {
    opacity: 1 !important;
}


/* ============================================================
   V_378 - Botones superiores: contenedor de imagen +16px
   Mantener posicion V_377 y Proyectos sin hover grande.
   Desktop / WEB+ Pantalla Web
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button {
    grid-template-rows: 116px 22px 0 !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-button .action-card-image,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button .action-card-image,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button > img.action-card-image {
    height: 116px !important;
    max-height: 116px !important;
    object-fit: contain !important;
    object-position: center center !important;
}

.home-dashboard.desktop-theme-showcase .project-button:hover,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible {
    transform: none !important;
    z-index: 2 !important;
}


/* ============================================================
   V_379 - Subir 22px los botones superiores desde la posicion V_378
   V_378 tenia top: 16px; subir 22px => top final: -6px.
   Desktop / WEB+ Pantalla Web
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button {
    top: -6px !important;
}


/* ============================================================
   V_380 - Ajustes botones superiores WEB+
   1) Solo títulos 8px hacia arriba.
   2) Hover superior de 50% a 30%: scale(1.3).
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button strong,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button strong {
    position: relative !important;
    top: -8px !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:hover,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button:focus-visible,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button:hover,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button:focus-visible {
    transform: scale(1.3) !important;
    transform-origin: center center !important;
    z-index: 9999 !important;
}


/* ============================================================
   V_381 - Ajustes finos WEB+
   1) Bajar 3px solo títulos superiores desde V_380.
   2) Aumentar 40% títulos de Proyectos.
   3) Restaurar/asegurar scroll vertical en primera columna.
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button strong,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button strong {
    position: relative !important;
    top: -5px !important;
}

.home-dashboard.desktop-theme-showcase .project-button .project-text strong,
.home-dashboard.desktop-theme-showcase .project-text strong {
    font-size: 22.4px !important;
    line-height: 1.08 !important;
    font-weight: 700 !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one .project-button-frame,
.home-dashboard.desktop-theme-showcase .project-button-frame {
    overflow: hidden !important;
    min-height: 0 !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one .project-scroll,
.home-dashboard.desktop-theme-showcase .project-scroll {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    max-height: 100% !important;
    min-height: 0 !important;
    overscroll-behavior: contain !important;
    scrollbar-gutter: stable !important;
    padding-right: 8px !important;
}

.home-dashboard.desktop-theme-showcase .project-button:hover,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible {
    transform: none !important;
    z-index: 2 !important;
}


/* ============================================================
   V_382 - Segunda columna WEB+: quitar doble contenedor visual
   Mantiene el panel exterior y deja el contenedor interno limpio.
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-main-row > .desktop-panel-two > .panel-three-main,
.home-dashboard.desktop-theme-showcase .desktop-panel-two > .panel-three-main,
.home-dashboard.desktop-theme-showcase section.desktop-panel-two > .panel-three-main {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.home-dashboard.desktop-theme-showcase .desktop-main-row > .desktop-panel-two > .panel-three-main::before,
.home-dashboard.desktop-theme-showcase .desktop-panel-two > .panel-three-main::before,
.home-dashboard.desktop-theme-showcase section.desktop-panel-two > .panel-three-main::before,
.home-dashboard.desktop-theme-showcase .desktop-main-row > .desktop-panel-two > .panel-three-main::after,
.home-dashboard.desktop-theme-showcase .desktop-panel-two > .panel-three-main::after,
.home-dashboard.desktop-theme-showcase section.desktop-panel-two > .panel-three-main::after {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    opacity: 0 !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-two {
    background: #ffffff !important;
    border: 1px solid rgba(11, 115, 255, .14) !important;
    box-shadow: 0 12px 28px rgba(19, 55, 107, .07) !important;
}


/* ============================================================
   V_383 - Bajar 6px descripciones de títulos columnas 1 y 2
   Desktop / WEB+ Pantalla Web
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title p,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title p {
    position: relative !important;
    top: 6px !important;
}


/* ============================================================
   V_384 - Reparar recorte de descendentes en descripciones
   Columnas 1 y 2 / Desktop WEB+
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title {
    overflow: visible !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title > div,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title > div {
    overflow: visible !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title p,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title p {
    line-height: 1.55 !important;
    min-height: 24px !important;
    height: auto !important;
    padding-bottom: 5px !important;
    margin-bottom: -5px !important;
    overflow: visible !important;
    text-overflow: clip !important;
}


/* ============================================================
   V_385 - Corrección real del recorte de y/g sin separar más
   Columnas 1 y 2 / Desktop WEB+
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title,
.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title > div,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title > div {
    overflow: visible !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title > div,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title > div {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding-bottom: 2px !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title p,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title p {
    position: static !important;
    top: auto !important;
    transform: none !important;
    display: block !important;
    margin: 1px 0 0 0 !important;
    padding: 0 0 2px 0 !important;
    height: 21px !important;
    min-height: 21px !important;
    max-height: none !important;
    line-height: 20px !important;
    overflow: visible !important;
    white-space: nowrap !important;
    text-overflow: clip !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: initial !important;
    clip-path: none !important;
}


/* ============================================================
   V_386 - Encabezado columna 2 sin marquito y descenders sin corte
   Desktop / WEB+ Pantalla Web
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title > div {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    clip-path: none !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title::before,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title::after,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title > div::before,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title > div::after {
    content: none !important;
    display: none !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title,
.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title > div,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title > div {
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    clip-path: none !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title p,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title p {
    position: static !important;
    top: auto !important;
    transform: none !important;
    display: block !important;
    height: auto !important;
    min-height: 22px !important;
    max-height: none !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    padding: 0 0 4px 0 !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: initial !important;
    clip-path: none !important;
}


/* ============================================================
   V_387 - Corrección fuerte de descenders y/p/q/g en subtítulos
   Columnas 1 y 2 / Desktop WEB+
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title,
.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title > div,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title > div {
    overflow: visible !important;
    clip-path: none !important;
    contain: none !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title h2,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title h2 {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.02 !important;
    overflow: visible !important;
    clip-path: none !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title p,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title p,
.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title .title-description-safe,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title .title-description-safe {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    height: 28px !important;
    min-height: 28px !important;
    max-height: none !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    transform: none !important;
    margin: 0 0 -8px 0 !important;
    padding: 1px 0 7px 0 !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
    clip-path: none !important;
    contain: none !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: initial !important;
}


/* ============================================================
   V_388 - Bajar 2px solo la descripcion del titulo de primera columna
   Desktop / WEB+ Pantalla Web
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title p,
.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title .title-description-safe {
    position: relative !important;
    top: 2px !important;
    overflow: visible !important;
    clip-path: none !important;
    contain: none !important;
}


/* ============================================================
   V_389 - Bajar otros 2px la descripcion del titulo de primera columna
   Desktop / WEB+ Pantalla Web
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title p,
.home-dashboard.desktop-theme-showcase .desktop-panel-one .projects-title .title-description-safe {
    top: 4px !important;
}


/* ============================================================
   V_390 - Subir 4px titulo y descripcion de segunda columna
   Desktop / WEB+ Pantalla Web
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title {
    position: relative !important;
    top: -4px !important;
}
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title h2,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title p,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title .title-description-safe {
    position: relative !important;
    top: 0 !important;
    overflow: visible !important;
    clip-path: none !important;
    contain: none !important;
}


/* ============================================================
   V_391 - Subir otros 2px titulo y descripcion de segunda columna
   Desktop / WEB+ Pantalla Web
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-panel-two .content-title {
    position: relative !important;
    top: -6px !important;
}


/* ============================================================
   V_393 - Correccion: subir el marco completo del video con fotogramas
   Desktop / WEB+ Pantalla Web
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-panel-two .project-video-detail-layout {
    position: relative !important;
    top: -20px !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-two .video-detail-row,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .video-detail-media-col,
.home-dashboard.desktop-theme-showcase .desktop-panel-two .real-video-area {
    top: auto !important;
}


/* ============================================================
   V_394 - Bajar 10px el panel derecho completo junto con su marco
   Desktop / WEB+ Pantalla Web
   ============================================================ */
.home-dashboard.desktop-theme-showcase .video-detail-info-col {
    position: relative !important;
    top: 10px !important;
}


/* ============================================================
   V_395 - Hover 3D premium para botones de Proyectos
   Sin scale, sin crecer y sin afectar scroll vertical.
   Desktop / WEB+ Pantalla Web
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-panel-one .project-button,
.home-dashboard.desktop-theme-showcase .project-button {
    position: relative !important;
    overflow: hidden !important;
    transition: box-shadow .18s ease, border-color .18s ease, background .18s ease, filter .18s ease !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one .project-button:hover,
.home-dashboard.desktop-theme-showcase .desktop-panel-one .project-button:focus-visible,
.home-dashboard.desktop-theme-showcase .project-button:hover,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible {
    transform: none !important;
    scale: 1 !important;
    z-index: 3 !important;
    background: linear-gradient(180deg, #ffffff 0%, #eef5fc 48%, #dfeaf6 100%) !important;
    border-color: rgba(10, 96, 196, .62) !important;
    box-shadow:
        0 11px 20px rgba(32, 68, 112, .20),
        0 2px 0 rgba(255, 255, 255, .95) inset,
        0 -3px 0 rgba(88, 120, 156, .22) inset,
        3px 0 0 rgba(255, 255, 255, .72) inset,
        -3px 0 0 rgba(44, 92, 145, .14) inset,
        0 0 0 2px rgba(11, 115, 255, .24) !important;
    filter: none !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one .project-button:hover::before,
.home-dashboard.desktop-theme-showcase .desktop-panel-one .project-button:focus-visible::before,
.home-dashboard.desktop-theme-showcase .project-button:hover::before,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible::before {
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(235,244,253,.98) 48%, rgba(216,231,247,.98) 100%) !important;
    opacity: 1 !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one .project-button:hover::after,
.home-dashboard.desktop-theme-showcase .desktop-panel-one .project-button:focus-visible::after,
.home-dashboard.desktop-theme-showcase .project-button:hover::after,
.home-dashboard.desktop-theme-showcase .project-button:focus-visible::after {
    content: "" !important;
    position: absolute !important;
    inset: 3px !important;
    border-radius: inherit !important;
    pointer-events: none !important;
    border-top: 1px solid rgba(255,255,255,.92) !important;
    border-left: 1px solid rgba(255,255,255,.82) !important;
    border-right: 1px solid rgba(44, 93, 150, .18) !important;
    border-bottom: 1px solid rgba(44, 93, 150, .26) !important;
    box-shadow: 0 0 0 1px rgba(11,115,255,.12) inset !important;
}

.home-dashboard.desktop-theme-showcase .project-button.selected:hover,
.home-dashboard.desktop-theme-showcase .project-button.selected:focus-visible {
    background: linear-gradient(180deg, #1b73c9 0%, #135fac 55%, #0d4c91 100%) !important;
    border-color: rgba(255, 255, 255, .72) !important;
    box-shadow:
        0 12px 22px rgba(6, 62, 128, .30),
        0 2px 0 rgba(255,255,255,.36) inset,
        0 -3px 0 rgba(4, 38, 87, .34) inset,
        0 0 0 2px rgba(255,255,255,.40) !important;
}


/* ============================================================
   V_400 - Primer botón con redondeo tipo "Mi Portada"
   Base visual: V_396. Se descartan visualmente V_397, V_398 y V_399.
   Objetivo: que la imagen del primer botón se vea como una foto/tarjeta
   redondeada bonita, no truncada y no invisible.
   Desktop / WEB+ showcase / primer botón de primera columna.
   ============================================================ */
.home-dashboard.desktop-theme-showcase .desktop-panel-one .project-button.project-skin-singularity .project-art-wrap,
.home-dashboard.desktop-theme-showcase .desktop-panel-one .project-button.project-skin-singularity .showcase-art-wrap {
    border-radius: 22px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    padding: 0 !important;
}

.home-dashboard.desktop-theme-showcase .desktop-panel-one .project-button.project-skin-singularity .showcase-project-thumb.project-thumb-cover-rounded-v400,
.home-dashboard.desktop-theme-showcase .desktop-panel-one .project-button.project-skin-singularity img.showcase-project-thumb.project-thumb-cover-rounded-v400 {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 22px !important;
    clip-path: none !important;
    display: block !important;
}


/* ============================================================
   V_403 - WEB+ usa exactamente el modelo visual de SCI
   para "Estamos trabajando"
   Base: V_402 / V_400 aprobada.
   Regla:
   - No se cambia texto dinámico.
   - No se cambia la imagen.
   - No se toca Mobile/Tablet ni otros temas.
   - Se replica en WEB+ el estilo real que ya existe en SCI
     para todos los llamados a "Estamos trabajando":
       1) placeholder dentro del panel de proyecto seleccionado.
       2) modal abierto desde botones superiores.
   ============================================================ */

/* Placeholder dentro del panel de proyecto seleccionado en WEB+ */
.home-dashboard.desktop-theme-showcase .panel-three-main.placeholder-mode {
    display: block !important;
}

.home-dashboard.desktop-theme-showcase .work-placeholder {
    width: 100% !important;
    height: 100% !important;
    min-height: initial !important;
    display: grid !important;
    place-items: center !important;
    padding: 15px !important;
}

.home-dashboard.desktop-theme-showcase .work-placeholder-inner {
    width: min(615px, 100%) !important;
    max-width: none !important;
    min-height: 390px !important;
    border: 0.75px solid rgba(82, 125, 176, .36) !important;
    border-radius: 16.5px !important;
    background: linear-gradient(180deg, #d7e4f1 0%, #bfcedd 100%) !important;
    display: grid !important;
    place-items: center !important;
    justify-items: center !important;
    gap: 7.5px !important;
    text-align: center !important;
    padding: 25.5px 18px 21px !important;
    box-shadow: 0 14px 30px rgba(39, 68, 108, .18), inset 0 1px 0 rgba(255,255,255,.42) !important;
    color: #173456 !important;
}

.home-dashboard.desktop-theme-showcase .work-placeholder-inner h3 {
    margin: 0 !important;
    color: #0a4faa !important;
    font-size: 28.5px !important;
    line-height: 1.1 !important;
    font-weight: 650 !important;
    text-shadow: none !important;
}

.home-dashboard.desktop-theme-showcase .work-placeholder-inner p {
    width: min(480px, 100%) !important;
    margin: 0 !important;
    color: #38536f !important;
    font-size: 16.5px !important;
    line-height: 1.45 !important;
    text-shadow: none !important;
}

.home-dashboard.desktop-theme-showcase .work-placeholder-inner p strong {
    color: #075bd8 !important;
    font-weight: 700 !important;
}

.home-dashboard.desktop-theme-showcase .work-placeholder .working-image-frame {
    width: min(225px, 100%) !important;
    display: grid !important;
    place-items: center !important;
    border: 0.75px solid rgba(82, 125, 176, .34) !important;
    border-radius: 15px !important;
    background: linear-gradient(180deg, #e6eef7 0%, #cad8e8 100%) !important;
    padding: 10.5px !important;
    margin: 0 !important;
    box-shadow: 0 10px 24px rgba(42, 64, 92, .16), inset 0 1px 0 rgba(255,255,255,.45) !important;
    overflow: hidden !important;
}

.home-dashboard.desktop-theme-showcase .work-placeholder .working-image {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 10px !important;
    clip-path: none !important;
    display: block !important;
    transform: none !important;
    filter: none !important;
}

/* Modal "Estamos trabajando" en WEB+ con el mismo modelo visual SCI */
.work-modal-backdrop.desktop-theme-showcase {
    position: fixed !important;
    inset: 0 !important;
    z-index: 5100 !important;
    display: grid !important;
    place-items: center !important;
    padding: 36px !important;
    background: rgba(0, 0, 0, .68) !important;
    backdrop-filter: blur(3px) !important;
}

.work-modal-backdrop.desktop-theme-showcase .work-modal,
.work-modal-backdrop.desktop-theme-showcase .work-modal.branded-modal {
    position: relative !important;
    width: min(675px, calc(100vw - 72px)) !important;
    max-height: calc(100vh - 72px) !important;
    padding: 0 !important;
    border: 1.5px solid #ffbf00 !important;
    border-radius: 13.5px !important;
    background: linear-gradient(180deg, rgba(13, 20, 31, .97), rgba(5, 10, 17, .98)) !important;
    color: #f4f6fb !important;
    box-shadow: 0 0 9px rgba(255, 191, 0, .55),
                0 0 21px rgba(255, 115, 0, .35),
                inset 0 0 13.5px rgba(255, 191, 0, .10) !important;
    overflow: hidden !important;
}

.work-modal-backdrop.desktop-theme-showcase .modal-work-placeholder {
    width: 100% !important;
    height: auto !important;
    min-height: 450px !important;
    padding: 58px 24px 24px !important;
}

.work-modal-backdrop.desktop-theme-showcase .modal-work-placeholder .work-placeholder-inner {
    width: min(440px, calc(100vw - 48px)) !important;
    max-width: none !important;
    min-height: 0 !important;
    border: 0.75px solid rgba(82, 125, 176, .36) !important;
    border-radius: 16.5px !important;
    background: linear-gradient(180deg, #d7e4f1 0%, #bfcedd 100%) !important;
    display: grid !important;
    place-items: center !important;
    justify-items: center !important;
    gap: 8px !important;
    text-align: center !important;
    padding: 16px 12px 14px !important;
    box-shadow: 0 14px 30px rgba(39, 68, 108, .18), inset 0 1px 0 rgba(255,255,255,.42) !important;
    color: #173456 !important;
}

.work-modal-backdrop.desktop-theme-showcase .modal-work-placeholder .work-placeholder-inner h3 {
    margin: 0 !important;
    color: #0a4faa !important;
    font-size: clamp(20px, 3vw, 28px) !important;
    line-height: 1.1 !important;
    font-weight: 650 !important;
    text-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .modal-work-placeholder .work-placeholder-inner p {
    width: min(480px, 100%) !important;
    margin: 0 !important;
    color: #38536f !important;
    font-size: clamp(12px, 1.7vw, 16px) !important;
    line-height: 1.35 !important;
    text-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .modal-work-placeholder .work-placeholder-inner p strong {
    color: #075bd8 !important;
    font-weight: 700 !important;
}

.work-modal-backdrop.desktop-theme-showcase .modal-work-placeholder .working-image-frame {
    width: min(360px, 92vw) !important;
    display: grid !important;
    place-items: center !important;
    border: 0.75px solid rgba(82, 125, 176, .34) !important;
    border-radius: 15px !important;
    background: linear-gradient(180deg, #e6eef7 0%, #cad8e8 100%) !important;
    padding: 3px !important;
    margin: 0 !important;
    box-shadow: 0 10px 24px rgba(42, 64, 92, .16), inset 0 1px 0 rgba(255,255,255,.45) !important;
    overflow: hidden !important;
}

.work-modal-backdrop.desktop-theme-showcase .modal-work-placeholder .working-image {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 10px !important;
    clip-path: none !important;
    display: block !important;
    transform: none !important;
    filter: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .work-modal-close {
    position: absolute !important;
    right: 12px !important;
    top: 12px !important;
    z-index: 4 !important;
    width: 36px !important;
    height: 36px !important;
    border: 0.75px solid rgba(255, 191, 0, .72) !important;
    border-radius: 7.5px !important;
    background: rgba(54, 35, 5, .30) !important;
    color: #ffd56a !important;
    font-size: 27px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    display: grid !important;
    place-items: center !important;
    box-shadow: 0 0 7.5px rgba(255, 191, 0, .22), inset 0 0 7.5px rgba(255, 191, 0, .08) !important;
}

.work-modal-backdrop.desktop-theme-showcase .work-modal-close:hover,
.work-modal-backdrop.desktop-theme-showcase .work-modal-close:focus-visible {
    border-color: rgba(255, 191, 0, .95) !important;
    box-shadow: 0 0 9px rgba(255, 191, 0, .32), inset 0 0 12px rgba(255, 191, 0, .08) !important;
    outline: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .modal-brand-logo {
    filter: drop-shadow(0 0 10px rgba(255, 191, 0, .28)) !important;
    opacity: 1 !important;
}


/* ============================================================
   V_408 - Web+ botones superiores usan el MISMO lugar que
   los botones de la primera columna para "Estamos trabajando".
   No se copia CSS ni se abre otro modal: Noticias/Licencia/Tienda
   se muestran en el panel del proyecto seleccionado usando el
   work-placeholder existente.
   ============================================================ */


/* ============================================================
   V_409 - WEB+ Ventana de Marcas limpia y centrada
   Base: V_408 aprobada.
   Objetivo:
   - Quitar vestigios SCI/SciFi de la ventana de Marcas en Web+.
   - Centrar correctamente modal, aviso y parrilla de logos.
   - Mantener solo estética Web+ blanco/azul.
   - No tocar Mobile/Tablet ni otros temas.
   ============================================================ */
.work-modal-backdrop.desktop-theme-showcase:has(> .brands-modal),
.work-modal-backdrop.desktop-theme-showcase {
    /* La regla general queda igual; los cambios fuertes están acotados a .brands-modal. */
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal,
.work-modal-backdrop.desktop-theme-showcase > .work-modal.brands-modal,
.work-modal-backdrop.desktop-theme-showcase > .work-modal.detached-panel-modal.brands-modal {
    position: relative !important;
    width: min(720px, calc(100vw - 72px)) !important;
    max-width: min(720px, calc(100vw - 72px)) !important;
    max-height: calc(100vh - 72px) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    border: 1px solid rgba(11, 115, 255, .20) !important;
    border-radius: 20px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%) !important;
    color: #0b1b3a !important;
    box-shadow: 0 26px 60px rgba(19, 65, 132, .18), inset 0 1px 0 rgba(255,255,255,.80) !important;
    overflow: hidden !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .modal-brand-badge {
    top: 14px !important;
    left: 18px !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .modal-brand-logo {
    filter: none !important;
    opacity: .95 !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .work-modal-close {
    top: 14px !important;
    right: 14px !important;
    width: 36px !important;
    height: 36px !important;
    border: 1px solid rgba(11, 115, 255, .28) !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #0b73ff !important;
    box-shadow: 0 8px 18px rgba(11, 115, 255, .12) !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .detached-panel-title {
    width: 100% !important;
    margin: 0 !important;
    padding: 22px 76px 8px 116px !important;
    color: #0a3f95 !important;
    font-size: 26px !important;
    line-height: 1.1 !important;
    font-weight: 650 !important;
    text-align: center !important;
    text-shadow: none !important;
    letter-spacing: .01em !important;
    background: transparent !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .panel-five.panel-detached-content,
.work-modal-backdrop.desktop-theme-showcase > .brands-modal aside.panel-five.panel-detached-content {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100vh - 132px) !important;
    margin: 0 auto !important;
    padding: 8px 24px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #0b1b3a !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .panel-five-spacer {
    display: none !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .matrix-disclaimer {
    flex: 0 0 auto !important;
    width: min(560px, 100%) !important;
    max-width: min(560px, 100%) !important;
    margin: 0 auto !important;
    padding: 14px 18px !important;
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    text-align: center !important;
    border: 1px solid rgba(11, 115, 255, .16) !important;
    border-radius: 16px !important;
    background: linear-gradient(180deg, #f8fbff 0%, #eaf4ff 100%) !important;
    color: #51647f !important;
    box-shadow: 0 12px 26px rgba(19, 65, 132, .10), inset 0 1px 0 rgba(255,255,255,.75) !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .matrix-disclaimer h2 {
    margin: 0 !important;
    color: #0a3f95 !important;
    font-size: 20px !important;
    line-height: 1.12 !important;
    font-weight: 650 !important;
    text-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .matrix-disclaimer p {
    width: min(510px, 100%) !important;
    margin: 0 !important;
    color: #51647f !important;
    font-size: 13.5px !important;
    line-height: 1.38 !important;
    text-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .brand-panel.empty-logo-panel,
.work-modal-backdrop.desktop-theme-showcase > .brands-modal section.brand-panel.empty-logo-panel {
    flex: 0 0 auto !important;
    width: min(560px, 100%) !important;
    max-width: min(560px, 100%) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 auto !important;
    padding: 16px !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid rgba(11, 115, 255, .16) !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%) !important;
    color: #0b1b3a !important;
    box-shadow: 0 14px 30px rgba(19, 65, 132, .10), inset 0 1px 0 rgba(255,255,255,.78) !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .empty-logo-grid,
.work-modal-backdrop.desktop-theme-showcase > .brands-modal .brand-scroll.empty-logo-grid {
    width: 375px !important;
    min-width: 375px !important;
    max-width: 375px !important;
    height: 525px !important;
    min-height: 525px !important;
    max-height: 525px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(5, 75px) !important;
    grid-template-rows: repeat(5, 75px) !important;
    gap: 0 !important;
    align-content: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    border: 1px solid #d9e4f2 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    scrollbar-color: rgba(11, 115, 255, .36) #f2f8ff !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .empty-logo-button {
    width: 75px !important;
    height: 75px !important;
    min-width: 75px !important;
    min-height: 75px !important;
    max-width: 75px !important;
    max-height: 75px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid #d9e4f2 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    display: block !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    pointer-events: none !important;
    cursor: default !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .empty-logo-button:hover,
.work-modal-backdrop.desktop-theme-showcase > .brands-modal .empty-logo-button:focus-visible,
.work-modal-backdrop.desktop-theme-showcase > .brands-modal .empty-logo-button:active {
    transform: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: #ffffff !important;
    border-color: #d9e4f2 !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .empty-logo-image {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    background: #ffffff !important;
    filter: none !important;
    opacity: 1 !important;
    pointer-events: none !important;
    user-select: none !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .empty-logo-panel::after,
.work-modal-backdrop.desktop-theme-showcase > .brands-modal .brand-panel::after {
    content: none !important;
    display: none !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal * {
    text-shadow: none !important;
}

@media (max-height: 760px) {
    .work-modal-backdrop.desktop-theme-showcase > .brands-modal .empty-logo-grid,
    .work-modal-backdrop.desktop-theme-showcase > .brands-modal .brand-scroll.empty-logo-grid {
        height: 375px !important;
        min-height: 375px !important;
        max-height: 375px !important;
        overflow-y: auto !important;
    }
}

@media (max-width: 620px) {
    .work-modal-backdrop.desktop-theme-showcase > .brands-modal,
    .work-modal-backdrop.desktop-theme-showcase > .work-modal.brands-modal {
        width: calc(100vw - 24px) !important;
        max-width: calc(100vw - 24px) !important;
    }

    .work-modal-backdrop.desktop-theme-showcase > .brands-modal .detached-panel-title {
        padding-left: 88px !important;
        padding-right: 58px !important;
        font-size: 22px !important;
    }

    .work-modal-backdrop.desktop-theme-showcase > .brands-modal .empty-logo-grid,
    .work-modal-backdrop.desktop-theme-showcase > .brands-modal .brand-scroll.empty-logo-grid {
        width: 300px !important;
        min-width: 300px !important;
        max-width: 300px !important;
        grid-template-columns: repeat(4, 75px) !important;
        height: 450px !important;
        min-height: 450px !important;
        max-height: 450px !important;
        overflow-y: auto !important;
    }
}


/* ============================================================
   V_410 - WEB+ Marcas: matriz exacta 21 marcas = 7 x 3
   Base: V_409.
   Objetivo:
   - 21 logos exactos sin espacio sobrante arriba/abajo.
   - 7 columnas x 3 filas.
   - Cada celda conserva 75px x 75px.
   - Solo ventana Marcas en tema Web+.
   ============================================================ */
.work-modal-backdrop.desktop-theme-showcase > .brands-modal .brand-panel.empty-logo-panel,
.work-modal-backdrop.desktop-theme-showcase > .brands-modal section.brand-panel.empty-logo-panel {
    width: 527px !important;
    min-width: 527px !important;
    max-width: 527px !important;
    height: 227px !important;
    min-height: 227px !important;
    max-height: 227px !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .empty-logo-grid,
.work-modal-backdrop.desktop-theme-showcase > .brands-modal .brand-scroll.empty-logo-grid {
    width: 525px !important;
    min-width: 525px !important;
    max-width: 525px !important;
    height: 225px !important;
    min-height: 225px !important;
    max-height: 225px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(7, 75px) !important;
    grid-template-rows: repeat(3, 75px) !important;
    gap: 0 !important;
    align-content: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .empty-logo-button {
    width: 75px !important;
    height: 75px !important;
    min-width: 75px !important;
    min-height: 75px !important;
    max-width: 75px !important;
    max-height: 75px !important;
}

/* En Desktop Web+ se mantiene 7x3; se neutraliza el ajuste responsive de V_409. */
@media (max-width: 620px) {
    .work-modal-backdrop.desktop-theme-showcase > .brands-modal .brand-panel.empty-logo-panel,
    .work-modal-backdrop.desktop-theme-showcase > .brands-modal section.brand-panel.empty-logo-panel {
        width: 527px !important;
        min-width: 527px !important;
        max-width: 527px !important;
        height: 227px !important;
        min-height: 227px !important;
        max-height: 227px !important;
    }

    .work-modal-backdrop.desktop-theme-showcase > .brands-modal .empty-logo-grid,
    .work-modal-backdrop.desktop-theme-showcase > .brands-modal .brand-scroll.empty-logo-grid {
        width: 525px !important;
        min-width: 525px !important;
        max-width: 525px !important;
        height: 225px !important;
        min-height: 225px !important;
        max-height: 225px !important;
        grid-template-columns: repeat(7, 75px) !important;
        grid-template-rows: repeat(3, 75px) !important;
        overflow: hidden !important;
    }
}

@media (max-height: 760px) {
    .work-modal-backdrop.desktop-theme-showcase > .brands-modal .empty-logo-grid,
    .work-modal-backdrop.desktop-theme-showcase > .brands-modal .brand-scroll.empty-logo-grid {
        height: 225px !important;
        min-height: 225px !important;
        max-height: 225px !important;
        grid-template-rows: repeat(3, 75px) !important;
        overflow: hidden !important;
    }
}


/* ============================================================
   V_411 - WEB+ Marcas: recorte de altura inferior
   Base: V_410.
   Objetivo:
   - La matriz 7x3 queda igual.
   - La ventana deja solo 20px debajo de la matriz.
   - Se elimina el exceso de altura inferior.
   - Solo ventana Marcas en tema Web+.
   ============================================================ */
.work-modal-backdrop.desktop-theme-showcase > .brands-modal,
.work-modal-backdrop.desktop-theme-showcase > .work-modal.brands-modal,
.work-modal-backdrop.desktop-theme-showcase > .work-modal.detached-panel-modal.brands-modal {
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100vh - 72px) !important;
    justify-content: flex-start !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .detached-panel-title {
    flex: 0 0 auto !important;
    padding-bottom: 8px !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .panel-five.panel-detached-content,
.work-modal-backdrop.desktop-theme-showcase > .brands-modal aside.panel-five.panel-detached-content {
    flex: 0 0 auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding-top: 8px !important;
    padding-bottom: 20px !important;
    gap: 14px !important;
    justify-content: flex-start !important;
    overflow: visible !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .matrix-disclaimer {
    flex: 0 0 auto !important;
    margin-bottom: 0 !important;
}

.work-modal-backdrop.desktop-theme-showcase > .brands-modal .brand-panel.empty-logo-panel,
.work-modal-backdrop.desktop-theme-showcase > .brands-modal section.brand-panel.empty-logo-panel {
    flex: 0 0 auto !important;
    margin-bottom: 0 !important;
}

/* La matriz conserva exactamente 7 columnas x 3 filas sin crecer. */
.work-modal-backdrop.desktop-theme-showcase > .brands-modal .empty-logo-grid,
.work-modal-backdrop.desktop-theme-showcase > .brands-modal .brand-scroll.empty-logo-grid {
    flex: 0 0 auto !important;
    height: 225px !important;
    min-height: 225px !important;
    max-height: 225px !important;
    margin-bottom: 0 !important;
    overflow: hidden !important;
}


/* ============================================================
   V_412 - Registro: limpieza visual Web+ sin invadir SCI
   Base: V_411 aprobada.
   Objetivo:
   - Quitar vestigios SCI/SciFi en la página/ventana Registro cuando
     el tema guardado es Web+ / showcase.
   - No modificar SCI ni otros temas: todo queda acotado a
     .registration-page.registration-theme-showcase.
   ============================================================ */
.registration-page.registration-theme-showcase {
    width: min(920px, calc(100% - 36px)) !important;
    margin: 0 auto !important;
    padding: 30px 0 46px !important;
    color: #0b1b3a !important;
    box-sizing: border-box !important;
}

.registration-page.registration-theme-showcase .page-header,
.registration-page.registration-theme-showcase .registration-page-header {
    width: min(780px, 100%) !important;
    max-width: min(780px, 100%) !important;
    margin: 0 auto 16px !important;
    padding: 18px 22px !important;
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    text-align: center !important;
    border: 1px solid rgba(11, 115, 255, .16) !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%) !important;
    box-shadow: 0 16px 34px rgba(19, 65, 132, .12), inset 0 1px 0 rgba(255,255,255,.82) !important;
    color: #0b1b3a !important;
}

.registration-page.registration-theme-showcase .page-header .eyebrow,
.registration-page.registration-theme-showcase .registration-page-header .eyebrow {
    margin: 0 !important;
    color: #0b73ff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    text-shadow: none !important;
}

.registration-page.registration-theme-showcase .page-header h1,
.registration-page.registration-theme-showcase .registration-page-header h1 {
    margin: 0 !important;
    color: #0a3f95 !important;
    font-size: clamp(2.2rem, 5vw, 4.4rem) !important;
    line-height: .98 !important;
    font-weight: 650 !important;
    letter-spacing: -.035em !important;
    text-shadow: none !important;
}

.registration-page.registration-theme-showcase .page-header p,
.registration-page.registration-theme-showcase .registration-page-header p {
    width: min(680px, 100%) !important;
    margin: 0 !important;
    color: #51647f !important;
    font-size: 16px !important;
    line-height: 1.42 !important;
    text-shadow: none !important;
}

.registration-page.registration-theme-showcase .return-to-caller-row {
    width: min(780px, 100%) !important;
    margin: 0 auto 14px !important;
    justify-content: flex-start !important;
}

.registration-page.registration-theme-showcase .return-to-caller-button,
.registration-page.registration-theme-showcase a.return-to-caller-button {
    min-height: 34px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(11, 115, 255, .22) !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #0b73ff !important;
    box-shadow: 0 8px 18px rgba(11, 115, 255, .10) !important;
    text-decoration: none !important;
    text-shadow: none !important;
}

.registration-page.registration-theme-showcase .panel.form-panel,
.registration-page.registration-theme-showcase .registration-form-panel {
    width: min(780px, 100%) !important;
    max-width: min(780px, 100%) !important;
    margin: 0 auto !important;
    padding: 22px 24px 24px !important;
    border: 1px solid rgba(11, 115, 255, .16) !important;
    border-radius: 20px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%) !important;
    color: #0b1b3a !important;
    box-shadow: 0 20px 46px rgba(19, 65, 132, .14), inset 0 1px 0 rgba(255,255,255,.86) !important;
    box-sizing: border-box !important;
}

.registration-page.registration-theme-showcase .form-grid,
.registration-page.registration-theme-showcase .registration-form-grid {
    gap: 14px !important;
}

.registration-page.registration-theme-showcase label {
    color: #0a3f95 !important;
    font-size: 14px !important;
    font-weight: 650 !important;
    line-height: 1.2 !important;
    text-shadow: none !important;
}

.registration-page.registration-theme-showcase input,
.registration-page.registration-theme-showcase textarea {
    width: 100% !important;
    border: 1px solid rgba(11, 115, 255, .22) !important;
    border-radius: 11px !important;
    padding: 10px 12px !important;
    background: #ffffff !important;
    color: #0b1b3a !important;
    box-shadow: inset 0 1px 2px rgba(19, 65, 132, .08) !important;
    outline: none !important;
    text-shadow: none !important;
}

.registration-page.registration-theme-showcase input:focus,
.registration-page.registration-theme-showcase textarea:focus {
    border-color: rgba(11, 115, 255, .58) !important;
    box-shadow: 0 0 0 3px rgba(11, 115, 255, .12), inset 0 1px 2px rgba(19, 65, 132, .08) !important;
}

.registration-page.registration-theme-showcase .checks,
.registration-page.registration-theme-showcase .registration-checks {
    margin: 18px 0 !important;
    gap: 10px !important;
    padding: 14px !important;
    border: 1px solid rgba(11, 115, 255, .13) !important;
    border-radius: 14px !important;
    background: linear-gradient(180deg, #f8fbff 0%, #edf6ff 100%) !important;
}

.registration-page.registration-theme-showcase .checks label,
.registration-page.registration-theme-showcase .registration-checks label {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    color: #51647f !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
}

.registration-page.registration-theme-showcase .checks input,
.registration-page.registration-theme-showcase .registration-checks input {
    width: 17px !important;
    height: 17px !important;
    accent-color: #0b73ff !important;
    box-shadow: none !important;
}

.registration-page.registration-theme-showcase .button-primary,
.registration-page.registration-theme-showcase .registration-submit-button {
    min-height: 38px !important;
    padding: 0 18px !important;
    border: 1px solid rgba(11, 115, 255, .38) !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, #2389ff 0%, #0b73ff 100%) !important;
    color: #ffffff !important;
    cursor: pointer !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    box-shadow: 0 12px 24px rgba(11, 115, 255, .22), inset 0 1px 0 rgba(255,255,255,.24) !important;
    text-shadow: none !important;
}

.registration-page.registration-theme-showcase .button-primary:hover,
.registration-page.registration-theme-showcase .registration-submit-button:hover,
.registration-page.registration-theme-showcase .button-primary:focus-visible,
.registration-page.registration-theme-showcase .registration-submit-button:focus-visible {
    background: linear-gradient(180deg, #3192ff 0%, #096be8 100%) !important;
    box-shadow: 0 14px 28px rgba(11, 115, 255, .26), inset 0 1px 0 rgba(255,255,255,.28) !important;
    outline: none !important;
}

.registration-page.registration-theme-showcase .button-primary:disabled,
.registration-page.registration-theme-showcase .registration-submit-button:disabled {
    opacity: .66 !important;
    cursor: wait !important;
}

.registration-page.registration-theme-showcase .validation-errors,
.registration-page.registration-theme-showcase .validation-message {
    color: #d43b3b !important;
    text-shadow: none !important;
}

.registration-page.registration-theme-showcase .alert {
    margin-top: 16px !important;
    border-radius: 14px !important;
    padding: 12px 14px !important;
    background: #f8fbff !important;
    color: #51647f !important;
    border: 1px solid rgba(11, 115, 255, .16) !important;
    box-shadow: 0 10px 22px rgba(19, 65, 132, .10) !important;
    text-shadow: none !important;
}

.registration-page.registration-theme-showcase .alert.success {
    border-color: rgba(28, 151, 89, .32) !important;
    background: #f1fbf6 !important;
    color: #126b3f !important;
}

.registration-page.registration-theme-showcase .alert.danger {
    border-color: rgba(212, 59, 59, .32) !important;
    background: #fff6f6 !important;
    color: #b32626 !important;
}

.registration-page.registration-theme-showcase .alert.warning {
    border-color: rgba(221, 141, 0, .30) !important;
    background: #fff9ec !important;
    color: #8a5a00 !important;
}

.registration-page.registration-theme-showcase * {
    text-shadow: none !important;
}

@media (max-width: 720px) {
    .registration-page.registration-theme-showcase .form-grid,
    .registration-page.registration-theme-showcase .registration-form-grid {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================================
   V_413 - Registro Web+: quitar fondo negro general
   Base: V_412.
   Objetivo:
   - Mantener la limpieza Web+ de V_412.
   - Cambiar el fondo exterior negro por blanco azulado.
   - No invadir SCI: solo aplica cuando existe Registro Web+.
   ============================================================ */

/* Fondo de toda la página cuando Registro está en Web+ */
html:has(.registration-page.registration-theme-showcase),
body:has(.registration-page.registration-theme-showcase) {
    background: linear-gradient(180deg, #f7fbff 0%, #eaf4ff 52%, #f8fbff 100%) !important;
    color: #0b1b3a !important;
}

/* El contenedor principal ahora cubre todo el ancho visible para tapar el negro exterior */
.registration-page.registration-theme-showcase {
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    min-height: calc(100vh - 1px) !important;
    margin: 0 !important;
    padding: 30px 18px 46px !important;
    background: linear-gradient(180deg, #f7fbff 0%, #eaf4ff 52%, #f8fbff 100%) !important;
    color: #0b1b3a !important;
    box-sizing: border-box !important;
}

/* Evita que paneles globales oscuros o fondos heredados contaminen el Registro Web+ */
.registration-page.registration-theme-showcase::before,
.registration-page.registration-theme-showcase::after {
    content: none !important;
    display: none !important;
}

.registration-page.registration-theme-showcase .registration-page-header,
.registration-page.registration-theme-showcase .registration-form-panel {
    position: relative !important;
    z-index: 1 !important;
}


/* ============================================================
   V_414 - Registro: confirmación de correo y políticas
   Base: V_413.
   Alcance visual:
   - Web+ Registro y Políticas usan blanco/azul.
   - SCI no se invade porque las reglas están acotadas a
     .registration-theme-showcase y .privacy-theme-showcase.
   ============================================================ */
.registration-page.registration-theme-showcase .registration-privacy-row {
    margin: -4px 0 16px !important;
    display: flex !important;
    justify-content: flex-start !important;
}

.registration-page.registration-theme-showcase .registration-privacy-button,
.registration-page.registration-theme-showcase a.registration-privacy-button {
    min-height: 34px !important;
    padding: 0 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(11, 115, 255, .22) !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #0b73ff !important;
    box-shadow: 0 8px 18px rgba(11, 115, 255, .10) !important;
    text-decoration: none !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

.registration-page.registration-theme-showcase .confirmation-result-panel {
    display: grid !important;
    gap: 12px !important;
}

html:has(.privacy-page.privacy-theme-showcase),
body:has(.privacy-page.privacy-theme-showcase) {
    background: linear-gradient(180deg, #f7fbff 0%, #eaf4ff 52%, #f8fbff 100%) !important;
    color: #0b1b3a !important;
}

.privacy-page.privacy-theme-showcase {
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    min-height: calc(100vh - 1px) !important;
    margin: 0 !important;
    padding: 30px 18px 46px !important;
    background: linear-gradient(180deg, #f7fbff 0%, #eaf4ff 52%, #f8fbff 100%) !important;
    color: #0b1b3a !important;
    box-sizing: border-box !important;
}

.privacy-page.privacy-theme-showcase .privacy-card {
    width: min(860px, 100%) !important;
    margin: 0 auto !important;
    padding: 22px 24px 26px !important;
    border: 1px solid rgba(11, 115, 255, .16) !important;
    border-radius: 22px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%) !important;
    color: #0b1b3a !important;
    box-shadow: 0 20px 46px rgba(19, 65, 132, .14), inset 0 1px 0 rgba(255,255,255,.86) !important;
    box-sizing: border-box !important;
}

.privacy-page.privacy-theme-showcase .privacy-header {
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    text-align: center !important;
    padding: 8px 10px 16px !important;
}

.privacy-page.privacy-theme-showcase .privacy-header .eyebrow {
    margin: 0 !important;
    color: #0b73ff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    text-shadow: none !important;
}

.privacy-page.privacy-theme-showcase .privacy-header h1 {
    margin: 0 !important;
    color: #0a3f95 !important;
    font-size: clamp(2.2rem, 5vw, 4.2rem) !important;
    line-height: .98 !important;
    font-weight: 650 !important;
    letter-spacing: -.035em !important;
    text-shadow: none !important;
}

.privacy-page.privacy-theme-showcase .privacy-header p {
    width: min(700px, 100%) !important;
    margin: 0 !important;
    color: #51647f !important;
    font-size: 16px !important;
    line-height: 1.42 !important;
    text-shadow: none !important;
}

.privacy-page.privacy-theme-showcase .return-to-caller-row {
    width: min(780px, 100%) !important;
    margin: 0 auto 16px !important;
}

.privacy-page.privacy-theme-showcase .return-to-caller-button,
.privacy-page.privacy-theme-showcase a.return-to-caller-button {
    min-height: 34px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(11, 115, 255, .22) !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #0b73ff !important;
    box-shadow: 0 8px 18px rgba(11, 115, 255, .10) !important;
    text-decoration: none !important;
    text-shadow: none !important;
}

.privacy-page.privacy-theme-showcase .privacy-section {
    width: min(780px, 100%) !important;
    margin: 0 auto 12px !important;
    padding: 14px 16px !important;
    border: 1px solid rgba(11, 115, 255, .12) !important;
    border-radius: 16px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
    box-shadow: 0 10px 22px rgba(19, 65, 132, .08) !important;
}

.privacy-page.privacy-theme-showcase .privacy-section h2 {
    margin: 0 0 6px !important;
    color: #0a3f95 !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

.privacy-page.privacy-theme-showcase .privacy-section p {
    margin: 0 !important;
    color: #51647f !important;
    font-size: 14.5px !important;
    line-height: 1.45 !important;
    text-shadow: none !important;
}

.privacy-page.privacy-theme-showcase .privacy-footer {
    width: min(780px, 100%) !important;
    margin: 18px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
}

.privacy-page.privacy-theme-showcase .privacy-register-button,
.privacy-page.privacy-theme-showcase a.privacy-register-button {
    min-height: 38px !important;
    padding: 0 18px !important;
    border: 1px solid rgba(11, 115, 255, .38) !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, #2389ff 0%, #0b73ff 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(11, 115, 255, .22), inset 0 1px 0 rgba(255,255,255,.24) !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

.privacy-page.privacy-theme-showcase * {
    text-shadow: none !important;
}


/* ============================================================
   V_415 - Políticas de privacidad: scroll completo y regreso a Registro
   Base: V_414.
   Objetivo:
   - Mostrar los 8 puntos completos sin corte inferior.
   - Permitir scroll vertical real.
   - El regreso desde privacidad vuelve a /registro, no a Inicio.
   - Sin invadir SCI: todo acotado a privacy-theme-showcase.
   ============================================================ */
html:has(.privacy-page.privacy-theme-showcase),
body:has(.privacy-page.privacy-theme-showcase) {
    height: auto !important;
    min-height: 100% !important;
    max-height: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.privacy-page.privacy-theme-showcase {
    min-height: 100vh !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding-top: 24px !important;
    padding-bottom: 64px !important;
}

.privacy-page.privacy-theme-showcase .privacy-card {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 30px !important;
}

.privacy-page.privacy-theme-showcase .privacy-return-row {
    width: min(780px, 100%) !important;
    margin: 0 auto 16px !important;
    display: flex !important;
    justify-content: flex-start !important;
}

.privacy-page.privacy-theme-showcase .privacy-back-to-register-button,
.privacy-page.privacy-theme-showcase a.privacy-back-to-register-button {
    min-height: 34px !important;
    padding: 0 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(11, 115, 255, .22) !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #0b73ff !important;
    box-shadow: 0 8px 18px rgba(11, 115, 255, .10) !important;
    text-decoration: none !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

/* El botón final también regresa explícitamente a Registro y queda visible al final. */
.privacy-page.privacy-theme-showcase .privacy-footer {
    padding-bottom: 4px !important;
}


/* ============================================================
   V_416 - Políticas de privacidad: ventana con marco y scroll interno
   Base: V_415.
   Objetivo:
   - Evitar que el contenido se corte.
   - Meter los 8 puntos dentro de un marco con scroll propio.
   - Mantener regreso explícito a /registro.
   - Sin invadir SCI: solo privacy-theme-showcase.
   ============================================================ */
html:has(.privacy-page.privacy-theme-showcase),
body:has(.privacy-page.privacy-theme-showcase) {
    height: 100% !important;
    min-height: 100% !important;
    overflow: hidden !important;
}

.privacy-page.privacy-theme-showcase {
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
    padding: 18px !important;
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
}

.privacy-page.privacy-theme-showcase .privacy-card {
    width: min(900px, 100%) !important;
    height: calc(100vh - 36px) !important;
    max-height: calc(100vh - 36px) !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 18px 20px 18px !important;
    display: grid !important;
    grid-template-rows: auto auto minmax(0, 1fr) auto !important;
    gap: 12px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.privacy-page.privacy-theme-showcase .privacy-header {
    padding: 4px 10px 8px !important;
    gap: 5px !important;
}

.privacy-page.privacy-theme-showcase .privacy-header h1 {
    font-size: clamp(2rem, 4vw, 3.4rem) !important;
}

.privacy-page.privacy-theme-showcase .privacy-header p {
    font-size: 14.5px !important;
    line-height: 1.32 !important;
}

.privacy-page.privacy-theme-showcase .privacy-return-row {
    margin: 0 !important;
}

.privacy-page.privacy-theme-showcase .privacy-scroll-frame {
    width: min(820px, 100%) !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 14px 16px !important;
    border: 1px solid rgba(11, 115, 255, .24) !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.72),
                inset 0 12px 28px rgba(19, 65, 132, .06) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    scrollbar-color: rgba(11, 115, 255, .45) #e8f3ff !important;
    scrollbar-width: thin !important;
}

.privacy-page.privacy-theme-showcase .privacy-scroll-frame::-webkit-scrollbar {
    width: 12px !important;
}

.privacy-page.privacy-theme-showcase .privacy-scroll-frame::-webkit-scrollbar-track {
    background: #e8f3ff !important;
    border-radius: 999px !important;
}

.privacy-page.privacy-theme-showcase .privacy-scroll-frame::-webkit-scrollbar-thumb {
    background: rgba(11, 115, 255, .45) !important;
    border: 3px solid #e8f3ff !important;
    border-radius: 999px !important;
}

.privacy-page.privacy-theme-showcase .privacy-scroll-frame .privacy-section {
    width: 100% !important;
    margin: 0 0 12px 0 !important;
    padding: 13px 15px !important;
    box-sizing: border-box !important;
}

.privacy-page.privacy-theme-showcase .privacy-scroll-frame .privacy-section:last-child {
    margin-bottom: 0 !important;
}

.privacy-page.privacy-theme-showcase .privacy-footer {
    margin: 0 auto !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
}

@media (max-height: 720px) {
    .privacy-page.privacy-theme-showcase {
        padding: 12px !important;
    }

    .privacy-page.privacy-theme-showcase .privacy-card {
        height: calc(100vh - 24px) !important;
        max-height: calc(100vh - 24px) !important;
        padding: 14px 16px !important;
        gap: 9px !important;
    }

    .privacy-page.privacy-theme-showcase .privacy-header h1 {
        font-size: clamp(1.7rem, 3.4vw, 2.8rem) !important;
    }

    .privacy-page.privacy-theme-showcase .privacy-header p {
        font-size: 13.5px !important;
    }

    .privacy-page.privacy-theme-showcase .privacy-scroll-frame {
        padding: 11px 13px !important;
    }

    .privacy-page.privacy-theme-showcase .privacy-scroll-frame .privacy-section {
        padding: 11px 13px !important;
        margin-bottom: 10px !important;
    }
}


/* ============================================================
   V_417 - Registro y Privacidad: corrección de regreso y obligatoriedad
   Base: V_416.
   Objetivo:
   - Políticas siempre regresa a /registro, no a Inicio.
   - Quitar lista fea de errores rojos.
   - Marcar obligatorios como se usa normalmente: asterisco + nota.
   - No invadir SCI: Web+ acotado a registration-theme-showcase y privacy-theme-showcase.
   ============================================================ */

/* Oculta mensajes visuales rojos de validación en Registro Web+.
   La validación funcional sigue activa en DataAnnotationsValidator. */
.registration-page.registration-theme-showcase .validation-summary-errors,
.registration-page.registration-theme-showcase .validation-errors,
.registration-page.registration-theme-showcase .validation-message {
    display: none !important;
}

.registration-page.registration-theme-showcase .required-star {
    color: #0b73ff !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    text-shadow: none !important;
}

.registration-page.registration-theme-showcase .registration-required-note {
    margin: -4px 0 14px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    color: #51647f !important;
    font-size: 13.5px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    text-shadow: none !important;
}

/* Botones de regreso de Políticas son botones reales, no ligas al historial/inicio. */
.privacy-page.privacy-theme-showcase .privacy-back-to-register-button,
.privacy-page.privacy-theme-showcase button.privacy-back-to-register-button {
    min-height: 34px !important;
    padding: 0 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(11, 115, 255, .22) !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #0b73ff !important;
    box-shadow: 0 8px 18px rgba(11, 115, 255, .10) !important;
    text-decoration: none !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    cursor: pointer !important;
}

.privacy-page.privacy-theme-showcase .privacy-register-button,
.privacy-page.privacy-theme-showcase button.privacy-register-button {
    cursor: pointer !important;
}


/* ============================================================
   V_418 - Registro Web+: focos invisibles / sin recuadros
   Base: V_417 aprobada en lo demás.
   Objetivo:
   - Quitar recuadros visibles de foco en Registro Web+.
   - No invadir SCI.
   - No cambiar lógica, colores ni estructura aprobada.
   ============================================================ */
.registration-page.registration-theme-showcase *:focus,
.registration-page.registration-theme-showcase *:focus-visible,
.registration-page.registration-theme-showcase *:active {
    outline: none !important;
    box-shadow: none !important;
}

.registration-page.registration-theme-showcase input:focus,
.registration-page.registration-theme-showcase input:focus-visible,
.registration-page.registration-theme-showcase textarea:focus,
.registration-page.registration-theme-showcase textarea:focus-visible,
.registration-page.registration-theme-showcase button:focus,
.registration-page.registration-theme-showcase button:focus-visible,
.registration-page.registration-theme-showcase a:focus,
.registration-page.registration-theme-showcase a:focus-visible {
    outline: 0 !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
}

/* Evita que el foco cambie el tamaño o pinte rectángulos extras. */
.registration-page.registration-theme-showcase .button-primary:focus-visible,
.registration-page.registration-theme-showcase .registration-submit-button:focus-visible,
.registration-page.registration-theme-showcase .registration-privacy-button:focus-visible,
.registration-page.registration-theme-showcase .return-to-caller-button:focus-visible {
    outline: 0 !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Los checks mantienen solo el color normal, sin marco de foco. */
.registration-page.registration-theme-showcase input[type="checkbox"]:focus,
.registration-page.registration-theme-showcase input[type="checkbox"]:focus-visible {
    outline: 0 !important;
    box-shadow: none !important;
}

/* También se eliminan recuadros de foco en la página de Políticas Web+,
   porque se abre desde Registro y debe comportarse igual visualmente. */
.privacy-page.privacy-theme-showcase *:focus,
.privacy-page.privacy-theme-showcase *:focus-visible,
.privacy-page.privacy-theme-showcase *:active {
    outline: none !important;
    box-shadow: none !important;
}

.privacy-page.privacy-theme-showcase button:focus,
.privacy-page.privacy-theme-showcase button:focus-visible,
.privacy-page.privacy-theme-showcase a:focus,
.privacy-page.privacy-theme-showcase a:focus-visible {
    outline: 0 !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    transform: none !important;
}


/* ============================================================
   V_419 - Registro: mensaje claro para revisar correo
   Base: V_418.
   Objetivo:
   - Al registrarse correctamente, mostrar instrucción clara:
     revisar correo, abrir confirmación y verificar email.
   - Mantener estética Web+ limpia.
   - No invadir SCI.
   ============================================================ */
.registration-page.registration-theme-showcase .registration-confirmation-message {
    display: grid !important;
    gap: 6px !important;
    border-color: rgba(28, 151, 89, .28) !important;
    background: linear-gradient(180deg, #f3fcf7 0%, #ecf9f2 100%) !important;
    color: #126b3f !important;
}

.registration-page.registration-theme-showcase .registration-confirmation-message strong {
    color: #0f7a46 !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 750 !important;
    text-shadow: none !important;
}

.registration-page.registration-theme-showcase .registration-confirmation-message p {
    margin: 0 !important;
    color: #2d6c4c !important;
    font-size: 14px !important;
    line-height: 1.36 !important;
    text-shadow: none !important;
}

.registration-page.registration-theme-showcase .registration-confirmation-message .registration-check-spam {
    color: #51647f !important;
    font-size: 13px !important;
}


/* ============================================================
   V_420 - Descargas: limpieza visual Web+ tipo Registro
   Base: V_419.
   Objetivo:
   - Quitar vestigios SCI/SciFi en la pantalla Descargas cuando el tema es Web+.
   - Dejar fondo blanco azulado y tarjetas limpias como Registro.
   - No invadir SCI: todo acotado a .download-page.download-theme-showcase.
   ============================================================ */
html:has(.download-page.download-theme-showcase),
body:has(.download-page.download-theme-showcase) {
    background: linear-gradient(180deg, #f7fbff 0%, #eaf4ff 52%, #f8fbff 100%) !important;
    color: #0b1b3a !important;
}

.download-page.download-theme-showcase {
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    min-height: calc(100vh - 1px) !important;
    margin: 0 !important;
    padding: 30px 18px 46px !important;
    background: linear-gradient(180deg, #f7fbff 0%, #eaf4ff 52%, #f8fbff 100%) !important;
    color: #0b1b3a !important;
    box-sizing: border-box !important;
}

.download-page.download-theme-showcase .page-header,
.download-page.download-theme-showcase .download-page-header {
    width: min(780px, 100%) !important;
    max-width: min(780px, 100%) !important;
    margin: 0 auto 16px !important;
    padding: 18px 22px !important;
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    text-align: center !important;
    border: 1px solid rgba(11, 115, 255, .16) !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%) !important;
    box-shadow: 0 16px 34px rgba(19, 65, 132, .12), inset 0 1px 0 rgba(255,255,255,.82) !important;
    color: #0b1b3a !important;
}

.download-page.download-theme-showcase .page-header .eyebrow,
.download-page.download-theme-showcase .download-page-header .eyebrow,
.download-page.download-theme-showcase .download-page-header .eyebrow.amber {
    margin: 0 !important;
    color: #0b73ff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    text-shadow: none !important;
}

.download-page.download-theme-showcase .page-header h1,
.download-page.download-theme-showcase .download-page-header h1 {
    margin: 0 !important;
    color: #0a3f95 !important;
    font-size: clamp(2.2rem, 5vw, 4.4rem) !important;
    line-height: .98 !important;
    font-weight: 650 !important;
    letter-spacing: -.035em !important;
    text-shadow: none !important;
}

.download-page.download-theme-showcase .page-header p,
.download-page.download-theme-showcase .download-page-header p {
    width: min(680px, 100%) !important;
    margin: 0 !important;
    color: #51647f !important;
    font-size: 16px !important;
    line-height: 1.42 !important;
    text-shadow: none !important;
}

.download-page.download-theme-showcase .return-to-caller-row {
    width: min(780px, 100%) !important;
    margin: 0 auto 14px !important;
    justify-content: flex-start !important;
}

.download-page.download-theme-showcase .return-to-caller-button,
.download-page.download-theme-showcase a.return-to-caller-button {
    min-height: 34px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(11, 115, 255, .22) !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #0b73ff !important;
    box-shadow: none !important;
    text-decoration: none !important;
    text-shadow: none !important;
}

.download-page.download-theme-showcase .panel.download-panel,
.download-page.download-theme-showcase .download-page-panel {
    width: min(780px, 100%) !important;
    max-width: min(780px, 100%) !important;
    margin: 0 auto !important;
    padding: 22px 24px 24px !important;
    display: grid !important;
    gap: 16px !important;
    border: 1px solid rgba(11, 115, 255, .16) !important;
    border-radius: 20px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%) !important;
    color: #0b1b3a !important;
    box-shadow: 0 20px 46px rgba(19, 65, 132, .14), inset 0 1px 0 rgba(255,255,255,.86) !important;
    box-sizing: border-box !important;
}

.download-page.download-theme-showcase .download-page-panel h2,
.download-page.download-theme-showcase .download-panel h2 {
    margin: 0 !important;
    color: #0a3f95 !important;
    font-size: 24px !important;
    line-height: 1.12 !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

.download-page.download-theme-showcase .download-page-panel p,
.download-page.download-theme-showcase .download-panel p {
    margin: 0 !important;
    color: #51647f !important;
    font-size: 15px !important;
    line-height: 1.42 !important;
    text-shadow: none !important;
}

.download-page.download-theme-showcase .status-list.boxed,
.download-page.download-theme-showcase .download-status-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    gap: 10px !important;
}

.download-page.download-theme-showcase .status-list.boxed div,
.download-page.download-theme-showcase .download-status-list div {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
    border: 1px solid rgba(11, 115, 255, .13) !important;
    border-radius: 14px !important;
    padding: 12px 14px !important;
    background: linear-gradient(180deg, #f8fbff 0%, #edf6ff 100%) !important;
    color: #51647f !important;
    box-shadow: 0 10px 22px rgba(19, 65, 132, .08) !important;
    text-shadow: none !important;
}

.download-page.download-theme-showcase .status-list.boxed span,
.download-page.download-theme-showcase .download-status-list span {
    color: #51647f !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-shadow: none !important;
}

.download-page.download-theme-showcase .status-list.boxed strong,
.download-page.download-theme-showcase .download-status-list strong {
    color: #0a3f95 !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    text-shadow: none !important;
}

.download-page.download-theme-showcase .button-primary,
.download-page.download-theme-showcase .download-register-button,
.download-page.download-theme-showcase a.download-register-button {
    min-height: 38px !important;
    width: fit-content !important;
    padding: 0 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(11, 115, 255, .38) !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, #2389ff 0%, #0b73ff 100%) !important;
    color: #ffffff !important;
    cursor: pointer !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    text-decoration: none !important;
}

.download-page.download-theme-showcase .button-primary:hover,
.download-page.download-theme-showcase .download-register-button:hover {
    background: linear-gradient(180deg, #3192ff 0%, #096be8 100%) !important;
    box-shadow: none !important;
}

.download-page.download-theme-showcase *:focus,
.download-page.download-theme-showcase *:focus-visible,
.download-page.download-theme-showcase *:active {
    outline: none !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.download-page.download-theme-showcase * {
    text-shadow: none !important;
}


/* ============================================================
   V_428 - Botones superiores Desktop: distribución real para 10 botones
   Base: V_425.
   Corrección:
   - No basta con agregar un ActionItem: la fila tenía grid repeat(9).
   - Se prepara la fila para 10 botones y se evita que el décimo caiga,
     se esconda o pierda control visual.
   ============================================================ */

/* Desktop general: la colección superior ahora espera 10 botones. */
.home-dashboard > .home-topbar.desktop-expanded-topbar .desktop-top-action-scroll {
    grid-template-columns: repeat(10, minmax(74px, 1fr)) !important;
}

/* Web+: distribución de 10 botones sin perder hover ni click. */
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
    gap: 8px !important;
    overflow: visible !important;
}

.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
}

/* Mantener la imagen dentro de cada celda aun con 10 columnas. */
.home-dashboard.desktop-theme-showcase .desktop-top-action-button .action-card-image,
.home-dashboard.desktop-theme-showcase .desktop-top-action-scroll > .desktop-top-action-button .action-card-image,
.home-dashboard.desktop-theme-showcase .desktop-top-action-button > img.action-card-image {
    width: 100% !important;
    max-width: 100% !important;
}


/* ============================================================
   V_430 - Modal Contacto con verificación por correo
   Base: V_429.
   Alcance: formulario/modal Contacto Desktop y página de confirmación.
   No toca la distribución ni hover de los 10 botones.
   ============================================================ */
.home-dashboard.desktop-theme-showcase .contact-form-modal {
    width: min(620px, calc(100vw - 40px)) !important;
    max-width: min(620px, calc(100vw - 40px)) !important;
    background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%) !important;
    border: 1px solid rgba(11, 115, 255, .18) !important;
    border-radius: 22px !important;
    color: #0b1b3a !important;
    box-shadow: 0 28px 70px rgba(19, 65, 132, .20), inset 0 1px 0 rgba(255,255,255,.86) !important;
}

.home-dashboard.desktop-theme-showcase .contact-form-content {
    display: grid !important;
    gap: 14px !important;
    padding: 4px 2px 0 !important;
}

.home-dashboard.desktop-theme-showcase .contact-form-header {
    display: grid !important;
    gap: 6px !important;
    text-align: center !important;
}

.home-dashboard.desktop-theme-showcase .contact-form-header h3 {
    margin: 0 !important;
    color: #0a3f95 !important;
    font-size: 30px !important;
    line-height: 1.05 !important;
    text-shadow: none !important;
}

.home-dashboard.desktop-theme-showcase .contact-form-header p {
    margin: 0 auto !important;
    width: min(520px, 100%) !important;
    color: #51647f !important;
    font-size: 15px !important;
    line-height: 1.38 !important;
    text-shadow: none !important;
}

.home-dashboard.desktop-theme-showcase .contact-form-body {
    display: grid !important;
    gap: 12px !important;
}

.home-dashboard.desktop-theme-showcase .contact-form-field {
    display: grid !important;
    gap: 6px !important;
    color: #0b1b3a !important;
    font-size: 14px !important;
    font-weight: 650 !important;
}

.home-dashboard.desktop-theme-showcase .contact-form-field em,
.home-dashboard.desktop-theme-showcase .direct-contact-required-note em {
    color: #0b73ff !important;
    font-style: normal !important;
    font-weight: 800 !important;
}

.home-dashboard.desktop-theme-showcase .contact-form-input,
.home-dashboard.desktop-theme-showcase .contact-form-editor {
    width: 100% !important;
    border: 1px solid rgba(11, 115, 255, .22) !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: #0b1b3a !important;
    box-shadow: none !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.home-dashboard.desktop-theme-showcase .contact-form-input {
    height: 38px !important;
    padding: 0 12px !important;
}

.home-dashboard.desktop-theme-showcase .contact-form-editor {
    min-height: 150px !important;
    resize: vertical !important;
    padding: 10px 12px !important;
    font-family: inherit !important;
    line-height: 1.35 !important;
}

.home-dashboard.desktop-theme-showcase .direct-contact-required-note {
    color: #51647f !important;
    font-size: 13px !important;
}

.home-dashboard.desktop-theme-showcase .direct-contact-submit {
    width: fit-content !important;
    justify-self: center !important;
    min-height: 38px !important;
    padding: 0 18px !important;
}

.home-dashboard.desktop-theme-showcase .direct-contact-confirmation {
    display: grid !important;
    gap: 6px !important;
    border-color: rgba(28, 151, 89, .28) !important;
    background: linear-gradient(180deg, #f3fcf7 0%, #ecf9f2 100%) !important;
    color: #126b3f !important;
}

.home-dashboard.desktop-theme-showcase .direct-contact-confirmation strong {
    color: #0f7a46 !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
}

.home-dashboard.desktop-theme-showcase .direct-contact-confirmation p {
    margin: 0 !important;
    color: #2d6c4c !important;
    font-size: 14px !important;
    line-height: 1.36 !important;
}

html:has(.confirm-contact-page.confirm-contact-theme-showcase),
body:has(.confirm-contact-page.confirm-contact-theme-showcase) {
    background: linear-gradient(180deg, #f7fbff 0%, #eaf4ff 52%, #f8fbff 100%) !important;
    color: #0b1b3a !important;
}

.confirm-contact-page.confirm-contact-theme-showcase {
    min-height: 100vh !important;
    display: grid !important;
    place-items: center !important;
    padding: 24px !important;
    background: linear-gradient(180deg, #f7fbff 0%, #eaf4ff 52%, #f8fbff 100%) !important;
}

.confirm-contact-page.confirm-contact-theme-showcase .confirm-contact-card {
    width: min(640px, 100%) !important;
    display: grid !important;
    gap: 14px !important;
    justify-items: center !important;
    text-align: center !important;
    padding: 26px !important;
    border: 1px solid rgba(11, 115, 255, .16) !important;
    border-radius: 22px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%) !important;
    box-shadow: 0 20px 46px rgba(19, 65, 132, .14), inset 0 1px 0 rgba(255,255,255,.86) !important;
}

.confirm-contact-page.confirm-contact-theme-showcase .confirm-contact-card h1 {
    margin: 0 !important;
    color: #0a3f95 !important;
    font-size: 34px !important;
    line-height: 1.05 !important;
}

.confirm-contact-page.confirm-contact-theme-showcase .confirm-contact-card .eyebrow {
    margin: 0 !important;
    color: #0b73ff !important;
    font-weight: 750 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}


/* ============================================================
   V_432 - Contacto: modal limpio Web+ y sin amontonamiento
   Base: V_431.
   Corrección:
   - El modal de Contacto ya no debe verse SCI.
   - Se separa visualmente de work-modal.
   - Se da aire, anchura, padding y editor amplio.
   - No toca lógica, botones, hover ni distribución superior.
   ============================================================ */

.home-dashboard .work-modal-backdrop:has(.direct-contact-modal) {
    background: rgba(8, 20, 38, .46) !important;
    backdrop-filter: blur(7px) saturate(1.05) !important;
    -webkit-backdrop-filter: blur(7px) saturate(1.05) !important;
    display: grid !important;
    place-items: center !important;
    padding: 28px !important;
    overflow: auto !important;
}

.home-dashboard .direct-contact-modal,
.home-dashboard.desktop-theme-scifi .direct-contact-modal,
.home-dashboard.desktop-theme-white .direct-contact-modal,
.home-dashboard.desktop-theme-showcase .direct-contact-modal,
.home-dashboard.desktop-theme-business .direct-contact-modal,
.home-dashboard.desktop-theme-executive .direct-contact-modal,
.home-dashboard.desktop-theme-steel .direct-contact-modal,
.home-dashboard.desktop-theme-aztec .direct-contact-modal {
    position: relative !important;
    width: min(760px, calc(100vw - 72px)) !important;
    max-width: min(760px, calc(100vw - 72px)) !important;
    min-height: auto !important;
    max-height: calc(100vh - 72px) !important;
    display: grid !important;
    grid-template-rows: auto !important;
    gap: 0 !important;
    padding: 34px 38px 32px !important;
    overflow: auto !important;
    border-radius: 26px !important;
    border: 1px solid rgba(27, 91, 180, .18) !important;
    background:
        radial-gradient(circle at 88% 0%, rgba(54, 132, 255, .12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
    color: #0b1b3a !important;
    box-shadow:
        0 30px 80px rgba(7, 36, 84, .26),
        0 1px 0 rgba(255,255,255,.94) inset !important;
    text-shadow: none !important;
    box-sizing: border-box !important;
}

.home-dashboard .direct-contact-modal *,
.home-dashboard.desktop-theme-scifi .direct-contact-modal *,
.home-dashboard.desktop-theme-showcase .direct-contact-modal * {
    text-shadow: none !important;
}

.home-dashboard .direct-contact-brand-badge {
    position: absolute !important;
    top: 18px !important;
    left: 22px !important;
    width: 46px !important;
    height: 46px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 16px !important;
    background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%) !important;
    border: 1px solid rgba(24, 108, 220, .18) !important;
    box-shadow: 0 10px 22px rgba(28, 90, 170, .12) !important;
}

.home-dashboard .direct-contact-brand-logo {
    width: 34px !important;
    height: 34px !important;
    object-fit: contain !important;
    display: block !important;
    filter: none !important;
}

.home-dashboard .direct-contact-modal-close {
    position: absolute !important;
    top: 16px !important;
    right: 18px !important;
    width: 42px !important;
    height: 42px !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid rgba(15, 94, 210, .18) !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #0a3f95 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    box-shadow: 0 8px 18px rgba(18, 76, 160, .11) !important;
    cursor: pointer !important;
}

.home-dashboard .direct-contact-modal-close:hover,
.home-dashboard .direct-contact-modal-close:focus-visible {
    background: #eef6ff !important;
    color: #063a88 !important;
    transform: none !important;
}

.home-dashboard .direct-contact-modal .contact-form-content {
    display: grid !important;
    gap: 22px !important;
    padding: 26px 0 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.home-dashboard .direct-contact-modal .contact-form-header {
    display: grid !important;
    gap: 10px !important;
    padding: 0 50px 6px !important;
    text-align: center !important;
}

.home-dashboard .direct-contact-modal .contact-form-header h3 {
    margin: 0 !important;
    color: #083f93 !important;
    font-size: clamp(28px, 2.4vw, 38px) !important;
    line-height: 1.05 !important;
    font-weight: 800 !important;
    letter-spacing: -.02em !important;
}

.home-dashboard .direct-contact-modal .contact-form-header p {
    margin: 0 auto !important;
    width: min(590px, 100%) !important;
    color: #4b617c !important;
    font-size: 16px !important;
    line-height: 1.48 !important;
    font-weight: 450 !important;
}

.home-dashboard .direct-contact-modal .contact-form-body {
    display: grid !important;
    gap: 18px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.home-dashboard .direct-contact-modal .contact-form-field {
    display: grid !important;
    gap: 9px !important;
    margin: 0 !important;
    color: #0b1b3a !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.home-dashboard .direct-contact-modal .contact-form-field span {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.home-dashboard .direct-contact-modal .contact-form-field em,
.home-dashboard .direct-contact-modal .direct-contact-required-note em {
    color: #0b73ff !important;
    font-style: normal !important;
    font-weight: 900 !important;
}

.home-dashboard .direct-contact-modal .contact-form-input,
.home-dashboard .direct-contact-modal .contact-form-editor {
    width: 100% !important;
    min-width: 0 !important;
    border: 1px solid rgba(15, 94, 210, .22) !important;
    border-radius: 15px !important;
    background: #ffffff !important;
    color: #0b1b3a !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,.96) inset,
        0 10px 22px rgba(27, 91, 180, .06) !important;
    outline: none !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
}

.home-dashboard .direct-contact-modal .contact-form-input:focus,
.home-dashboard .direct-contact-modal .contact-form-editor:focus {
    border-color: rgba(11, 115, 255, .52) !important;
    box-shadow:
        0 0 0 4px rgba(11, 115, 255, .10),
        0 10px 22px rgba(27, 91, 180, .07) !important;
}

.home-dashboard .direct-contact-modal .contact-form-input {
    height: 48px !important;
    padding: 0 15px !important;
}

.home-dashboard .direct-contact-modal .contact-form-editor {
    min-height: 210px !important;
    max-height: 38vh !important;
    resize: vertical !important;
    padding: 14px 15px !important;
    font-family: inherit !important;
    line-height: 1.45 !important;
}

.home-dashboard .direct-contact-modal .validation-message {
    color: #b42318 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    margin-top: -4px !important;
}

.home-dashboard .direct-contact-modal .validation-errors {
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 1px solid rgba(180, 35, 24, .18) !important;
    border-radius: 14px !important;
    background: #fff5f5 !important;
    color: #b42318 !important;
}

.home-dashboard .direct-contact-modal .direct-contact-required-note {
    margin-top: -4px !important;
    color: #66758b !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
}

.home-dashboard .direct-contact-modal .direct-contact-submit {
    width: fit-content !important;
    min-width: 176px !important;
    height: 46px !important;
    justify-self: center !important;
    border-radius: 999px !important;
    border: 1px solid rgba(11, 115, 255, .18) !important;
    background: linear-gradient(180deg, #1677ff 0%, #095bd6 100%) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: .01em !important;
    box-shadow: 0 14px 28px rgba(11, 115, 255, .22) !important;
    cursor: pointer !important;
}

.home-dashboard .direct-contact-modal .direct-contact-submit:disabled {
    opacity: .72 !important;
    cursor: wait !important;
}

.home-dashboard .direct-contact-modal .alert {
    margin: 0 !important;
    padding: 16px 18px !important;
    border-radius: 16px !important;
    font-size: 15px !important;
    line-height: 1.42 !important;
}

.home-dashboard .direct-contact-modal .direct-contact-confirmation {
    display: grid !important;
    gap: 8px !important;
    border: 1px solid rgba(28, 151, 89, .24) !important;
    background: linear-gradient(180deg, #f3fcf7 0%, #ebf9f1 100%) !important;
    color: #126b3f !important;
    box-shadow: 0 12px 24px rgba(28, 151, 89, .08) !important;
}

.home-dashboard .direct-contact-modal .direct-contact-confirmation strong {
    color: #0f7a46 !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
}

.home-dashboard .direct-contact-modal .direct-contact-confirmation p {
    margin: 0 !important;
    color: #2d6c4c !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.home-dashboard .direct-contact-modal .danger {
    border: 1px solid rgba(180, 35, 24, .18) !important;
    background: #fff5f5 !important;
    color: #b42318 !important;
}

@media (max-width: 820px) {
    .home-dashboard .work-modal-backdrop:has(.direct-contact-modal) {
        padding: 14px !important;
    }

    .home-dashboard .direct-contact-modal {
        width: min(100%, calc(100vw - 28px)) !important;
        max-width: min(100%, calc(100vw - 28px)) !important;
        padding: 26px 20px 24px !important;
        border-radius: 22px !important;
    }

    .home-dashboard .direct-contact-modal .contact-form-header {
        padding: 40px 18px 4px !important;
    }

    .home-dashboard .direct-contact-modal .contact-form-editor {
        min-height: 170px !important;
    }
}


/* ============================================================
   V_433 - Contacto: corrección logotipo gigante en modal
   Base: V_432.
   Causa:
   - El modal se renderiza fuera de .home-dashboard.
   - Los selectores de V_432 estaban prefijados con .home-dashboard.
   - Por eso el logo no recibía tamaño y podía ocupar la pantalla.
   Solución:
   - Reglas globales específicas para .direct-contact-modal.
   ============================================================ */

.work-modal-backdrop:has(.direct-contact-modal) {
    background: rgba(8, 20, 38, .46) !important;
    backdrop-filter: blur(7px) saturate(1.05) !important;
    -webkit-backdrop-filter: blur(7px) saturate(1.05) !important;
    display: grid !important;
    place-items: center !important;
    padding: 28px !important;
    overflow: auto !important;
}

.direct-contact-modal {
    position: relative !important;
    width: min(760px, calc(100vw - 72px)) !important;
    max-width: min(760px, calc(100vw - 72px)) !important;
    min-height: auto !important;
    max-height: calc(100vh - 72px) !important;
    display: grid !important;
    grid-template-rows: auto !important;
    gap: 0 !important;
    padding: 34px 38px 32px !important;
    overflow: auto !important;
    border-radius: 26px !important;
    border: 1px solid rgba(27, 91, 180, .18) !important;
    background:
        radial-gradient(circle at 88% 0%, rgba(54, 132, 255, .12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
    color: #0b1b3a !important;
    box-shadow:
        0 30px 80px rgba(7, 36, 84, .26),
        0 1px 0 rgba(255,255,255,.94) inset !important;
    text-shadow: none !important;
    box-sizing: border-box !important;
}

.direct-contact-modal,
.direct-contact-modal * {
    text-shadow: none !important;
}

.direct-contact-brand-badge {
    position: absolute !important;
    top: 18px !important;
    left: 22px !important;
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%) !important;
    border: 1px solid rgba(24, 108, 220, .18) !important;
    box-shadow: 0 10px 22px rgba(28, 90, 170, .12) !important;
    box-sizing: border-box !important;
}

img.direct-contact-brand-logo,
.direct-contact-brand-logo {
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    filter: none !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.direct-contact-modal-close {
    position: absolute !important;
    top: 16px !important;
    right: 18px !important;
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid rgba(15, 94, 210, .18) !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #0a3f95 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    box-shadow: 0 8px 18px rgba(18, 76, 160, .11) !important;
    cursor: pointer !important;
}

.direct-contact-modal .contact-form-content {
    display: grid !important;
    gap: 22px !important;
    padding: 26px 0 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.direct-contact-modal .contact-form-header {
    display: grid !important;
    gap: 10px !important;
    padding: 0 50px 6px !important;
    text-align: center !important;
}

.direct-contact-modal .contact-form-header h3 {
    margin: 0 !important;
    color: #083f93 !important;
    font-size: clamp(28px, 2.4vw, 38px) !important;
    line-height: 1.05 !important;
    font-weight: 800 !important;
    letter-spacing: -.02em !important;
}

.direct-contact-modal .contact-form-header p {
    margin: 0 auto !important;
    width: min(590px, 100%) !important;
    color: #4b617c !important;
    font-size: 16px !important;
    line-height: 1.48 !important;
    font-weight: 450 !important;
}

.direct-contact-modal .contact-form-body {
    display: grid !important;
    gap: 18px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.direct-contact-modal .contact-form-field {
    display: grid !important;
    gap: 9px !important;
    margin: 0 !important;
    color: #0b1b3a !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.direct-contact-modal .contact-form-input,
.direct-contact-modal .contact-form-editor {
    width: 100% !important;
    min-width: 0 !important;
    border: 1px solid rgba(15, 94, 210, .22) !important;
    border-radius: 15px !important;
    background: #ffffff !important;
    color: #0b1b3a !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,.96) inset,
        0 10px 22px rgba(27, 91, 180, .06) !important;
    outline: none !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
}

.direct-contact-modal .contact-form-input {
    height: 48px !important;
    padding: 0 15px !important;
}

.direct-contact-modal .contact-form-editor {
    min-height: 210px !important;
    max-height: 38vh !important;
    resize: vertical !important;
    padding: 14px 15px !important;
    font-family: inherit !important;
    line-height: 1.45 !important;
}

.direct-contact-modal .direct-contact-submit {
    width: fit-content !important;
    min-width: 176px !important;
    height: 46px !important;
    justify-self: center !important;
    border-radius: 999px !important;
    border: 1px solid rgba(11, 115, 255, .18) !important;
    background: linear-gradient(180deg, #1677ff 0%, #095bd6 100%) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: .01em !important;
    box-shadow: 0 14px 28px rgba(11, 115, 255, .22) !important;
    cursor: pointer !important;
}

@media (max-width: 820px) {
    .work-modal-backdrop:has(.direct-contact-modal) {
        padding: 14px !important;
    }

    .direct-contact-modal {
        width: min(100%, calc(100vw - 28px)) !important;
        max-width: min(100%, calc(100vw - 28px)) !important;
        padding: 26px 20px 24px !important;
        border-radius: 22px !important;
    }

    .direct-contact-modal .contact-form-header {
        padding: 40px 18px 4px !important;
    }

    .direct-contact-modal .contact-form-editor {
        min-height: 170px !important;
    }
}


/* ============================================================
   V_434 - Contacto: logotipo superior izquierdo más grande
   Base: V_433.
   Cambio:
   - El logo del modal Contacto aumenta de 34x34 a 54x54.
   - El badge aumenta de 46x46 a 72x72.
   - Se abre más espacio superior para evitar amontonamiento.
   ============================================================ */

.direct-contact-brand-badge {
    top: 16px !important;
    left: 22px !important;
    width: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    height: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
    border-radius: 22px !important;
}

img.direct-contact-brand-logo,
.direct-contact-brand-logo {
    width: 54px !important;
    min-width: 54px !important;
    max-width: 54px !important;
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
}

/* Separación adicional para que el logo grande no se amontone con el encabezado. */
.direct-contact-modal .contact-form-content {
    padding-top: 44px !important;
}

.direct-contact-modal .contact-form-header {
    padding-left: 88px !important;
    padding-right: 64px !important;
}

@media (max-width: 820px) {
    .direct-contact-brand-badge {
        width: 62px !important;
        min-width: 62px !important;
        max-width: 62px !important;
        height: 62px !important;
        min-height: 62px !important;
        max-height: 62px !important;
        border-radius: 20px !important;
    }

    img.direct-contact-brand-logo,
    .direct-contact-brand-logo {
        width: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;
    }

    .direct-contact-modal .contact-form-content {
        padding-top: 52px !important;
    }

    .direct-contact-modal .contact-form-header {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}


/* ============================================================
   V_435 - Contacto: logotipo un poco más grande con más padding
   Base: V_434.
   Cambio:
   - Badge: 72x72 -> 88x88.
   - Logo: 54x54 -> 60x60.
   - Padding interno real en el badge para que la imagen respire.
   ============================================================ */

.direct-contact-brand-badge {
    width: 88px !important;
    min-width: 88px !important;
    max-width: 88px !important;
    height: 88px !important;
    min-height: 88px !important;
    max-height: 88px !important;
    padding: 10px !important;
    border-radius: 26px !important;
    box-sizing: border-box !important;
}

img.direct-contact-brand-logo,
.direct-contact-brand-logo {
    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important;
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
}

/* Más aire para compensar el logo superior izquierdo más grande. */
.direct-contact-modal .contact-form-content {
    padding-top: 56px !important;
}

.direct-contact-modal .contact-form-header {
    padding-left: 108px !important;
    padding-right: 70px !important;
}

@media (max-width: 820px) {
    .direct-contact-brand-badge {
        width: 74px !important;
        min-width: 74px !important;
        max-width: 74px !important;
        height: 74px !important;
        min-height: 74px !important;
        max-height: 74px !important;
        padding: 9px !important;
        border-radius: 22px !important;
    }

    img.direct-contact-brand-logo,
    .direct-contact-brand-logo {
        width: 50px !important;
        min-width: 50px !important;
        max-width: 50px !important;
        height: 50px !important;
        min-height: 50px !important;
        max-height: 50px !important;
    }

    .direct-contact-modal .contact-form-content {
        padding-top: 64px !important;
    }

    .direct-contact-modal .contact-form-header {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}


/* ============================================================
   V_436 - Registro: título principal a la mitad
   Base: V_435.
   Cambio solicitado:
   - Texto "Registro para noticias y demo" con font-size a la mitad.
   - El selector apunta al h1 del encabezado de Registro Web+.
   ============================================================ */

.registration-page.registration-theme-showcase .page-header h1,
.registration-page.registration-theme-showcase .registration-page-header h1 {
    font-size: clamp(1.1rem, 2.5vw, 2.2rem) !important;
    line-height: 1.04 !important;
}


/* ============================================================
   V_439 - Newsletter público como página modal 80% x 80%
   Base: V_438.
   Función:
   - /newsletter pública.
   - Contenedor tipo modal: 80vw de ancho y 80vh de alto.
   - Barra de scroll vertical interna.
   - Búsqueda dentro del contenido del Newsletter.
   ============================================================ */

html:has(.newsletter-public-page.newsletter-public-theme-showcase),
body:has(.newsletter-public-page.newsletter-public-theme-showcase) {
    background:
        radial-gradient(circle at 14% 0%, rgba(11, 115, 255, .10), transparent 32%),
        linear-gradient(180deg, #f7fbff 0%, #eaf4ff 52%, #f8fbff 100%) !important;
    color: #0b1b3a !important;
    overflow: hidden !important;
}

.newsletter-public-page.newsletter-public-theme-showcase {
    width: 100vw !important;
    min-width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    background:
        radial-gradient(circle at 14% 0%, rgba(11, 115, 255, .10), transparent 32%),
        linear-gradient(180deg, #f7fbff 0%, #eaf4ff 52%, #f8fbff 100%) !important;
    color: #0b1b3a !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-modal-page {
    width: 80vw !important;
    max-width: 80vw !important;
    height: 80vh !important;
    max-height: 80vh !important;
    min-width: min(80vw, 720px) !important;
    display: grid !important;
    grid-template-rows: auto auto 1fr !important;
    gap: 14px !important;
    padding: 22px 24px 24px !important;
    border: 1px solid rgba(11, 115, 255, .17) !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at 92% 0%, rgba(54, 132, 255, .13), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
    box-shadow:
        0 34px 82px rgba(7, 36, 84, .22),
        0 1px 0 rgba(255,255,255,.94) inset !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-modal-header {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 16px !important;
    align-items: start !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(11, 115, 255, .10) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-title-block {
    display: grid !important;
    gap: 6px !important;
    min-width: 0 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-title-block .eyebrow {
    margin: 0 !important;
    color: #0b73ff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-title-block h1 {
    margin: 0 !important;
    color: #0a3f95 !important;
    font-size: clamp(1.6rem, 3.1vw, 3.1rem) !important;
    line-height: 1 !important;
    font-weight: 780 !important;
    letter-spacing: -.035em !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-title-block p {
    width: min(760px, 100%) !important;
    margin: 0 !important;
    color: #51647f !important;
    font-size: 15px !important;
    line-height: 1.34 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .return-to-caller-row {
    margin: 0 !important;
    padding: 0 !important;
    align-self: start !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-panel {
    display: grid !important;
    grid-template-columns: 1fr auto auto !important;
    gap: 10px !important;
    align-items: end !important;
    padding: 12px !important;
    border: 1px solid rgba(11, 115, 255, .13) !important;
    border-radius: 18px !important;
    background: rgba(247, 251, 255, .86) !important;
    box-shadow: 0 10px 22px rgba(19, 65, 132, .07) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-label {
    display: grid !important;
    gap: 5px !important;
    color: #0b1b3a !important;
    font-size: 13px !important;
    font-weight: 750 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-input {
    width: 100% !important;
    height: 40px !important;
    padding: 0 13px !important;
    border: 1px solid rgba(15, 94, 210, .22) !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #0b1b3a !important;
    font-size: 15px !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-input:focus {
    border-color: rgba(11, 115, 255, .52) !important;
    box-shadow: 0 0 0 4px rgba(11, 115, 255, .10) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-button,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-clear-button {
    height: 40px !important;
    min-width: 96px !important;
    white-space: nowrap !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-modal-scroll {
    min-height: 0 !important;
    height: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: grid !important;
    align-content: start !important;
    gap: 14px !important;
    padding: 2px 12px 2px 2px !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(11, 115, 255, .45) rgba(11, 115, 255, .08) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-modal-scroll::-webkit-scrollbar {
    width: 10px !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-modal-scroll::-webkit-scrollbar-track {
    background: rgba(11, 115, 255, .08) !important;
    border-radius: 999px !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-modal-scroll::-webkit-scrollbar-thumb {
    background: rgba(11, 115, 255, .45) !important;
    border-radius: 999px !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-public-card,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-empty-result,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-subscribe-callout {
    display: grid !important;
    gap: 9px !important;
    padding: 18px 20px !important;
    border: 1px solid rgba(11, 115, 255, .13) !important;
    border-radius: 20px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
    box-shadow: 0 12px 26px rgba(19, 65, 132, .09) !important;
    color: #0b1b3a !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-card-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    align-items: center !important;
    color: #6a7c95 !important;
    font-size: 13px !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-card-meta strong {
    color: #0b73ff !important;
    font-weight: 800 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-public-card h2,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-empty-result h2,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-subscribe-callout h2 {
    margin: 0 !important;
    color: #0a3f95 !important;
    font-size: clamp(1.25rem, 1.8vw, 1.8rem) !important;
    line-height: 1.08 !important;
    font-weight: 780 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-public-card p,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-empty-result p,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-subscribe-callout p {
    margin: 0 !important;
    color: #445872 !important;
    font-size: 15px !important;
    line-height: 1.46 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-card-body {
    display: grid !important;
    gap: 8px !important;
    padding-top: 2px !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-subscribe-callout {
    justify-items: center !important;
    text-align: center !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-register-link {
    width: fit-content !important;
    min-height: 38px !important;
    display: inline-grid !important;
    place-items: center !important;
    padding: 0 18px !important;
    text-decoration: none !important;
}

.newsletter-public-page.newsletter-public-theme-showcase * {
    text-shadow: none !important;
}

@media (max-width: 900px) {
    .newsletter-public-page.newsletter-public-theme-showcase {
        place-items: start center !important;
        padding: 14px !important;
        overflow: auto !important;
    }

    html:has(.newsletter-public-page.newsletter-public-theme-showcase),
    body:has(.newsletter-public-page.newsletter-public-theme-showcase) {
        overflow: auto !important;
    }

    .newsletter-public-page.newsletter-public-theme-showcase .newsletter-modal-page {
        width: min(94vw, 100%) !important;
        max-width: min(94vw, 100%) !important;
        min-width: 0 !important;
        height: min(88vh, 900px) !important;
        max-height: none !important;
        padding: 18px !important;
        border-radius: 24px !important;
    }

    .newsletter-public-page.newsletter-public-theme-showcase .newsletter-modal-header {
        grid-template-columns: 1fr !important;
    }

    .newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-panel {
        grid-template-columns: 1fr !important;
    }

    .newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-button,
    .newsletter-public-page.newsletter-public-theme-showcase .newsletter-clear-button {
        width: 100% !important;
    }
}


/* ============================================================
   V_440 - Sobre mí: limpieza final de vestigios SCI en Web+
   Base: V_439.
   Alcance:
   - Solo tema Web+ / showcase.
   - Limpia el modal Sobre mí y la tarjeta Mi Portada.
   - Elimina fondos oscuros, brillos cyan/amarillos, bordes dorados
     y sombras tipo Sci-Fi heredadas.
   ============================================================ */

/* Tarjeta principal "Mi Portada" en Web+ */
.home-dashboard.desktop-theme-showcase .showcase-profile-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
    border: 1px solid rgba(11, 115, 255, .12) !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 26px rgba(19, 65, 132, .08) !important;
    color: #0b1b3a !important;
    text-shadow: none !important;
}

.home-dashboard.desktop-theme-showcase .showcase-profile-card *,
.home-dashboard.desktop-theme-showcase .desktop-panel-three-cover-title *,
.home-dashboard.desktop-theme-showcase .desktop-panel-three * {
    text-shadow: none !important;
}

.home-dashboard.desktop-theme-showcase .showcase-avatar-frame {
    background: #eef6ff !important;
    border: 1px solid rgba(11, 115, 255, .14) !important;
    box-shadow: 0 12px 24px rgba(19, 65, 132, .10) !important;
}

.home-dashboard.desktop-theme-showcase .showcase-avatar-frame img {
    filter: none !important;
    box-shadow: none !important;
}

.home-dashboard.desktop-theme-showcase .showcase-skill-grid span {
    background: #ffffff !important;
    border: 1px solid rgba(11, 115, 255, .12) !important;
    color: #142642 !important;
    box-shadow: 0 8px 16px rgba(19, 65, 132, .06) !important;
}

/* Modal Sobre mí en Web+ */
.work-modal-backdrop.desktop-theme-showcase .about-modal {
    width: min(1040px, calc(100vw - 72px)) !important;
    background: #ffffff !important;
    border: 1px solid rgba(11, 115, 255, .18) !important;
    border-radius: 26px !important;
    box-shadow: 0 30px 72px rgba(19, 65, 132, .18) !important;
    color: #0b1b3a !important;
    overflow: hidden !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-content {
    background:
        radial-gradient(circle at 92% 0%, rgba(11, 115, 255, .10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
    color: #0b1b3a !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 34px 38px 34px 38px !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal .modal-brand-badge {
    left: 34px !important;
    top: 24px !important;
    background: #ffffff !important;
    border: 1px solid rgba(11, 115, 255, .18) !important;
    box-shadow: 0 10px 22px rgba(19, 65, 132, .14) !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal .modal-brand-logo {
    filter: none !important;
    box-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-header {
    left: 0 !important;
    margin: 0 0 18px 0 !important;
    padding: 0 52px 0 74px !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-kicker {
    color: #0b73ff !important;
    text-shadow: none !important;
    letter-spacing: .10em !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-header h3 {
    color: #0a3f95 !important;
    text-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-layout {
    display: grid !important;
    grid-template-columns: 318px minmax(0, 1fr) !important;
    gap: 22px !important;
    align-items: start !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-photo-frame {
    margin: 0 !important;
    padding: 10px !important;
    border: 1px solid rgba(11, 115, 255, .14) !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%) !important;
    box-shadow: 0 14px 30px rgba(19, 65, 132, .12) !important;
    overflow: hidden !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-photo {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 13px !important;
    object-fit: contain !important;
    object-position: center top !important;
    filter: none !important;
    box-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-body {
    display: grid !important;
    gap: 12px !important;
    color: #445872 !important;
    font-size: .98rem !important;
    line-height: 1.56 !important;
    text-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-body p {
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 1px solid rgba(11, 115, 255, .10) !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #445872 !important;
    box-shadow: 0 8px 16px rgba(19, 65, 132, .06) !important;
    text-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal,
.work-modal-backdrop.desktop-theme-showcase .about-modal *,
.home-dashboard.desktop-theme-showcase .showcase-profile-card,
.home-dashboard.desktop-theme-showcase .showcase-profile-card * {
    text-shadow: none !important;
}

/* Neutraliza específicamente colores SCI heredados dentro de Sobre mí Web+. */
.work-modal-backdrop.desktop-theme-showcase .about-modal [style*="255, 191, 0"],
.work-modal-backdrop.desktop-theme-showcase .about-modal [style*="0, 174, 243"] {
    text-shadow: none !important;
    box-shadow: none !important;
}

@media (max-width: 900px) {
    .work-modal-backdrop.desktop-theme-showcase .about-modal {
        width: min(680px, calc(100vw - 36px)) !important;
    }

    .work-modal-backdrop.desktop-theme-showcase .about-modal-content {
        padding: 30px 22px 26px 22px !important;
    }

    .work-modal-backdrop.desktop-theme-showcase .about-modal-header {
        padding-left: 70px !important;
        padding-right: 44px !important;
    }

    .work-modal-backdrop.desktop-theme-showcase .about-modal-layout {
        grid-template-columns: 1fr !important;
    }

    .work-modal-backdrop.desktop-theme-showcase .about-modal-photo-frame {
        width: min(320px, 100%) !important;
        justify-self: center !important;
    }
}


/* ============================================================
   V_441 - Sobre mí: recorrer encabezado 30 px a la derecha
   Base: V_440.
   Cambio solicitado:
   - Recorrer a la derecha los textos "Sobre mí" e
     "Ignacio Quijas Rivera".
   - Se aumenta solo el padding-left del encabezado del modal
     Sobre mí en Web+.
   ============================================================ */

.work-modal-backdrop.desktop-theme-showcase .about-modal-header {
    padding-left: 104px !important; /* V_440: 74px + 30px */
}

@media (max-width: 900px) {
    .work-modal-backdrop.desktop-theme-showcase .about-modal-header {
        padding-left: 100px !important; /* V_440 móvil/tablet: 70px + 30px */
    }
}


/* ============================================================
   V_442 - Sobre mí: scroll solo en párrafos descriptivos
   Base: V_441.
   Cambio solicitado:
   - Fijos: logotipo, encabezado "Sobre mí", nombre e imagen.
   - Scroll vertical únicamente en los párrafos del currículum.
   ============================================================ */

.work-modal-backdrop.desktop-theme-showcase .about-modal {
    max-height: calc(100vh - 72px) !important;
    overflow: hidden !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-content {
    height: min(78vh, calc(100vh - 92px)) !important;
    max-height: min(78vh, calc(100vh - 92px)) !important;
    overflow: hidden !important;
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) !important;
    align-items: stretch !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal .modal-brand-badge,
.work-modal-backdrop.desktop-theme-showcase .about-modal-header,
.work-modal-backdrop.desktop-theme-showcase .about-modal-photo-frame {
    flex: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-header {
    position: relative !important;
    z-index: 3 !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-layout {
    min-height: 0 !important;
    height: 100% !important;
    max-height: 100% !important;
    overflow: hidden !important;
    align-items: stretch !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-photo-frame {
    align-self: start !important;
    max-height: calc(78vh - 132px) !important;
    overflow: hidden !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-photo {
    max-height: calc(78vh - 154px) !important;
    object-fit: contain !important;
    object-position: center top !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-body {
    min-height: 0 !important;
    height: 100% !important;
    max-height: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    align-content: start !important;
    padding-right: 10px !important;
    overscroll-behavior: contain !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(11, 115, 255, .46) rgba(11, 115, 255, .08) !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-body::-webkit-scrollbar {
    width: 10px !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-body::-webkit-scrollbar-track {
    background: rgba(11, 115, 255, .08) !important;
    border-radius: 999px !important;
}

.work-modal-backdrop.desktop-theme-showcase .about-modal-body::-webkit-scrollbar-thumb {
    background: rgba(11, 115, 255, .46) !important;
    border-radius: 999px !important;
}

@media (max-width: 900px) {
    .work-modal-backdrop.desktop-theme-showcase .about-modal-content {
        height: min(82vh, calc(100vh - 72px)) !important;
        max-height: min(82vh, calc(100vh - 72px)) !important;
        grid-template-rows: auto minmax(0, 1fr) !important;
    }

    .work-modal-backdrop.desktop-theme-showcase .about-modal-layout {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto minmax(0, 1fr) !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

    .work-modal-backdrop.desktop-theme-showcase .about-modal-photo-frame {
        width: min(300px, 100%) !important;
        max-height: 30vh !important;
        justify-self: center !important;
    }

    .work-modal-backdrop.desktop-theme-showcase .about-modal-photo {
        max-height: calc(30vh - 22px) !important;
    }

    .work-modal-backdrop.desktop-theme-showcase .about-modal-body {
        min-height: 0 !important;
        height: 100% !important;
        max-height: 100% !important;
        overflow-y: auto !important;
    }
}


/* ============================================================
   V_445 - Newsletter: corrección segura de búsqueda y botón volver
   Base: V_443.
   Corrige:
   - V_444 quedó descartada por error Razor en Newsletter.razor.
   - "Volver al anterior" en Newsletter: azul sobre fondo blanco.
   - Buscar ahora filtra y muestra estado de resultados sin usar eval,
     raw strings ni MarkupString.
   ============================================================ */

.newsletter-public-page.newsletter-public-theme-showcase .return-to-caller-button,
.newsletter-public-page.newsletter-public-theme-showcase a.return-to-caller-button {
    background: #ffffff !important;
    color: #0b73ff !important;
    border: 1px solid rgba(11, 115, 255, .30) !important;
    box-shadow: 0 10px 22px rgba(19, 65, 132, .12) !important;
    text-shadow: none !important;
    font-weight: 800 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .return-to-caller-button:hover,
.newsletter-public-page.newsletter-public-theme-showcase a.return-to-caller-button:hover,
.newsletter-public-page.newsletter-public-theme-showcase .return-to-caller-button:focus-visible,
.newsletter-public-page.newsletter-public-theme-showcase a.return-to-caller-button:focus-visible {
    background: #ffffff !important;
    color: #075ccc !important;
    border-color: rgba(11, 115, 255, .48) !important;
    box-shadow: 0 12px 26px rgba(19, 65, 132, .16), 0 0 0 4px rgba(11, 115, 255, .10) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-status {
    grid-column: 1 / -1 !important;
    margin: -2px 0 0 !important;
    padding: 7px 10px !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    border: 1px solid rgba(11, 115, 255, .16) !important;
    color: #0b73ff !important;
    font-size: 13px !important;
    font-weight: 760 !important;
    text-shadow: none !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-status-empty {
    color: #ad5f00 !important;
    border-color: rgba(194, 111, 0, .20) !important;
    background: #fffaf2 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-first-match {
    border-color: rgba(11, 115, 255, .42) !important;
    box-shadow:
        0 14px 30px rgba(19, 65, 132, .13),
        0 0 0 4px rgba(11, 115, 255, .08) !important;
}

@media (max-width: 900px) {
    .newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-panel {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================================
   V_446 - Newsletter: Buscar como encontrar, no filtrar
   Base: V_445.
   Cambios:
   - Buscar mantiene visible todo el Newsletter.
   - Resalta cada coincidencia encontrada.
   - Mejora contraste del mensaje posterior a Buscar.
   ============================================================ */

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-status {
    grid-column: 1 / -1 !important;
    margin: -2px 0 0 !important;
    padding: 9px 12px !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    border: 1px solid rgba(11, 115, 255, .38) !important;
    color: #083b8a !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    text-shadow: none !important;
    box-shadow: 0 8px 18px rgba(19, 65, 132, .12) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-status-empty {
    color: #7b3500 !important;
    border-color: rgba(194, 111, 0, .36) !important;
    background: #ffffff !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-highlight {
    display: inline !important;
    background: #ffe66d !important;
    color: #071a35 !important;
    border-radius: 5px !important;
    padding: 0 4px !important;
    box-shadow: 0 0 0 1px rgba(147, 108, 0, .32) inset !important;
    font-weight: 900 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-first-match {
    border-color: rgba(11, 115, 255, .48) !important;
    box-shadow:
        0 14px 30px rgba(19, 65, 132, .14),
        0 0 0 4px rgba(11, 115, 255, .10) !important;
}

/* El botón Volver al anterior se mantiene claro en Newsletter. */
.newsletter-public-page.newsletter-public-theme-showcase .return-to-caller-button,
.newsletter-public-page.newsletter-public-theme-showcase a.return-to-caller-button {
    background: #ffffff !important;
    color: #0b73ff !important;
    border: 1px solid rgba(11, 115, 255, .32) !important;
    text-shadow: none !important;
    font-weight: 850 !important;
}


/* ============================================================
   V_447 - Newsletter: navegación de coincidencias y azul marino
   Base: V_446.
   Cambios:
   - Buscar, Limpiar, Anterior y Siguiente en azul marino/azul oscuro.
   - Botones Anterior/Siguiente en la misma línea del mensaje.
   - Coincidencia actual más visible y con scroll automático.
   ============================================================ */

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-button,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-clear-button,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-nav-button {
    height: 40px !important;
    min-width: 96px !important;
    padding: 0 16px !important;
    border: 1px solid rgba(6, 35, 86, .72) !important;
    border-radius: 13px !important;
    background: linear-gradient(180deg, #123f86 0%, #082b5f 100%) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    letter-spacing: .01em !important;
    text-shadow: none !important;
    box-shadow: 0 10px 22px rgba(8, 43, 95, .22) !important;
    cursor: pointer !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-button:hover,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-clear-button:hover,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-nav-button:hover,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-button:focus-visible,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-clear-button:focus-visible,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-nav-button:focus-visible {
    background: linear-gradient(180deg, #174f9f 0%, #0a3472 100%) !important;
    border-color: rgba(6, 35, 86, .92) !important;
    box-shadow: 0 12px 26px rgba(8, 43, 95, .28), 0 0 0 4px rgba(8, 43, 95, .12) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-status {
    grid-column: 1 / -1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin: -2px 0 0 !important;
    padding: 9px 12px !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    border: 1px solid rgba(8, 43, 95, .34) !important;
    color: #061f4f !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    text-shadow: none !important;
    box-shadow: 0 8px 18px rgba(19, 65, 132, .12) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-status-empty {
    color: #7b3500 !important;
    border-color: rgba(194, 111, 0, .36) !important;
    background: #ffffff !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-nav {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-position {
    min-width: 58px !important;
    padding: 0 8px !important;
    color: #061f4f !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    text-align: center !important;
    white-space: nowrap !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-highlight {
    display: inline !important;
    background: #ffe66d !important;
    color: #071a35 !important;
    border-radius: 5px !important;
    padding: 0 4px !important;
    box-shadow: 0 0 0 1px rgba(147, 108, 0, .32) inset !important;
    font-weight: 900 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-current-search-highlight {
    background: #0b2f6f !important;
    color: #ffffff !important;
    box-shadow:
        0 0 0 2px rgba(255, 230, 109, .85),
        0 0 14px rgba(8, 43, 95, .28) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .newsletter-current-match-card {
    border-color: rgba(8, 43, 95, .50) !important;
    box-shadow:
        0 14px 30px rgba(19, 65, 132, .14),
        0 0 0 4px rgba(8, 43, 95, .10) !important;
}

@media (max-width: 900px) {
    .newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-status {
        align-items: stretch !important;
    }

    .newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-nav {
        width: 100% !important;
        justify-content: space-between !important;
    }

    .newsletter-public-page.newsletter-public-theme-showcase .newsletter-nav-button {
        min-width: 0 !important;
        flex: 1 1 auto !important;
    }
}


/* ============================================================
   V_448 - Newsletter: eliminar botón morado restante
   Base: V_447.
   Cambio:
   - Forzar todos los botones dentro de Newsletter a azul marino.
   - Incluye el botón inferior de registro/registrarme.
   ============================================================ */

.newsletter-public-page.newsletter-public-theme-showcase .button-primary,
.newsletter-public-page.newsletter-public-theme-showcase .button-secondary,
.newsletter-public-page.newsletter-public-theme-showcase a.button-primary,
.newsletter-public-page.newsletter-public-theme-showcase a.button-secondary,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-register-link,
.newsletter-public-page.newsletter-public-theme-showcase a.newsletter-register-link,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-button,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-clear-button,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-nav-button {
    background: linear-gradient(180deg, #123f86 0%, #082b5f 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(6, 35, 86, .78) !important;
    box-shadow: 0 10px 22px rgba(8, 43, 95, .22) !important;
    text-shadow: none !important;
    font-weight: 850 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .button-primary:hover,
.newsletter-public-page.newsletter-public-theme-showcase .button-secondary:hover,
.newsletter-public-page.newsletter-public-theme-showcase a.button-primary:hover,
.newsletter-public-page.newsletter-public-theme-showcase a.button-secondary:hover,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-register-link:hover,
.newsletter-public-page.newsletter-public-theme-showcase a.newsletter-register-link:hover,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-button:hover,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-clear-button:hover,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-nav-button:hover,
.newsletter-public-page.newsletter-public-theme-showcase .button-primary:focus-visible,
.newsletter-public-page.newsletter-public-theme-showcase .button-secondary:focus-visible,
.newsletter-public-page.newsletter-public-theme-showcase a.button-primary:focus-visible,
.newsletter-public-page.newsletter-public-theme-showcase a.button-secondary:focus-visible,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-register-link:focus-visible,
.newsletter-public-page.newsletter-public-theme-showcase a.newsletter-register-link:focus-visible,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-search-button:focus-visible,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-clear-button:focus-visible,
.newsletter-public-page.newsletter-public-theme-showcase .newsletter-nav-button:focus-visible {
    background: linear-gradient(180deg, #174f9f 0%, #0a3472 100%) !important;
    color: #ffffff !important;
    border-color: rgba(6, 35, 86, .94) !important;
    box-shadow: 0 12px 26px rgba(8, 43, 95, .28), 0 0 0 4px rgba(8, 43, 95, .12) !important;
}

/* Excepción: el botón "Volver al anterior" debe seguir azul sobre fondo blanco. */
.newsletter-public-page.newsletter-public-theme-showcase .return-to-caller-button,
.newsletter-public-page.newsletter-public-theme-showcase a.return-to-caller-button {
    background: #ffffff !important;
    color: #0b73ff !important;
    border: 1px solid rgba(11, 115, 255, .32) !important;
    box-shadow: 0 10px 22px rgba(19, 65, 132, .12) !important;
    text-shadow: none !important;
    font-weight: 850 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase .return-to-caller-button:hover,
.newsletter-public-page.newsletter-public-theme-showcase a.return-to-caller-button:hover,
.newsletter-public-page.newsletter-public-theme-showcase .return-to-caller-button:focus-visible,
.newsletter-public-page.newsletter-public-theme-showcase a.return-to-caller-button:focus-visible {
    background: #ffffff !important;
    color: #075ccc !important;
    border-color: rgba(11, 115, 255, .48) !important;
    box-shadow: 0 12px 26px rgba(19, 65, 132, .16), 0 0 0 4px rgba(11, 115, 255, .10) !important;
}


/* ============================================================
   V_451 - Web+: corrección real Sobre mí / Plataformas
   Base: V_448.
   Motivo:
   - V_449 y V_450 quedan descartadas.
   - Había una regla más específica que seguía imponiendo amarillo/negro:
     .work-modal-backdrop.desktop-theme-showcase .work-modal.branded-modal
   Alcance:
   - Solo Web+.
   - Solo modal Sobre mí.
   - Solo modal Plataformas.
   - NO tocar logos ni recolorear imágenes.
   ============================================================ */

/* Backdrop claro azul SOLO cuando el modal abierto es Sobre mí o Plataformas. */
.work-modal-backdrop.desktop-theme-showcase:has(.work-modal.about-modal.branded-modal),
.work-modal-backdrop.desktop-theme-showcase:has(.work-modal.contact-modal.branded-modal) {
    background: rgba(222, 241, 255, .72) !important;
    backdrop-filter: blur(4px) !important;
}

/* Ganar directamente a .work-modal.branded-modal amarillo/negro. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal {
    position: relative !important;
    border: 1.5px solid rgba(0, 132, 255, .82) !important;
    border-radius: 18px !important;
    background:
        radial-gradient(circle at 14% 0%, rgba(0, 136, 255, .11), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f5fbff 100%) !important;
    color: #0b1b3a !important;
    box-shadow:
        0 0 0 1px rgba(0, 184, 255, .26) inset,
        0 0 24px rgba(0, 136, 255, .36),
        0 22px 64px rgba(0, 72, 145, .22) !important;
    text-shadow: none !important;
    overflow: hidden !important;
}

/* Contenido interno claro con línea azul, no negro. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .about-modal-content,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-modal-content {
    background:
        linear-gradient(90deg, rgba(0, 136, 255, .14), transparent 1px) 0 0 / 24px 24px,
        linear-gradient(180deg, #ffffff 0%, #f7fcff 100%) !important;
    border: 1px solid rgba(0, 132, 255, .28) !important;
    color: #0b1b3a !important;
    box-shadow:
        0 0 0 1px rgba(0, 184, 255, .12) inset,
        0 0 18px rgba(0, 136, 255, .16) !important;
    text-shadow: none !important;
}

/* Badge del logo: solo cambia el marco, NO el logo. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .modal-brand-badge,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .modal-brand-badge {
    background: #ffffff !important;
    border: 1px solid rgba(0, 132, 255, .56) !important;
    box-shadow:
        0 0 0 1px rgba(0, 184, 255, .14) inset,
        0 0 16px rgba(0, 136, 255, .20) !important;
}

/* Logo oficial intacto: sin filtro, sin azul, sin sombra amarilla. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .modal-brand-logo,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .modal-brand-logo {
    filter: none !important;
    opacity: 1 !important;
    box-shadow: none !important;
}

/* Botón cerrar: eliminar amarillo/negro y dejar azul/blanco. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .work-modal-close,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .work-modal-close {
    background: #ffffff !important;
    color: #0b63d8 !important;
    border: 1px solid rgba(0, 132, 255, .62) !important;
    box-shadow:
        0 0 0 1px rgba(0, 184, 255, .14) inset,
        0 0 18px rgba(0, 136, 255, .22) !important;
    text-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .work-modal-close:hover,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .work-modal-close:hover,
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .work-modal-close:focus-visible,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .work-modal-close:focus-visible {
    background: #f2f9ff !important;
    color: #063f8c !important;
    border-color: rgba(0, 132, 255, .84) !important;
    box-shadow:
        0 0 0 4px rgba(0, 136, 255, .12),
        0 0 22px rgba(0, 136, 255, .28) !important;
}

/* Encabezados de ambos modales. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .about-modal-header,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-modal-header {
    border-bottom: 1px solid rgba(0, 132, 255, .42) !important;
    box-shadow: 0 12px 22px -20px rgba(0, 136, 255, .44) !important;
    text-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .about-modal-kicker,
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .about-modal-header h3,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-modal-header h3 {
    color: #063f8c !important;
    text-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-modal-header p,
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .about-modal-body {
    color: #3f5875 !important;
    text-shadow: none !important;
}

/* Sobre mí: foto y párrafos con azul neón, no amarillo/negro. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .about-modal-photo-frame {
    background: linear-gradient(180deg, #ffffff 0%, #edf8ff 100%) !important;
    border: 1px solid rgba(0, 132, 255, .58) !important;
    box-shadow:
        0 0 0 1px rgba(0, 184, 255, .12) inset,
        0 0 18px rgba(0, 136, 255, .20),
        0 14px 30px rgba(0, 80, 160, .12) !important;
}

.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .about-modal-photo {
    filter: none !important;
    box-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .about-modal-body p {
    background: rgba(255, 255, 255, .94) !important;
    border: 1px solid rgba(0, 132, 255, .30) !important;
    box-shadow:
        0 0 0 1px rgba(0, 184, 255, .08) inset,
        0 8px 18px rgba(0, 92, 184, .08) !important;
    color: #344d6d !important;
    text-shadow: none !important;
}

/* Plataformas: tarjetas claras, bordes azules y aura azul. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-option {
    background: linear-gradient(180deg, #ffffff 0%, #edf7ff 100%) !important;
    border: 1px solid rgba(0, 132, 255, .40) !important;
    color: #0b1b3a !important;
    box-shadow:
        0 0 0 1px rgba(0, 184, 255, .10) inset,
        0 10px 24px rgba(0, 92, 184, .11) !important;
    text-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-option:hover,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-option:focus-visible {
    background: linear-gradient(180deg, #ffffff 0%, #e7f5ff 100%) !important;
    border-color: rgba(0, 132, 255, .70) !important;
    box-shadow:
        0 0 0 1px rgba(0, 184, 255, .18) inset,
        0 0 22px rgba(0, 136, 255, .30),
        0 14px 30px rgba(0, 92, 184, .14) !important;
}

.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-option strong {
    color: #063f8c !important;
    text-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-option small {
    color: #486380 !important;
    text-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-brand-art,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-brand-art-frame,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-brand-core {
    background:
        radial-gradient(circle, rgba(0, 184, 255, .16), transparent 62%),
        linear-gradient(180deg, #ffffff 0%, #edf8ff 100%) !important;
    border-color: rgba(0, 132, 255, .46) !important;
    box-shadow:
        0 0 0 1px rgba(0, 184, 255, .12) inset,
        0 0 16px rgba(0, 136, 255, .18) !important;
}

/* Iconos de plataformas intactos. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-brand-logo {
    filter: none !important;
    box-shadow: none !important;
}

/* Limpieza final de sombras de texto SCI solo en estos dos modales Web+. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal *,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal * {
    text-shadow: none !important;
}


/* ============================================================
   V_452 - Web+: logotipo sin marco en Sobre mí, Plataformas y Contacto
   Base: V_451.
   Cambio solicitado:
   - El logotipo IQ va sin marco.
   - Quitar recuadro/badge/fondo/borde/sombra alrededor del logo.
   - NO modificar el logotipo.
   - NO recolorear.
   - NO aplicar filtros.
   ============================================================ */

/* Sobre mí y Plataformas: quitar el marco del contenedor del logo. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .modal-brand-badge,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .modal-brand-badge {
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Contacto directo: quitar el marco del contenedor del logo. */
.work-modal-backdrop.desktop-theme-showcase .direct-contact-modal .direct-contact-brand-badge,
.work-modal-backdrop.desktop-theme-showcase .contact-form-modal .direct-contact-brand-badge {
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Logo oficial IQ intacto: sin filtro, sin recoloreo, sin sombra. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .modal-brand-logo,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .modal-brand-logo,
.work-modal-backdrop.desktop-theme-showcase .direct-contact-modal .direct-contact-brand-logo,
.work-modal-backdrop.desktop-theme-showcase .contact-form-modal .direct-contact-brand-logo {
    filter: none !important;
    opacity: 1 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
}

/* Respaldo global para Contacto directo si el modal se monta fuera del alcance visual del dashboard. */
.direct-contact-modal .direct-contact-brand-badge,
.contact-form-modal .direct-contact-brand-badge {
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.direct-contact-modal .direct-contact-brand-logo,
.contact-form-modal .direct-contact-brand-logo {
    filter: none !important;
    opacity: 1 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
}


/* ============================================================
   V_453 - Web+: quitar línea/aura no pedida debajo del logotipo
   Base: V_452.
   Cambio solicitado:
   - En Acerca de mí/Sobre mí y Plataformas apareció una línea delgada
     con aura neón debajo del logotipo.
   - No fue solicitada.
   - Quitar únicamente esa línea/aura.
   ============================================================ */

/* La línea venía del borde/sombra del encabezado del modal.
   Se elimina solo en Web+ y solo en Sobre mí y Plataformas. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .about-modal-header,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-modal-header {
    border-bottom: 0 !important;
    box-shadow: none !important;
}

/* Respaldo por si algún pseudo-elemento del encabezado genera la línea. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .about-modal-header::before,
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .about-modal-header::after,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-modal-header::before,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .contact-modal-header::after {
    content: none !important;
    display: none !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* El logotipo sigue intacto: sin marco y sin recoloreo. */
.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .modal-brand-badge,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .modal-brand-badge {
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.work-modal-backdrop.desktop-theme-showcase .work-modal.about-modal.branded-modal .modal-brand-logo,
.work-modal-backdrop.desktop-theme-showcase .work-modal.contact-modal.branded-modal .modal-brand-logo {
    filter: none !important;
    opacity: 1 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
}


/* ============================================================
   V_454 - Web+: logotipo IQ azul según color adjunto
   Base: V_453.
   Color tomado del adjunto: #0369F5
   Alcance:
   - Solo Web+ mediante ModalLogoSrc.
   - Ventanas/pantallas: Plataformas, Contacto, Marca y Sobre mí.
   Reglas:
   - Sin marco.
   - Sin filtro CSS.
   - Sin recolorear por CSS.
   - Asset amarillo original intacto.
   ============================================================ */

.work-modal-backdrop.desktop-theme-showcase .modal-brand-logo,
.work-modal-backdrop.desktop-theme-showcase .direct-contact-brand-logo,
.work-modal-backdrop.desktop-theme-showcase img.modal-brand-logo,
.work-modal-backdrop.desktop-theme-showcase img.direct-contact-brand-logo {
    filter: none !important;
    opacity: 1 !important;
    box-shadow: none !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
}

.work-modal-backdrop.desktop-theme-showcase .modal-brand-badge,
.work-modal-backdrop.desktop-theme-showcase .direct-contact-brand-badge {
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}




/* V_461 - WEB+ Mi Portada: abrir más la imagen de Ignacio Quijas y sus robots */
.home-dashboard.desktop-theme-showcase .showcase-avatar-frame {
    width: 222px !important;
    height: 222px !important;
    border-radius: 28px !important;
}

.home-dashboard.desktop-theme-showcase .showcase-avatar-frame img {
    object-fit: cover !important;
    object-position: center 24% !important;
}



/* V_469 - SCI Registro modal real dentro del Dashboard, no página falsa */
.home-dashboard:not(.desktop-theme-showcase).register-modal-open,
.home-dashboard:not(.desktop-theme-showcase):has(+ .register-modal-backdrop) {
    filter: blur(4px) brightness(.58) saturate(.86) !important;
    transform: none !important;
}

.work-modal-backdrop.register-modal-backdrop {
    background:
        radial-gradient(circle at 50% 24%, rgba(0, 229, 255, .14), transparent 24rem),
        rgba(0, 0, 0, .54) !important;
    backdrop-filter: blur(3px) brightness(.72) !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-window {
    width: 390px !important;
    max-width: calc(100vw - 36px) !important;
    max-height: calc(100vh - 44px) !important;
    overflow: auto !important;
    padding: 12px 12px 14px !important;
    border: 1px solid rgba(68, 198, 255, .48) !important;
    border-radius: 18px !important;
    background:
        linear-gradient(180deg, rgba(8, 18, 34, .98), rgba(3, 9, 22, .99)) !important;
    box-shadow:
        0 0 0 1px rgba(155, 86, 255, .16),
        0 0 28px rgba(0, 229, 255, .26),
        0 24px 56px rgba(0, 0, 0, .68),
        inset 0 0 18px rgba(68, 198, 255, .10) !important;
    box-sizing: border-box !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-content {
    width: 100% !important;
    max-width: 100% !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-header {
    margin: 0 0 8px !important;
    padding: 9px 10px 8px !important;
    border: 1px solid rgba(68, 198, 255, .24) !important;
    border-radius: 13px !important;
    background: rgba(1, 8, 18, .62) !important;
    box-shadow: inset 0 0 12px rgba(68, 198, 255, .06) !important;
    text-align: center !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-header h3 {
    margin: 0 !important;
    font-size: 22px !important;
    line-height: 1.02 !important;
    letter-spacing: -.02em !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-header p {
    margin: 5px auto 0 !important;
    max-width: 310px !important;
    font-size: 11px !important;
    line-height: 1.25 !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-form {
    gap: 0 !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
}

.work-modal-backdrop.register-modal-backdrop .contact-form-field {
    gap: 3px !important;
}

.work-modal-backdrop.register-modal-backdrop .contact-form-field span,
.work-modal-backdrop.register-modal-backdrop .register-modal-checks label,
.work-modal-backdrop.register-modal-backdrop .direct-contact-required-note {
    font-size: 10.5px !important;
    line-height: 1.18 !important;
}

.work-modal-backdrop.register-modal-backdrop .contact-form-input {
    min-height: 26px !important;
    padding: 5px 7px !important;
    border-radius: 7px !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-checks {
    display: grid !important;
    gap: 5px !important;
    margin: 8px 0 !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-checks label {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-top: 7px !important;
}

.work-modal-backdrop.register-modal-backdrop .registration-privacy-button,
.work-modal-backdrop.register-modal-backdrop .direct-contact-submit {
    min-height: 28px !important;
    padding: 6px 10px !important;
    border-radius: 8px !important;
    font-size: 11px !important;
}

.work-modal-backdrop.register-modal-backdrop .alert {
    margin-top: 8px !important;
    padding: 8px 9px !important;
    border-radius: 9px !important;
    font-size: 11px !important;
    line-height: 1.25 !important;
}



/* V_470 - SCI Registro modal: ventana 40% más grande, textos congruentes y checkboxes alineados */
.work-modal-backdrop.register-modal-backdrop .register-modal-window {
    width: 546px !important;
    max-width: calc(100vw - 44px) !important;
    padding: 17px 17px 19px !important;
    border-radius: 22px !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-header {
    margin: 0 0 12px !important;
    padding: 13px 14px 12px !important;
    border-radius: 16px !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-header h3 {
    font-size: 31px !important;
    line-height: 1.02 !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-header p {
    max-width: 448px !important;
    margin-top: 8px !important;
    font-size: 15.5px !important;
    line-height: 1.32 !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-grid {
    gap: 10px !important;
}

.work-modal-backdrop.register-modal-backdrop .contact-form-field {
    gap: 5px !important;
}

.work-modal-backdrop.register-modal-backdrop .contact-form-field span {
    font-size: 14px !important;
    line-height: 1.2 !important;
}

.work-modal-backdrop.register-modal-backdrop .contact-form-input {
    min-height: 37px !important;
    padding: 8px 10px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-checks {
    gap: 8px !important;
    margin: 12px 0 !important;
    padding: 10px 11px !important;
    border: 1px solid rgba(68, 198, 255, .18) !important;
    border-radius: 12px !important;
    background: rgba(1, 8, 18, .35) !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-checks label {
    display: grid !important;
    grid-template-columns: 20px 1fr !important;
    align-items: start !important;
    column-gap: 10px !important;
    min-height: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-checks input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    margin: 2px 0 0 !important;
    accent-color: #44c6ff !important;
    justify-self: center !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-checks label span {
    display: inline !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
}

.work-modal-backdrop.register-modal-backdrop .direct-contact-required-note {
    font-size: 13px !important;
    line-height: 1.25 !important;
    margin: 9px 0 !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-actions {
    grid-template-columns: 1fr 1fr !important;
    gap: 11px !important;
    margin-top: 11px !important;
}

.work-modal-backdrop.register-modal-backdrop .registration-privacy-button,
.work-modal-backdrop.register-modal-backdrop .direct-contact-submit {
    min-height: 39px !important;
    padding: 8px 13px !important;
    border-radius: 11px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
}

.work-modal-backdrop.register-modal-backdrop .alert {
    margin-top: 12px !important;
    padding: 11px 13px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    line-height: 1.32 !important;
}



/* V_471 - SCI Registro modal: marcos Amarillo Fuego con aura neón */
.work-modal-backdrop.register-modal-backdrop {
    background:
        radial-gradient(circle at 50% 24%, rgba(255, 191, 0, .16), transparent 24rem),
        rgba(0, 0, 0, .54) !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-window {
    border-color: rgba(255, 191, 0, .82) !important;
    box-shadow:
        0 0 0 1px rgba(255, 125, 0, .34),
        0 0 18px rgba(255, 191, 0, .52),
        0 0 34px rgba(255, 125, 0, .34),
        0 24px 56px rgba(0, 0, 0, .68),
        inset 0 0 16px rgba(255, 191, 0, .18),
        inset 0 0 28px rgba(255, 125, 0, .10) !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-header {
    border-color: rgba(255, 191, 0, .62) !important;
    box-shadow:
        0 0 12px rgba(255, 191, 0, .22),
        inset 0 0 14px rgba(255, 191, 0, .12) !important;
}

.work-modal-backdrop.register-modal-backdrop .register-modal-checks {
    border-color: rgba(255, 191, 0, .42) !important;
    box-shadow:
        0 0 10px rgba(255, 191, 0, .14),
        inset 0 0 12px rgba(255, 191, 0, .08) !important;
}

.work-modal-backdrop.register-modal-backdrop .contact-form-input {
    border-color: rgba(255, 191, 0, .38) !important;
    box-shadow:
        0 0 8px rgba(255, 191, 0, .10),
        inset 0 0 8px rgba(255, 191, 0, .06) !important;
}

.work-modal-backdrop.register-modal-backdrop .contact-form-input:focus {
    border-color: rgba(255, 191, 0, .86) !important;
    box-shadow:
        0 0 0 2px rgba(255, 191, 0, .18),
        0 0 14px rgba(255, 191, 0, .30),
        inset 0 0 8px rgba(255, 191, 0, .08) !important;
}

.work-modal-backdrop.register-modal-backdrop .registration-privacy-button,
.work-modal-backdrop.register-modal-backdrop .direct-contact-submit {
    border-color: rgba(255, 191, 0, .52) !important;
    box-shadow:
        0 0 10px rgba(255, 191, 0, .20),
        inset 0 0 10px rgba(255, 191, 0, .08) !important;
}

.work-modal-backdrop.register-modal-backdrop .direct-contact-brand-badge {
    border-color: rgba(255, 191, 0, .72) !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .36),
        inset 0 0 12px rgba(255, 191, 0, .12) !important;
}

.work-modal-backdrop.register-modal-backdrop .direct-contact-modal-close {
    border-color: rgba(255, 191, 0, .60) !important;
    color: #ffbf00 !important;
    box-shadow:
        0 0 12px rgba(255, 191, 0, .26),
        inset 0 0 8px rgba(255, 191, 0, .10) !important;
}



/* V_472 - SCI Descargas: misma experiencia visual del Registro V_471 */
.home-dashboard:not(.desktop-theme-showcase).download-modal-open {
    filter: blur(4px) brightness(.58) saturate(.86) !important;
    transform: none !important;
}

.work-modal-backdrop.download-modal-backdrop .download-modal-body {
    display: grid !important;
    gap: 12px !important;
    padding: 2px 0 0 !important;
}

.work-modal-backdrop.download-modal-backdrop .download-modal-body h4 {
    margin: 0 !important;
    color: #ffbf00 !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
    letter-spacing: .01em !important;
    text-shadow: 0 0 12px rgba(255, 191, 0, .34) !important;
}

.work-modal-backdrop.download-modal-backdrop .download-modal-body p {
    margin: 0 !important;
    color: rgba(236, 248, 255, .88) !important;
    font-size: 15px !important;
    line-height: 1.36 !important;
}

.work-modal-backdrop.download-modal-backdrop .download-modal-status-list {
    display: grid !important;
    gap: 8px !important;
    padding: 10px 11px !important;
    border: 1px solid rgba(255, 191, 0, .42) !important;
    border-radius: 12px !important;
    background: rgba(1, 8, 18, .35) !important;
    box-shadow:
        0 0 10px rgba(255, 191, 0, .14),
        inset 0 0 12px rgba(255, 191, 0, .08) !important;
}

.work-modal-backdrop.download-modal-backdrop .download-modal-status-list div {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 30px !important;
    padding: 6px 8px !important;
    border: 1px solid rgba(255, 191, 0, .24) !important;
    border-radius: 10px !important;
    background: rgba(255, 191, 0, .045) !important;
}

.work-modal-backdrop.download-modal-backdrop .download-modal-status-list span {
    color: rgba(236, 248, 255, .82) !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
}

.work-modal-backdrop.download-modal-backdrop .download-modal-status-list strong {
    color: #ffbf00 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    text-align: right !important;
    text-shadow: 0 0 10px rgba(255, 191, 0, .28) !important;
}

.work-modal-backdrop.download-modal-backdrop .download-modal-actions {
    margin-top: 2px !important;
}

.work-modal-backdrop.download-modal-backdrop .download-modal-actions a,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}



/* V_473 - SCI: limpiar ventana "Estamos trabajando" de contaminación azul/Web+ */
.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) {
    background:
        radial-gradient(circle at 50% 24%, rgba(255, 191, 0, .14), transparent 24rem),
        rgba(0, 0, 0, .58) !important;
    backdrop-filter: blur(4px) brightness(.66) saturate(.82) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .work-modal.branded-modal {
    border: 1px solid rgba(255, 191, 0, .78) !important;
    background:
        linear-gradient(180deg, rgba(8, 15, 25, .98), rgba(3, 8, 18, .99)) !important;
    box-shadow:
        0 0 0 1px rgba(255, 125, 0, .30),
        0 0 18px rgba(255, 191, 0, .45),
        0 0 36px rgba(255, 125, 0, .30),
        0 24px 60px rgba(0, 0, 0, .72),
        inset 0 0 18px rgba(255, 191, 0, .13),
        inset 0 0 28px rgba(255, 125, 0, .08) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .modal-brand-badge {
    border-color: rgba(255, 191, 0, .72) !important;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 191, 0, .18), rgba(5, 10, 19, .96) 68%) !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .36),
        inset 0 0 12px rgba(255, 191, 0, .12) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .work-modal-close {
    border-color: rgba(255, 191, 0, .60) !important;
    color: #ffbf00 !important;
    background: rgba(8, 13, 23, .92) !important;
    box-shadow:
        0 0 12px rgba(255, 191, 0, .26),
        inset 0 0 8px rgba(255, 191, 0, .10) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .modal-work-placeholder,
.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .work-placeholder {
    border-color: rgba(255, 191, 0, .36) !important;
    background:
        linear-gradient(180deg, rgba(4, 10, 20, .78), rgba(2, 7, 16, .84)) !important;
    box-shadow:
        inset 0 0 18px rgba(255, 191, 0, .08),
        0 0 12px rgba(255, 191, 0, .12) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .working-image-frame {
    border-color: rgba(255, 191, 0, .52) !important;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 191, 0, .13), rgba(3, 8, 18, .90) 70%) !important;
    box-shadow:
        0 0 18px rgba(255, 191, 0, .20),
        inset 0 0 18px rgba(255, 191, 0, .08) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .work-placeholder h3,
.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .modal-work-placeholder h3 {
    color: #ffbf00 !important;
    text-shadow:
        0 0 10px rgba(255, 191, 0, .42),
        0 0 22px rgba(255, 125, 0, .28) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .work-placeholder p,
.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .modal-work-placeholder p {
    color: rgba(236, 248, 255, .86) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .work-placeholder strong,
.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .modal-work-placeholder strong {
    color: #ffbf00 !important;
    text-shadow: 0 0 10px rgba(255, 191, 0, .34) !important;
}



/* V_475 - SCI: sustituir azul casi blanco de "Estamos trabajando" por negro/carbón */
.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .work-placeholder-inner,
.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .working-image-frame,
.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .working-image,
.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .work-placeholder img,
.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .working-image-frame img {
    background-color: #050505 !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .working-image-frame {
    background:
        linear-gradient(180deg, rgba(7, 7, 6, .98), rgba(0, 0, 0, .99)) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .work-placeholder-inner {
    background:
        linear-gradient(180deg, rgba(8, 8, 7, .92), rgba(2, 2, 2, .96)) !important;
}

/* Apaga el azul claro casi blanco de la imagen sin cambiar toda la ventana */
.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .working-image {
    mix-blend-mode: multiply !important;
}



/* V_476 - SCI: restaurar imagen Ignacio Quijas con robots, conservando fondo negro V_475 */
.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .working-image {
    mix-blend-mode: normal !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    background-color: transparent !important;
    filter: brightness(.92) contrast(1.08) saturate(.82) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase):not(.register-modal-backdrop) .working-image-frame img {
    opacity: 1 !important;
    visibility: visible !important;
}



/* V_478 - SCI Contacto directo: corregir la ventana real del formulario, quitar blanco/Web+ */
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal {
    border: 1px solid rgba(255, 191, 0, .88) !important;
    border-radius: 24px !important;
    background:
        linear-gradient(180deg, rgba(10, 9, 7, .985), rgba(2, 2, 2, .995)) !important;
    color: rgba(255, 244, 214, .92) !important;
    box-shadow:
        0 0 0 1px rgba(255, 125, 0, .34),
        0 0 22px rgba(255, 191, 0, .54),
        0 0 46px rgba(255, 125, 0, .32),
        0 26px 64px rgba(0, 0, 0, .78),
        inset 0 0 18px rgba(255, 191, 0, .14),
        inset 0 0 32px rgba(255, 125, 0, .08) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .direct-contact-brand-badge {
    border-color: rgba(255, 191, 0, .82) !important;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 191, 0, .20), rgba(8, 7, 4, .96) 70%) !important;
    box-shadow:
        0 0 16px rgba(255, 191, 0, .42),
        0 0 28px rgba(255, 125, 0, .20),
        inset 0 0 12px rgba(255, 191, 0, .14) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .direct-contact-brand-logo {
    filter: brightness(1.04) contrast(1.08) saturate(.92) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .direct-contact-modal-close {
    border-color: rgba(255, 191, 0, .72) !important;
    color: #ffbf00 !important;
    background: rgba(10, 8, 4, .96) !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .36),
        inset 0 0 9px rgba(255, 191, 0, .12) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .contact-form-content {
    border: 1px solid rgba(255, 191, 0, .36) !important;
    border-radius: 18px !important;
    background:
        linear-gradient(180deg, rgba(8, 8, 7, .86), rgba(2, 2, 2, .93)) !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .12),
        inset 0 0 18px rgba(255, 191, 0, .08) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .contact-form-header {
    border-bottom: 1px solid rgba(255, 191, 0, .30) !important;
    background: transparent !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .contact-form-header h3 {
    color: #ffbf00 !important;
    text-shadow:
        0 0 12px rgba(255, 191, 0, .46),
        0 0 26px rgba(255, 125, 0, .28) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .contact-form-header p {
    color: rgba(255, 244, 214, .86) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .contact-form-field span {
    color: rgba(255, 244, 214, .92) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .contact-form-field em,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .direct-contact-required-note em {
    color: #ffbf00 !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .contact-form-input,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .contact-form-editor {
    border: 1px solid rgba(255, 191, 0, .42) !important;
    background:
        linear-gradient(180deg, rgba(4, 4, 3, .98), rgba(0, 0, 0, .99)) !important;
    color: rgba(255, 244, 214, .96) !important;
    box-shadow:
        0 0 10px rgba(255, 191, 0, .12),
        inset 0 0 12px rgba(255, 191, 0, .06) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .contact-form-input:focus,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .contact-form-editor:focus {
    border-color: rgba(255, 191, 0, .86) !important;
    box-shadow:
        0 0 0 2px rgba(255, 191, 0, .18),
        0 0 16px rgba(255, 191, 0, .30),
        inset 0 0 12px rgba(255, 191, 0, .08) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .direct-contact-required-note {
    color: rgba(255, 244, 214, .84) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .direct-contact-submit {
    border: 1px solid rgba(255, 191, 0, .72) !important;
    background:
        linear-gradient(180deg, rgba(255, 191, 0, .92), rgba(255, 111, 0, .86)) !important;
    color: #120a00 !important;
    text-shadow: none !important;
    box-shadow:
        0 0 18px rgba(255, 191, 0, .34),
        0 0 30px rgba(255, 111, 0, .18),
        inset 0 0 10px rgba(255, 255, 255, .16) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal .alert {
    border-color: rgba(255, 191, 0, .42) !important;
    background: rgba(8, 8, 7, .88) !important;
    color: rgba(255, 244, 214, .90) !important;
}



/* V_479 - SCI: logotipo sin recuadro en ventanas arregladas */
.work-modal-backdrop:not(.desktop-theme-showcase) .modal-brand-badge,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-brand-badge {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .modal-brand-badge::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .modal-brand-badge::after,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-brand-badge::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-brand-badge::after {
    content: none !important;
    display: none !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .modal-brand-logo,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-brand-logo {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    filter: none !important;
}



/* V_480 - SCI global: cualquier logo de modal sin recuadro, sin badge, sin caja */
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .modal-brand-badge,
    .direct-contact-brand-badge,
    .brand-modal-badge,
    .contact-brand-badge,
    .language-brand-badge,
    .about-brand-badge
) {
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .modal-brand-badge,
    .direct-contact-brand-badge,
    .brand-modal-badge,
    .contact-brand-badge,
    .language-brand-badge,
    .about-brand-badge
)::before,
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .modal-brand-badge,
    .direct-contact-brand-badge,
    .brand-modal-badge,
    .contact-brand-badge,
    .language-brand-badge,
    .about-brand-badge
)::after {
    content: none !important;
    display: none !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* También cubre cualquier contenedor inmediato que esté encerrando un logo en modales SCI */
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .modal-brand-badge,
    .direct-contact-brand-badge,
    .brand-modal-badge,
    .contact-brand-badge,
    .language-brand-badge,
    .about-brand-badge
) > * {
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

/* El logo queda visible, limpio y sin caja */
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .modal-brand-logo,
    .direct-contact-brand-logo,
    .brand-modal-logo,
    .contact-brand-logo,
    .language-brand-logo,
    .about-brand-logo
),
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .modal-brand-badge,
    .direct-contact-brand-badge,
    .brand-modal-badge,
    .contact-brand-badge,
    .language-brand-badge,
    .about-brand-badge
) img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}



/* V_481 - SCI: quitar el contenedor real del logotipo en modales; logo directo sin caja */
.work-modal-backdrop:not(.desktop-theme-showcase) .sci-modal-brand-logo-standalone,
.language-modal-backdrop:not(.desktop-theme-showcase) .sci-modal-brand-logo-standalone {
    position: absolute !important;
    top: 18px !important;
    left: 18px !important;
    width: 54px !important;
    height: 54px !important;
    object-fit: contain !important;
    z-index: 4 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    filter: none !important;
}

/* En SCI, cualquier badge que quedara por CSS o DOM queda invisible como contenedor, nunca como marco */
.work-modal-backdrop:not(.desktop-theme-showcase) .modal-brand-badge,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-brand-badge,
.language-modal-backdrop:not(.desktop-theme-showcase) .modal-brand-badge {
    display: contents !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}



/* V_482 - SCI Marcas: misma distribución espacial Web+, con colores y tonos SCI */
.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) > .work-modal.brands-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) > .work-modal.detached-panel-modal.brands-modal {
    position: relative !important;
    width: min(720px, calc(100vw - 72px)) !important;
    max-width: min(720px, calc(100vw - 72px)) !important;
    max-height: calc(100vh - 72px) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    border: 1px solid rgba(255, 191, 0, .82) !important;
    border-radius: 20px !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 191, 0, .10), transparent 24rem),
        linear-gradient(180deg, rgba(10, 9, 7, .985), rgba(2, 2, 2, .995)) !important;
    color: rgba(255, 244, 214, .92) !important;
    box-shadow:
        0 0 0 1px rgba(255, 125, 0, .30),
        0 0 22px rgba(255, 191, 0, .42),
        0 0 46px rgba(255, 125, 0, .22),
        0 26px 64px rgba(0, 0, 0, .78),
        inset 0 0 18px rgba(255, 191, 0, .12),
        inset 0 0 32px rgba(255, 125, 0, .07) !important;
    overflow: hidden !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .sci-modal-brand-logo-standalone {
    top: 14px !important;
    left: 18px !important;
    width: 54px !important;
    height: 54px !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .work-modal-close {
    top: 14px !important;
    right: 14px !important;
    width: 36px !important;
    height: 36px !important;
    border: 1px solid rgba(255, 191, 0, .64) !important;
    border-radius: 10px !important;
    background: rgba(10, 8, 4, .96) !important;
    color: #ffbf00 !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .30),
        inset 0 0 9px rgba(255, 191, 0, .10) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .detached-panel-title {
    width: 100% !important;
    margin: 0 !important;
    padding: 22px 76px 8px 116px !important;
    color: #ffbf00 !important;
    font-size: 26px !important;
    line-height: 1.1 !important;
    font-weight: 650 !important;
    text-align: center !important;
    text-shadow:
        0 0 12px rgba(255, 191, 0, .42),
        0 0 26px rgba(255, 125, 0, .24) !important;
    letter-spacing: .01em !important;
    background: transparent !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .panel-five.panel-detached-content,
.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal aside.panel-five.panel-detached-content {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100vh - 132px) !important;
    margin: 0 auto !important;
    padding: 8px 24px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255, 244, 214, .92) !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    scrollbar-color: rgba(255, 191, 0, .46) rgba(10, 8, 4, .88) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .panel-five-spacer {
    display: none !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .matrix-disclaimer {
    flex: 0 0 auto !important;
    width: min(560px, 100%) !important;
    max-width: min(560px, 100%) !important;
    margin: 0 auto !important;
    padding: 14px 18px !important;
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    text-align: center !important;
    border: 1px solid rgba(255, 191, 0, .34) !important;
    border-radius: 16px !important;
    background:
        linear-gradient(180deg, rgba(13, 11, 7, .84), rgba(4, 4, 3, .94)) !important;
    color: rgba(255, 244, 214, .82) !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .12),
        inset 0 0 18px rgba(255, 191, 0, .07) !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .matrix-disclaimer h2 {
    margin: 0 !important;
    color: #ffbf00 !important;
    font-size: 20px !important;
    line-height: 1.12 !important;
    font-weight: 650 !important;
    text-shadow:
        0 0 10px rgba(255, 191, 0, .34),
        0 0 18px rgba(255, 125, 0, .18) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .matrix-disclaimer p {
    width: min(510px, 100%) !important;
    margin: 0 !important;
    color: rgba(255, 244, 214, .78) !important;
    font-size: 13.5px !important;
    line-height: 1.38 !important;
    text-shadow: none !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .brand-panel.empty-logo-panel,
.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal section.brand-panel.empty-logo-panel {
    flex: 0 0 auto !important;
    width: 527px !important;
    min-width: 527px !important;
    max-width: 527px !important;
    height: 227px !important;
    min-height: 227px !important;
    max-height: 227px !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid rgba(255, 191, 0, .34) !important;
    border-radius: 18px !important;
    background:
        linear-gradient(180deg, rgba(8, 8, 7, .92), rgba(2, 2, 2, .98)) !important;
    color: rgba(255, 244, 214, .92) !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .13),
        inset 0 0 18px rgba(255, 191, 0, .07) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .empty-logo-grid,
.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .brand-scroll.empty-logo-grid {
    width: 525px !important;
    min-width: 525px !important;
    max-width: 525px !important;
    height: 225px !important;
    min-height: 225px !important;
    max-height: 225px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(7, 75px) !important;
    grid-template-rows: repeat(3, 75px) !important;
    gap: 0 !important;
    align-content: center !important;
    justify-content: center !important;
    background: rgba(3, 3, 3, .98) !important;
    border: 1px solid rgba(255, 191, 0, .28) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    scrollbar-color: rgba(255, 191, 0, .46) rgba(10, 8, 4, .88) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .empty-logo-button {
    width: 75px !important;
    height: 75px !important;
    min-width: 75px !important;
    min-height: 75px !important;
    max-width: 75px !important;
    max-height: 75px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid rgba(255, 191, 0, .22) !important;
    border-radius: 0 !important;
    background: rgba(0, 0, 0, .92) !important;
    box-shadow: none !important;
    display: block !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    pointer-events: none !important;
    cursor: default !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .empty-logo-button:hover,
.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .empty-logo-button:focus-visible,
.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .empty-logo-button:active {
    transform: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: rgba(0, 0, 0, .92) !important;
    border-color: rgba(255, 191, 0, .22) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .empty-logo-image {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    background: rgba(255, 255, 255, .98) !important;
    filter: none !important;
    opacity: 1 !important;
    pointer-events: none !important;
    user-select: none !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .empty-logo-panel::after,
.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .brand-panel::after {
    content: none !important;
    display: none !important;
}

@media (max-width: 620px) {
    .work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .brand-panel.empty-logo-panel,
    .work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal section.brand-panel.empty-logo-panel {
        width: 527px !important;
        min-width: 527px !important;
        max-width: 527px !important;
        height: 227px !important;
        min-height: 227px !important;
        max-height: 227px !important;
    }

    .work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .empty-logo-grid,
    .work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .brand-scroll.empty-logo-grid {
        width: 525px !important;
        min-width: 525px !important;
        max-width: 525px !important;
        height: 225px !important;
        min-height: 225px !important;
        max-height: 225px !important;
        grid-template-columns: repeat(7, 75px) !important;
        grid-template-rows: repeat(3, 75px) !important;
        overflow: hidden !important;
    }
}

@media (max-height: 760px) {
    .work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .empty-logo-grid,
    .work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .brand-scroll.empty-logo-grid {
        height: 225px !important;
        min-height: 225px !important;
        max-height: 225px !important;
        grid-template-rows: repeat(3, 75px) !important;
        overflow: hidden !important;
    }
}



/* V_484 - SCI Marcas: corregir lado inferior del marco EXTERNO, dejando marco interno como V_482 */
.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) > .work-modal.brands-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) > .work-modal.detached-panel-modal.brands-modal {
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100vh - 72px) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .panel-five.panel-detached-content,
.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal aside.panel-five.panel-detached-content {
    padding-bottom: 40px !important;
}

/* Reafirmar que el marco interno de las marcas se queda como estaba en V_482 */
.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .brand-panel.empty-logo-panel,
.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal section.brand-panel.empty-logo-panel {
    width: 527px !important;
    min-width: 527px !important;
    max-width: 527px !important;
    height: 227px !important;
    min-height: 227px !important;
    max-height: 227px !important;
    padding: 0 !important;
    margin: 0 auto !important;
    place-items: center !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .empty-logo-grid,
.work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .brand-scroll.empty-logo-grid {
    width: 525px !important;
    min-width: 525px !important;
    max-width: 525px !important;
    height: 225px !important;
    min-height: 225px !important;
    max-height: 225px !important;
    margin: 0 auto !important;
}

@media (max-width: 620px) {
    .work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .brand-panel.empty-logo-panel,
    .work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal section.brand-panel.empty-logo-panel {
        height: 227px !important;
        min-height: 227px !important;
        max-height: 227px !important;
        padding: 0 !important;
    }

    .work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .empty-logo-grid,
    .work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .brand-scroll.empty-logo-grid {
        height: 225px !important;
        min-height: 225px !important;
        max-height: 225px !important;
        margin: 0 auto !important;
    }
}

@media (max-height: 760px) {
    .work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .brand-panel.empty-logo-panel,
    .work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal section.brand-panel.empty-logo-panel {
        height: 227px !important;
        min-height: 227px !important;
        max-height: 227px !important;
        padding: 0 !important;
    }

    .work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .empty-logo-grid,
    .work-modal-backdrop:not(.desktop-theme-showcase) > .brands-modal .brand-scroll.empty-logo-grid {
        height: 225px !important;
        min-height: 225px !important;
        max-height: 225px !important;
        margin: 0 auto !important;
    }
}



/* V_485 - SCI Newsletters: misma distribución espacial Web+, con expresión visual SCI */
.newsletter-public-page.newsletter-public-theme-scifi {
    width: 100vw !important;
    min-width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    background:
        radial-gradient(circle at 14% 0%, rgba(255, 191, 0, .10), transparent 32%),
        radial-gradient(circle at 88% 8%, rgba(255, 125, 0, .08), transparent 30%),
        linear-gradient(180deg, #020202 0%, #080705 52%, #010101 100%) !important;
    color: rgba(255, 244, 214, .92) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page {
    width: 80vw !important;
    max-width: 80vw !important;
    height: 80vh !important;
    max-height: 80vh !important;
    min-width: min(80vw, 720px) !important;
    display: grid !important;
    grid-template-rows: auto auto 1fr !important;
    gap: 14px !important;
    padding: 22px 24px 24px !important;
    border: 1px solid rgba(255, 191, 0, .82) !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at 92% 0%, rgba(255, 191, 0, .13), transparent 34%),
        linear-gradient(180deg, rgba(10, 9, 7, .985), rgba(2, 2, 2, .995)) !important;
    box-shadow:
        0 0 0 1px rgba(255, 125, 0, .30),
        0 0 22px rgba(255, 191, 0, .40),
        0 0 46px rgba(255, 125, 0, .22),
        0 34px 82px rgba(0, 0, 0, .78),
        inset 0 0 18px rgba(255, 191, 0, .12),
        inset 0 0 32px rgba(255, 125, 0, .07) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-header {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 16px !important;
    align-items: start !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(255, 191, 0, .28) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-title-block {
    display: grid !important;
    gap: 6px !important;
    min-width: 0 !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-title-block .eyebrow {
    margin: 0 !important;
    color: #ffbf00 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    text-shadow: 0 0 10px rgba(255, 191, 0, .34) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-title-block h1 {
    margin: 0 !important;
    color: #ffbf00 !important;
    font-size: clamp(1.6rem, 3.1vw, 3.1rem) !important;
    line-height: 1 !important;
    font-weight: 780 !important;
    letter-spacing: -.035em !important;
    text-shadow:
        0 0 12px rgba(255, 191, 0, .42),
        0 0 26px rgba(255, 125, 0, .24) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-title-block p {
    width: min(760px, 100%) !important;
    margin: 0 !important;
    color: rgba(255, 244, 214, .78) !important;
    font-size: 15px !important;
    line-height: 1.34 !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .return-to-caller-row {
    margin: 0 !important;
    padding: 0 !important;
    align-self: start !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .return-to-caller-link,
.newsletter-public-page.newsletter-public-theme-scifi .return-to-caller-button {
    border: 1px solid rgba(255, 191, 0, .58) !important;
    background:
        linear-gradient(180deg, rgba(18, 13, 5, .96), rgba(6, 5, 3, .98)) !important;
    color: #ffbf00 !important;
    box-shadow:
        0 0 12px rgba(255, 191, 0, .20),
        inset 0 0 9px rgba(255, 191, 0, .08) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-search-panel {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: 10px !important;
    align-items: end !important;
    padding: 14px !important;
    border: 1px solid rgba(255, 191, 0, .30) !important;
    border-radius: 20px !important;
    background:
        linear-gradient(180deg, rgba(13, 11, 7, .84), rgba(4, 4, 3, .94)) !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .11),
        inset 0 0 18px rgba(255, 191, 0, .06) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-search-label {
    display: grid !important;
    gap: 6px !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-search-label span {
    color: rgba(255, 244, 214, .92) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-search-input {
    width: 100% !important;
    min-height: 40px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(255, 191, 0, .40) !important;
    border-radius: 14px !important;
    background:
        linear-gradient(180deg, rgba(4, 4, 3, .98), rgba(0, 0, 0, .99)) !important;
    color: rgba(255, 244, 214, .96) !important;
    font-size: 15px !important;
    outline: none !important;
    box-sizing: border-box !important;
    box-shadow:
        0 0 10px rgba(255, 191, 0, .10),
        inset 0 0 12px rgba(255, 191, 0, .05) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-search-input:focus {
    border-color: rgba(255, 191, 0, .82) !important;
    box-shadow:
        0 0 0 4px rgba(255, 191, 0, .12),
        0 0 16px rgba(255, 191, 0, .28),
        inset 0 0 12px rgba(255, 191, 0, .07) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-search-button,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-clear-button {
    height: 40px !important;
    min-width: 96px !important;
    white-space: nowrap !important;
    border: 1px solid rgba(255, 191, 0, .68) !important;
    background:
        linear-gradient(180deg, rgba(255, 191, 0, .92), rgba(255, 111, 0, .86)) !important;
    color: #120a00 !important;
    text-shadow: none !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .26),
        0 0 26px rgba(255, 111, 0, .14),
        inset 0 0 10px rgba(255, 255, 255, .12) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-clear-button {
    background:
        linear-gradient(180deg, rgba(18, 13, 5, .96), rgba(6, 5, 3, .98)) !important;
    color: #ffbf00 !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-search-status {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
    color: rgba(255, 244, 214, .78) !important;
    font-size: 13px !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-search-nav {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-nav-button {
    border: 1px solid rgba(255, 191, 0, .38) !important;
    border-radius: 999px !important;
    background: rgba(10, 8, 4, .92) !important;
    color: #ffbf00 !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-search-position {
    color: rgba(255, 244, 214, .82) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-scroll {
    min-height: 0 !important;
    height: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: grid !important;
    align-content: start !important;
    gap: 14px !important;
    padding: 2px 12px 2px 2px !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255, 191, 0, .46) rgba(10, 8, 4, .88) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-scroll::-webkit-scrollbar {
    width: 10px !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-scroll::-webkit-scrollbar-track {
    background: rgba(255, 191, 0, .08) !important;
    border-radius: 999px !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 191, 0, .46) !important;
    border-radius: 999px !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-public-card,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-empty-result,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-subscribe-callout {
    display: grid !important;
    gap: 9px !important;
    padding: 18px 20px !important;
    border: 1px solid rgba(255, 191, 0, .30) !important;
    border-radius: 20px !important;
    background:
        linear-gradient(180deg, rgba(13, 11, 7, .84), rgba(4, 4, 3, .94)) !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .11),
        inset 0 0 18px rgba(255, 191, 0, .06) !important;
    color: rgba(255, 244, 214, .92) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-card-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    align-items: center !important;
    color: rgba(255, 244, 214, .62) !important;
    font-size: 13px !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-card-meta strong {
    color: #ffbf00 !important;
    font-weight: 800 !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-public-card h2,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-empty-result h2,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-subscribe-callout h2 {
    margin: 0 !important;
    color: #ffbf00 !important;
    font-size: 22px !important;
    line-height: 1.12 !important;
    text-shadow:
        0 0 10px rgba(255, 191, 0, .28),
        0 0 18px rgba(255, 125, 0, .14) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-public-card p,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-empty-result p,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-subscribe-callout p,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-card-body p {
    margin: 0 !important;
    color: rgba(255, 244, 214, .78) !important;
    line-height: 1.44 !important;
}

.newsletter-public-page.newsletter-public-theme-scifi mark,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-match {
    background: rgba(255, 191, 0, .28) !important;
    color: #fff4d6 !important;
    border-radius: 4px !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-current-match,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-current-match-card {
    border-color: rgba(255, 191, 0, .78) !important;
    box-shadow:
        0 0 18px rgba(255, 191, 0, .26),
        inset 0 0 18px rgba(255, 191, 0, .08) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-register-link {
    width: fit-content !important;
    min-height: 40px !important;
    display: inline-grid !important;
    place-items: center !important;
    padding: 0 18px !important;
    text-decoration: none !important;
    border: 1px solid rgba(255, 191, 0, .68) !important;
    background:
        linear-gradient(180deg, rgba(255, 191, 0, .92), rgba(255, 111, 0, .86)) !important;
    color: #120a00 !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .26),
        0 0 26px rgba(255, 111, 0, .14),
        inset 0 0 10px rgba(255, 255, 255, .12) !important;
}

@media (max-width: 900px) {
    .newsletter-public-page.newsletter-public-theme-scifi {
        place-items: start center !important;
        padding: 14px !important;
        overflow: auto !important;
    }

    html:has(.newsletter-public-page.newsletter-public-theme-scifi),
    body:has(.newsletter-public-page.newsletter-public-theme-scifi) {
        overflow: auto !important;
    }

    .newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page {
        width: min(94vw, 100%) !important;
        max-width: min(94vw, 100%) !important;
        min-width: 0 !important;
        height: min(88vh, 900px) !important;
        max-height: none !important;
        padding: 18px !important;
        border-radius: 24px !important;
    }

    .newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-header {
        grid-template-columns: 1fr !important;
    }

    .newsletter-public-page.newsletter-public-theme-scifi .newsletter-search-panel {
        grid-template-columns: 1fr !important;
    }

    .newsletter-public-page.newsletter-public-theme-scifi .newsletter-search-button,
    .newsletter-public-page.newsletter-public-theme-scifi .newsletter-clear-button {
        width: 100% !important;
    }
}



/* V_486 - SCI: estandarizar cierre con X amarilla en botones superiores/páginas llamadas */
.newsletter-public-page.newsletter-public-theme-scifi .return-to-caller-row,
.registration-page.registration-theme-scifi .return-to-caller-row,
.download-page.download-theme-scifi .return-to-caller-row {
    margin: 0 !important;
    padding: 0 !important;
    align-self: start !important;
    display: flex !important;
    justify-content: flex-end !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .return-to-caller-button,
.newsletter-public-page.newsletter-public-theme-scifi a.return-to-caller-button,
.registration-page.registration-theme-scifi .return-to-caller-button,
.registration-page.registration-theme-scifi a.return-to-caller-button,
.download-page.download-theme-scifi .return-to-caller-button,
.download-page.download-theme-scifi a.return-to-caller-button {
    position: relative !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 191, 0, .78) !important;
    border-radius: 10px !important;
    background: rgba(3, 3, 3, .96) !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    text-shadow: none !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .34),
        inset 0 0 10px rgba(255, 191, 0, .10) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .return-to-caller-button::before,
.newsletter-public-page.newsletter-public-theme-scifi a.return-to-caller-button::before,
.registration-page.registration-theme-scifi .return-to-caller-button::before,
.registration-page.registration-theme-scifi a.return-to-caller-button::before,
.download-page.download-theme-scifi .return-to-caller-button::before,
.download-page.download-theme-scifi a.return-to-caller-button::before {
    content: "×" !important;
    display: block !important;
    color: #ffbf00 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    text-shadow:
        0 0 10px rgba(255, 191, 0, .55),
        0 0 18px rgba(255, 125, 0, .28) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .return-to-caller-button:hover,
.newsletter-public-page.newsletter-public-theme-scifi a.return-to-caller-button:hover,
.newsletter-public-page.newsletter-public-theme-scifi .return-to-caller-button:focus-visible,
.newsletter-public-page.newsletter-public-theme-scifi a.return-to-caller-button:focus-visible,
.registration-page.registration-theme-scifi .return-to-caller-button:hover,
.registration-page.registration-theme-scifi a.return-to-caller-button:hover,
.registration-page.registration-theme-scifi .return-to-caller-button:focus-visible,
.registration-page.registration-theme-scifi a.return-to-caller-button:focus-visible,
.download-page.download-theme-scifi .return-to-caller-button:hover,
.download-page.download-theme-scifi a.return-to-caller-button:hover,
.download-page.download-theme-scifi .return-to-caller-button:focus-visible,
.download-page.download-theme-scifi a.return-to-caller-button:focus-visible {
    border-color: rgba(255, 191, 0, .95) !important;
    background: rgba(0, 0, 0, .98) !important;
    outline: none !important;
    box-shadow:
        0 0 18px rgba(255, 191, 0, .46),
        0 0 28px rgba(255, 125, 0, .22),
        inset 0 0 12px rgba(255, 191, 0, .12) !important;
}

/* V_486 - SCI: misma expresión de X para modales llamados desde botones superiores */
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal-close,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal-close {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    border: 1px solid rgba(255, 191, 0, .78) !important;
    border-radius: 10px !important;
    background: rgba(3, 3, 3, .96) !important;
    color: #ffbf00 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    display: grid !important;
    place-items: center !important;
    text-shadow:
        0 0 10px rgba(255, 191, 0, .55),
        0 0 18px rgba(255, 125, 0, .28) !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .34),
        inset 0 0 10px rgba(255, 191, 0, .10) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal-close:hover,
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal-close:focus-visible,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal-close:hover,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal-close:focus-visible {
    border-color: rgba(255, 191, 0, .95) !important;
    background: rgba(0, 0, 0, .98) !important;
    outline: none !important;
    box-shadow:
        0 0 18px rgba(255, 191, 0, .46),
        0 0 28px rgba(255, 125, 0, .22),
        inset 0 0 12px rgba(255, 191, 0, .12) !important;
}



/* V_487 - SCI: cabecera integrada para logo + X, sin que floten alejados */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page {
    position: relative !important;
    grid-template-rows: auto auto 1fr !important;
    padding: 76px 24px 24px !important;
}

/* Cabecera superior extendida, integrada al marco de Newsletter */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 62px !important;
    border-bottom: 1px solid rgba(255, 191, 0, .32) !important;
    background:
        radial-gradient(circle at 9% 50%, rgba(255, 191, 0, .12), transparent 24%),
        radial-gradient(circle at 91% 50%, rgba(255, 125, 0, .10), transparent 25%),
        linear-gradient(180deg, rgba(14, 11, 6, .96), rgba(4, 4, 3, .98)) !important;
    box-shadow:
        inset 0 -1px 0 rgba(255, 191, 0, .08),
        0 8px 22px rgba(0, 0, 0, .24) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* El contenido queda por debajo de la cabecera integrada */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-header,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-search-panel,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-scroll {
    position: relative !important;
    z-index: 2 !important;
}

/* La X queda dentro de la cabecera superior extendida */
.newsletter-public-page.newsletter-public-theme-scifi .return-to-caller-row {
    position: absolute !important;
    top: 11px !important;
    right: 16px !important;
    z-index: 4 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Evitar que el botón de cierre ocupe espacio en el header */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-header {
    grid-template-columns: 1fr !important;
}

/* Logo integrado en la cabecera superior de Newsletter SCI */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page::after {
    content: "" !important;
    position: absolute !important;
    top: 9px !important;
    left: 18px !important;
    width: 46px !important;
    height: 46px !important;
    background-image: url("images/web04/branding/iq-logo.png") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    z-index: 4 !important;
    pointer-events: none !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

/* V_487 - Modales SCI: integrar logo y X dentro de una cabecera superior extendida */
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal {
    position: relative !important;
    padding-top: 72px !important;
    overflow: hidden !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 62px !important;
    border-bottom: 1px solid rgba(255, 191, 0, .32) !important;
    background:
        radial-gradient(circle at 9% 50%, rgba(255, 191, 0, .12), transparent 24%),
        radial-gradient(circle at 91% 50%, rgba(255, 125, 0, .10), transparent 25%),
        linear-gradient(180deg, rgba(14, 11, 6, .96), rgba(4, 4, 3, .98)) !important;
    box-shadow:
        inset 0 -1px 0 rgba(255, 191, 0, .08),
        0 8px 22px rgba(0, 0, 0, .24) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* Logo directo V_481 reubicado dentro de esa cabecera */
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal .sci-modal-brand-logo-standalone,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal .sci-modal-brand-logo-standalone,
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal .sci-modal-brand-logo-standalone {
    top: 9px !important;
    left: 18px !important;
    width: 46px !important;
    height: 46px !important;
    z-index: 4 !important;
}

/* X reubicada dentro de esa cabecera */
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal .work-modal-close,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal .direct-contact-modal-close,
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal .direct-contact-modal-close {
    top: 11px !important;
    right: 16px !important;
    z-index: 4 !important;
}

/* Mantener el contenido debajo de la nueva cabecera */
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal > :not(.sci-modal-brand-logo-standalone):not(.work-modal-close),
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal > :not(.sci-modal-brand-logo-standalone):not(.direct-contact-modal-close),
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal > :not(.sci-modal-brand-logo-standalone):not(.direct-contact-modal-close) {
    position: relative !important;
    z-index: 2 !important;
}



/* V_488 - SCI: quitar línea horizontal amarilla bajo el logotipo/cabecera */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page::before {
    border-bottom: 0 !important;
    box-shadow:
        0 8px 22px rgba(0, 0, 0, .24) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal::before {
    border-bottom: 0 !important;
    box-shadow:
        0 8px 22px rgba(0, 0, 0, .24) !important;
}



/* V_489 - SCI: unificar fondo negro/carbón en toda la ventana, sin cuerpo azulado */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page,
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 191, 0, .08), transparent 26rem),
        linear-gradient(180deg, rgba(10, 9, 7, .99) 0%, rgba(6, 5, 4, .995) 44%, rgba(2, 2, 2, .995) 100%) !important;
    color: rgba(255, 244, 214, .92) !important;
}

/* Cabecera integrada usa el mismo carbón; ya no contrasta como una franja negra separada */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal::before {
    background:
        radial-gradient(circle at 9% 50%, rgba(255, 191, 0, .10), transparent 24%),
        radial-gradient(circle at 91% 50%, rgba(255, 125, 0, .08), transparent 25%),
        linear-gradient(180deg, rgba(10, 9, 7, .99), rgba(6, 5, 4, .995)) !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

/* Neutralizar fondos azulados heredados dentro de los cuerpos SCI */
.work-modal-backdrop:not(.desktop-theme-showcase) .panel-detached-content,
.work-modal-backdrop:not(.desktop-theme-showcase) .dashboard-panel,
.work-modal-backdrop:not(.desktop-theme-showcase) .panel-four,
.work-modal-backdrop:not(.desktop-theme-showcase) .panel-five,
.work-modal-backdrop:not(.desktop-theme-showcase) .about-modal-content,
.work-modal-backdrop:not(.desktop-theme-showcase) .contact-modal-content,
.work-modal-backdrop:not(.desktop-theme-showcase) .contact-form-content,
.work-modal-backdrop:not(.desktop-theme-showcase) .work-placeholder-inner,
.work-modal-backdrop:not(.desktop-theme-showcase) .matrix-disclaimer,
.work-modal-backdrop:not(.desktop-theme-showcase) .brand-panel.empty-logo-panel,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-search-panel,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-public-card,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-empty-result,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-subscribe-callout {
    background:
        linear-gradient(180deg, rgba(13, 11, 7, .88), rgba(4, 4, 3, .95)) !important;
    color: rgba(255, 244, 214, .90) !important;
    border-color: rgba(255, 191, 0, .30) !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .10),
        inset 0 0 18px rgba(255, 191, 0, .06) !important;
}

/* Fondos generales de placeholders/paneles que podían verse azul-gris */
.work-modal-backdrop:not(.desktop-theme-showcase) .work-placeholder,
.work-modal-backdrop:not(.desktop-theme-showcase) .modal-work-placeholder,
.work-modal-backdrop:not(.desktop-theme-showcase) .detached-panel-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .about-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .contact-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .news-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .brands-modal {
    background: transparent !important;
    color: rgba(255, 244, 214, .92) !important;
}

/* La imagen de trabajo conserva visibilidad, pero el marco alrededor ya no hereda azules */
.work-modal-backdrop:not(.desktop-theme-showcase) .working-image-frame {
    background:
        linear-gradient(180deg, rgba(8, 8, 7, .92), rgba(2, 2, 2, .98)) !important;
    border-color: rgba(255, 191, 0, .28) !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .10),
        inset 0 0 18px rgba(255, 191, 0, .06) !important;
}

/* Inputs y cajas internas SCI sin azul/gris azulado */
.work-modal-backdrop:not(.desktop-theme-showcase) input,
.work-modal-backdrop:not(.desktop-theme-showcase) textarea,
.work-modal-backdrop:not(.desktop-theme-showcase) select,
.newsletter-public-page.newsletter-public-theme-scifi input,
.newsletter-public-page.newsletter-public-theme-scifi textarea,
.newsletter-public-page.newsletter-public-theme-scifi select {
    background:
        linear-gradient(180deg, rgba(4, 4, 3, .98), rgba(0, 0, 0, .99)) !important;
    color: rgba(255, 244, 214, .96) !important;
    border-color: rgba(255, 191, 0, .40) !important;
}

/* Textos secundarios cálidos, no azulados */
.work-modal-backdrop:not(.desktop-theme-showcase) p,
.work-modal-backdrop:not(.desktop-theme-showcase) small,
.work-modal-backdrop:not(.desktop-theme-showcase) span,
.newsletter-public-page.newsletter-public-theme-scifi p,
.newsletter-public-page.newsletter-public-theme-scifi small,
.newsletter-public-page.newsletter-public-theme-scifi span {
    color: inherit;
}



/* V_490 - SCI: limpieza fuerte de restos azulados en ventanas, solo SCI */
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.detached-panel-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page {
    background:
        linear-gradient(180deg, #0a0907 0%, #060504 42%, #020202 100%) !important;
    background-color: #050505 !important;
    background-image:
        linear-gradient(180deg, #0a0907 0%, #060504 42%, #020202 100%) !important;
}

/* Neutralización general de cuerpos internos SCI que aún heredaban azul/gris azulado */
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal :is(
    .panel-detached-content,
    .dashboard-panel,
    .panel-four,
    .panel-five,
    .panel-five-spacer,
    .about-modal-content,
    .about-modal-header,
    .about-modal-card,
    .about-modal-grid,
    .contact-modal-content,
    .contact-modal-header,
    .contact-option-grid,
    .contact-option,
    .contact-brand-art,
    .contact-brand-art-frame,
    .contact-brand-core,
    .contact-form-content,
    .contact-form-header,
    .form-grid,
    .checks,
    .registration-required-note,
    .download-required-note,
    .status-list,
    .boxed,
    .download-status-list,
    .work-placeholder,
    .modal-work-placeholder,
    .work-placeholder-inner,
    .matrix-disclaimer,
    .brand-panel,
    .empty-logo-panel,
    .brand-scroll,
    .empty-logo-grid,
    .empty-logo-button,
    .detached-panel-title,
    .project-inline-status,
    .status-badge
),
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal :is(
    .contact-form-content,
    .contact-form-header,
    .form-grid,
    .contact-form-field,
    .direct-contact-required-note,
    .alert
),
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal :is(
    .contact-form-content,
    .contact-form-header,
    .form-grid,
    .checks,
    .registration-required-note,
    .download-required-note,
    .status-list,
    .boxed,
    .download-status-list,
    .alert
),
.newsletter-public-page.newsletter-public-theme-scifi :is(
    .newsletter-modal-header,
    .newsletter-search-panel,
    .newsletter-modal-scroll,
    .newsletter-public-card,
    .newsletter-card-body,
    .newsletter-empty-result,
    .newsletter-subscribe-callout,
    .newsletter-search-status,
    .newsletter-search-nav
) {
    background:
        linear-gradient(180deg, rgba(12, 10, 7, .96), rgba(3, 3, 3, .98)) !important;
    background-color: #050505 !important;
    background-image:
        linear-gradient(180deg, rgba(12, 10, 7, .96), rgba(3, 3, 3, .98)) !important;
    color: rgba(255, 244, 214, .90) !important;
    border-color: rgba(255, 191, 0, .28) !important;
}

/* En secciones donde el fondo debe ser transparente para que se vea el carbón del modal */
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal :is(
    .panel-five-spacer,
    .newsletter-modal-scroll,
    .contact-option-grid,
    .about-modal-grid
),
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-header {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Quitar específicamente sombras/auras azuladas heredadas */
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal *,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal *,
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal *,
.newsletter-public-page.newsletter-public-theme-scifi * {
    --blue: #ffbf00 !important;
    --cyan: #ffbf00 !important;
    --teal: #ffbf00 !important;
    --panel-blue: #050505 !important;
    --surface-blue: #050505 !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal :is(
    .dashboard-panel,
    .panel-detached-content,
    .panel-four,
    .panel-five,
    .about-modal-content,
    .contact-modal-content,
    .contact-form-content,
    .work-placeholder-inner,
    .matrix-disclaimer,
    .brand-panel,
    .empty-logo-grid,
    .newsletter-public-card
),
.newsletter-public-page.newsletter-public-theme-scifi :is(
    .newsletter-search-panel,
    .newsletter-public-card,
    .newsletter-empty-result,
    .newsletter-subscribe-callout
) {
    box-shadow:
        0 0 14px rgba(255, 191, 0, .10),
        inset 0 0 18px rgba(255, 191, 0, .06) !important;
}

/* Inputs y botones secundarios sin relleno azulado */
.work-modal-backdrop:not(.desktop-theme-showcase) :is(input, textarea, select),
.newsletter-public-page.newsletter-public-theme-scifi :is(input, textarea, select) {
    background: #020202 !important;
    background-color: #020202 !important;
    background-image: linear-gradient(180deg, #050403, #000000) !important;
    color: rgba(255, 244, 214, .96) !important;
    border-color: rgba(255, 191, 0, .42) !important;
}

/* Cards de marcas conservan el logo con fondo claro si la imagen del logo lo requiere, pero no el marco azul */
.work-modal-backdrop:not(.desktop-theme-showcase) .brands-modal .empty-logo-button {
    background: #050505 !important;
    background-color: #050505 !important;
    border-color: rgba(255, 191, 0, .22) !important;
}

.work-modal-backdrop:not(.desktop-theme-showcase) .brands-modal .empty-logo-image {
    background: #ffffff !important;
}

/* Limpieza de posibles backgrounds inline/anteriores en scrolls y paneles */
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .brand-scroll,
    .empty-logo-grid,
    .newsletter-modal-scroll,
    .contact-option-grid
),
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-scroll {
    scrollbar-color: rgba(255, 191, 0, .46) #050505 !important;
}



/* V_491 - SCI: retirar línea horizontal débil azul/neón debajo del logotipo */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal::before {
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

/* Quitar cualquier divisor inferior de headers internos SCI */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-header,
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .language-modal-header,
    .contact-modal-header,
    .contact-form-header,
    .about-modal-header,
    .newsletter-modal-header
) {
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    background-image: none !important;
}

/* Neutralizar pseudo-elementos que pudieran dibujar una línea fina */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-header::before,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-header::after,
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .language-modal-header,
    .contact-modal-header,
    .contact-form-header,
    .about-modal-header,
    .detached-panel-title,
    .panel-detached-content,
    .contact-modal-content,
    .contact-form-content,
    .about-modal-content
)::before,
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .language-modal-header,
    .contact-modal-header,
    .contact-form-header,
    .about-modal-header,
    .detached-panel-title,
    .panel-detached-content,
    .contact-modal-content,
    .contact-form-content,
    .about-modal-content
)::after {
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    background-image: none !important;
}

/* Cualquier línea azul/cyan heredada en la parte superior se apaga en SCI */
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .work-modal,
    .branded-modal,
    .direct-contact-modal,
    .register-modal-window,
    .contact-form-modal
),
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page {
    --cyan: #ffbf00 !important;
    --blue: #ffbf00 !important;
    --teal: #ffbf00 !important;
}



/* V_492 - SCI: eliminar la banda/franja horizontal azulada debajo del logo */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal::before,
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal::before {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

/* El contenedor completo queda como un solo carbón continuo; sin separación entre cabecera y cuerpo */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page,
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 191, 0, .055), transparent 24rem),
        linear-gradient(180deg, #050403 0%, #050403 18%, #030303 100%) !important;
    background-color: #050403 !important;
}

/* Cualquier header interno inmediato queda sin fondo propio ni sombra para no formar una banda */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-header,
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .language-modal-header,
    .contact-modal-header,
    .contact-form-header,
    .about-modal-header,
    .detached-panel-title
) {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

/* Quitar cualquier sombra horizontal interna justo después de la cabecera */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page > *,
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal > *,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal > *,
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal > * {
    border-top-color: transparent !important;
}

/* Mantener logo y X por encima sin depender de la banda visual */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page::after,
.newsletter-public-page.newsletter-public-theme-scifi .return-to-caller-row,
.work-modal-backdrop:not(.desktop-theme-showcase) .sci-modal-brand-logo-standalone,
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal-close,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal-close {
    z-index: 8 !important;
}


/* V_493 - SCI: eliminar completamente fondos azulados residuales y dejar negro uniforme */
.work-modal-backdrop:not(.desktop-theme-showcase) .work-modal.branded-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .direct-contact-modal.contact-form-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .register-modal-window.contact-form-modal,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-page,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-shell,
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-page-shell,
.work-modal-backdrop:not(.desktop-theme-showcase) .brands-modal,
.work-modal-backdrop:not(.desktop-theme-showcase) .brands-modal .panel-detached-content,
.work-modal-backdrop:not(.desktop-theme-showcase) .contact-modal-content,
.work-modal-backdrop:not(.desktop-theme-showcase) .contact-form-content,
.work-modal-backdrop:not(.desktop-theme-showcase) .about-modal-content,
.work-modal-backdrop:not(.desktop-theme-showcase) .work-placeholder-card,
.work-modal-backdrop:not(.desktop-theme-showcase) .work-placeholder-hero,
.work-modal-backdrop:not(.desktop-theme-showcase) .dashboard-panel,
.work-modal-backdrop:not(.desktop-theme-showcase) .dashboard-card,
.work-modal-backdrop:not(.desktop-theme-showcase) .panel-detached-content,
.work-modal-backdrop:not(.desktop-theme-showcase) .panel-four,
.work-modal-backdrop:not(.desktop-theme-showcase) .panel-five,
.work-modal-backdrop:not(.desktop-theme-showcase) .panel-six,
.work-modal-backdrop:not(.desktop-theme-showcase) .detached-panel,
.work-modal-backdrop:not(.desktop-theme-showcase) .detached-panel-content {
    background: #050403 !important;
    background-color: #050403 !important;
    background-image: none !important;
}

/* Cabeceras SCI sin barra azul: negro sólido */
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .language-modal-header,
    .contact-modal-header,
    .contact-form-header,
    .about-modal-header,
    .detached-panel-title,
    .dashboard-panel-header,
    .brands-modal-header,
    .work-placeholder-header
),
.newsletter-public-page.newsletter-public-theme-scifi :is(
    .newsletter-modal-header,
    .newsletter-public-header,
    .newsletter-search-row,
    .newsletter-toolbar,
    .newsletter-actions
) {
    background: #050403 !important;
    background-color: #050403 !important;
    background-image: none !important;
    box-shadow: none !important;
    border-image: none !important;
}

/* Tarjetas internas SCI también en negro, sin glows azules de relleno */
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .platform-card,
    .platform-item,
    .platform-option,
    .brand-card,
    .brand-grid-card,
    .work-card,
    .work-info-card,
    .contact-form-card,
    .newsletter-card,
    .newsletter-item,
    .newsletter-search-panel,
    .newsletter-content-panel,
    .newsletter-result-panel,
    .about-text-card,
    .about-quote-card,
    .project-work-card,
    .modal-form-card
),
.newsletter-public-page.newsletter-public-theme-scifi :is(
    .newsletter-card,
    .newsletter-item,
    .newsletter-search-panel,
    .newsletter-content-panel,
    .newsletter-result-panel,
    .newsletter-viewer,
    .newsletter-reader,
    .newsletter-list
) {
    background: #070605 !important;
    background-color: #070605 !important;
    background-image: none !important;
}

/* Pseudo-elementos que inyecten halos/bandas azules */
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .work-modal,
    .direct-contact-modal,
    .register-modal-window,
    .panel-detached-content,
    .dashboard-panel,
    .brands-modal,
    .contact-modal-content,
    .contact-form-content,
    .about-modal-content,
    .work-placeholder-card,
    .work-placeholder-hero,
    .platform-card,
    .brand-card
)::before,
.work-modal-backdrop:not(.desktop-theme-showcase) :is(
    .work-modal,
    .direct-contact-modal,
    .register-modal-window,
    .panel-detached-content,
    .dashboard-panel,
    .brands-modal,
    .contact-modal-content,
    .contact-form-content,
    .about-modal-content,
    .work-placeholder-card,
    .work-placeholder-hero,
    .platform-card,
    .brand-card
)::after,
.newsletter-public-page.newsletter-public-theme-scifi :is(
    .newsletter-modal-page,
    .newsletter-modal-shell,
    .newsletter-page-shell,
    .newsletter-card,
    .newsletter-item,
    .newsletter-search-panel,
    .newsletter-content-panel,
    .newsletter-result-panel,
    .newsletter-viewer,
    .newsletter-reader
)::before,
.newsletter-public-page.newsletter-public-theme-scifi :is(
    .newsletter-modal-page,
    .newsletter-modal-shell,
    .newsletter-page-shell,
    .newsletter-card,
    .newsletter-item,
    .newsletter-search-panel,
    .newsletter-content-panel,
    .newsletter-result-panel,
    .newsletter-viewer,
    .newsletter-reader
)::after {
    background-image: none !important;
}

/* Variables locales que pudieran seguir tintando de azul */
.work-modal-backdrop:not(.desktop-theme-showcase),
.newsletter-public-page.newsletter-public-theme-scifi {
    --sci-surface: #050403 !important;
    --sci-surface-2: #070605 !important;
    --sci-surface-3: #090807 !important;
    --blue: #ffbf00 !important;
    --cyan: #ffbf00 !important;
    --teal: #ffbf00 !important;
}



/* V_494 - Web+: Descargas copia la distribución espacial de Descargas SCI */
.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop > .register-modal-window.download-modal-window.contact-form-modal {
    position: relative !important;
    width: min(546px, calc(100vw - 64px)) !important;
    max-width: min(546px, calc(100vw - 64px)) !important;
    min-height: auto !important;
    max-height: calc(100vh - 72px) !important;
    padding: 72px 22px 24px !important;
    display: grid !important;
    grid-template-rows: auto !important;
    align-items: start !important;
    justify-items: stretch !important;
    overflow: hidden !important;
}

/* Cabecera integrada al mismo lugar espacial que SCI, pero con estética Web+ */
.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop > .register-modal-window.download-modal-window.contact-form-modal::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 62px !important;
    background:
        radial-gradient(circle at 10% 50%, rgba(11, 115, 255, .10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
    border-bottom: 1px solid rgba(11, 115, 255, .10) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* Logo y X en la misma posición espacial de SCI */
.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop > .register-modal-window.download-modal-window.contact-form-modal .direct-contact-brand-badge {
    position: absolute !important;
    top: 9px !important;
    left: 18px !important;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    z-index: 4 !important;
}

.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop > .register-modal-window.download-modal-window.contact-form-modal .direct-contact-brand-logo {
    width: 46px !important;
    height: 46px !important;
    object-fit: contain !important;
    display: block !important;
}

.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop > .register-modal-window.download-modal-window.contact-form-modal .direct-contact-modal-close {
    position: absolute !important;
    top: 11px !important;
    right: 16px !important;
    z-index: 4 !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    border-radius: 10px !important;
}

/* Cuerpo de Descargas Web+ con la misma estructura espacial SCI */
.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop .download-modal-content {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: grid !important;
    gap: 14px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop .download-modal-header {
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 6px 6px !important;
    text-align: center !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop .download-modal-header h3 {
    margin: 0 !important;
    font-size: 31px !important;
    line-height: 1.08 !important;
    font-weight: 780 !important;
}

.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop .download-modal-header p {
    margin: 0 !important;
    max-width: 470px !important;
    font-size: 15px !important;
    line-height: 1.34 !important;
}

.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop .download-modal-body {
    display: grid !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop .download-modal-body h4 {
    margin: 0 !important;
    text-align: center !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
}

.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop .download-modal-body > p {
    margin: 0 auto !important;
    max-width: 470px !important;
    text-align: center !important;
    font-size: 15px !important;
    line-height: 1.36 !important;
}

.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop .download-modal-status-list {
    display: grid !important;
    gap: 8px !important;
    padding: 10px 11px !important;
    border-radius: 12px !important;
}

.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop .download-modal-status-list div {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 30px !important;
    padding: 6px 8px !important;
    border-radius: 10px !important;
}

.work-modal-backdrop.desktop-theme-showcase.download-modal-backdrop .download-modal-actions {
    margin-top: 2px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
    justify-content: center !important;
}



/* V_496 - SCI Registro noticias/demo: bajar TODO el botón con X 10px */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-modal-close {
    position: absolute !important;
    top: 21px !important;
    right: 16px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    place-items: center !important;
    transform: none !important;
    border: 1px solid rgba(255, 191, 0, .78) !important;
    border-radius: 10px !important;
    background: rgba(3, 3, 3, .96) !important;
    color: #ffbf00 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    text-indent: 0 !important;
    box-sizing: border-box !important;
    z-index: 8 !important;
    text-shadow:
        0 0 10px rgba(255, 191, 0, .55),
        0 0 18px rgba(255, 125, 0, .28) !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .34),
        inset 0 0 10px rgba(255, 191, 0, .10) !important;
}

/* Mantener intactos los botones Amarillo Fuego aprobados en V495 */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .registration-privacy-button,
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-submit,
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal button[type="submit"] {
    border: 1px solid rgba(255, 191, 0, .82) !important;
    background:
        linear-gradient(180deg, #ffd84a 0%, #ffbf00 42%, #ff7a00 100%) !important;
    background-color: #ffbf00 !important;
    background-image:
        linear-gradient(180deg, #ffd84a 0%, #ffbf00 42%, #ff7a00 100%) !important;
    color: #160b00 !important;
    text-shadow: none !important;
    font-weight: 850 !important;
    box-shadow:
        0 0 16px rgba(255, 191, 0, .36),
        0 0 30px rgba(255, 122, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .28),
        inset 0 -1px 0 rgba(80, 35, 0, .22) !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .registration-privacy-button:hover,
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .registration-privacy-button:focus-visible,
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-submit:hover,
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-submit:focus-visible,
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal button[type="submit"]:hover,
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal button[type="submit"]:focus-visible {
    border-color: rgba(255, 224, 90, .96) !important;
    background:
        linear-gradient(180deg, #ffe36f 0%, #ffc400 40%, #ff8a00 100%) !important;
    background-image:
        linear-gradient(180deg, #ffe36f 0%, #ffc400 40%, #ff8a00 100%) !important;
    outline: none !important;
    box-shadow:
        0 0 20px rgba(255, 191, 0, .48),
        0 0 38px rgba(255, 122, 0, .24),
        inset 0 1px 0 rgba(255, 255, 255, .34),
        inset 0 -1px 0 rgba(80, 35, 0, .24) !important;
}



/* V_497 - SCI Registro noticias/demo: subir solo la X interna 3px */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-modal-close {
    font-size: 0 !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-modal-close::before {
    content: "×" !important;
    display: block !important;
    position: relative !important;
    top: -3px !important;
    transform: none !important;
    color: #ffbf00 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    text-shadow:
        0 0 10px rgba(255, 191, 0, .55),
        0 0 18px rgba(255, 125, 0, .28) !important;
    pointer-events: none !important;
}



/* V_498 - Registro SCI: bajar 6px el cuadrito completo con su X */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-modal-close {
    top: 27px !important;
}

/* V_498 - Descarga: botones inferiores con mismo degradado Amarillo Fuego */
.work-modal-backdrop.download-modal-backdrop .download-modal-actions .registration-privacy-button,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions .direct-contact-submit,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions .button-secondary,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions .button-primary,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions a,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions button {
    border: 1px solid rgba(255, 191, 0, .82) !important;
    background:
        linear-gradient(180deg, #ffd84a 0%, #ffbf00 42%, #ff7a00 100%) !important;
    background-color: #ffbf00 !important;
    background-image:
        linear-gradient(180deg, #ffd84a 0%, #ffbf00 42%, #ff7a00 100%) !important;
    color: #160b00 !important;
    text-shadow: none !important;
    font-weight: 850 !important;
    box-shadow:
        0 0 16px rgba(255, 191, 0, .36),
        0 0 30px rgba(255, 122, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .28),
        inset 0 -1px 0 rgba(80, 35, 0, .22) !important;
}

.work-modal-backdrop.download-modal-backdrop .download-modal-actions .registration-privacy-button:hover,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions .registration-privacy-button:focus-visible,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions .direct-contact-submit:hover,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions .direct-contact-submit:focus-visible,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions .button-secondary:hover,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions .button-secondary:focus-visible,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions .button-primary:hover,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions .button-primary:focus-visible,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions a:hover,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions a:focus-visible,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions button:hover,
.work-modal-backdrop.download-modal-backdrop .download-modal-actions button:focus-visible {
    border-color: rgba(255, 224, 90, .96) !important;
    background:
        linear-gradient(180deg, #ffe36f 0%, #ffc400 40%, #ff8a00 100%) !important;
    background-image:
        linear-gradient(180deg, #ffe36f 0%, #ffc400 40%, #ff8a00 100%) !important;
    outline: none !important;
    box-shadow:
        0 0 20px rgba(255, 191, 0, .48),
        0 0 38px rgba(255, 122, 0, .24),
        inset 0 1px 0 rgba(255, 255, 255, .34),
        inset 0 -1px 0 rgba(80, 35, 0, .24) !important;
}



/* V_499 - Registro SCI: bajar 6px el cuadrito de la X y bajar 3px la X interna */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-modal-close {
    top: 33px !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-modal-close::before {
    top: 0 !important;
}



/* V_500 - Registro SCI: bajar 4px solo el cuadrito, sin mover la X visual */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-modal-close {
    top: 37px !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-modal-close::before {
    top: -4px !important;
}



/* V_501 - Registro SCI: bajar 6px más solo el cuadrito, mantener fija la X visual */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-modal-close {
    top: 43px !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-modal-close::before {
    top: -10px !important;
}



/* V_502 - Registro SCI: forzar que el cuadrito baje 6px sin mover la X visual */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-modal-close {
    top: 43px !important;
    transform: translateY(6px) !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .direct-contact-modal-close::before {
    top: -16px !important;
}


/* V_503 - Registro: ancla exclusiva para que el cuadrito sí baje 6px */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal {
    position: relative !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-anchor-v503 {
    position: absolute !important;
    top: 43px !important;
    right: 16px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 100 !important;
    overflow: visible !important;
    pointer-events: none !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-button-v503 {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    translate: none !important;
    transform: none !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(255, 191, 0, .78) !important;
    border-radius: 10px !important;
    background: rgba(3, 3, 3, .96) !important;
    background-color: rgba(3, 3, 3, .96) !important;
    background-image: none !important;
    color: #ffbf00 !important;
    font-size: 0 !important;
    line-height: 1 !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .34),
        inset 0 0 10px rgba(255, 191, 0, .10) !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Apagar la X genérica de reglas anteriores: V503 usa un span real independiente. */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-button-v503::before,
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-button-v503::after {
    content: none !important;
    display: none !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-x-v503 {
    position: relative !important;
    top: -10px !important;
    left: 0 !important;
    translate: none !important;
    transform: none !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffbf00 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    text-shadow:
        0 0 10px rgba(255, 191, 0, .55),
        0 0 18px rgba(255, 125, 0, .28) !important;
    pointer-events: none !important;
}



/* V_504 - Corrección pedida por el usuario:
   Registro: subir 4px solo la X.
   Descargas: bajar 6px solo el cuadrito, manteniendo fija la X visual. */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-x-v503 {
    top: -14px !important;
}

.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .direct-contact-modal-close {
    top: 17px !important;
}

.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .direct-contact-modal-close::before {
    top: -9px !important;
}



/* V_505 - Registro: subir 6px solo el cuadrito, sin mover la X visual */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-anchor-v503 {
    top: 37px !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-x-v503 {
    top: -8px !important;
}



/* V_506 - Registro: bajar 3px solo el cuadrito, mantener fija la X visual */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-anchor-v503 {
    top: 40px !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-x-v503 {
    top: -11px !important;
}



/* V_507 - Registro: subir 4px el cuadrito, manteniendo fija la X visual */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-anchor-v503 {
    top: 36px !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-x-v503 {
    top: -7px !important;
}



/* V_508 - Registro: subir 1px el cuadrito, manteniendo fija la X visual */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-anchor-v503 {
    top: 35px !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-x-v503 {
    top: -6px !important;
}



/* V_509 - Registro: subir 1px el cuadrito, manteniendo fija la X visual */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-anchor-v503 {
    top: 34px !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-x-v503 {
    top: -5px !important;
}



/* V_510 - Registro: subir juntos 3px el cuadrito y la X */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-anchor-v503 {
    top: 31px !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-x-v503 {
    top: -5px !important;
}



/* V_511 - Registro: subir juntos 5px el cuadrito y la X */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-anchor-v503 {
    top: 26px !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-x-v503 {
    top: -5px !important;
}



/* V_512 - Descargas SCI: bajar juntos 4px el cuadrito y la X */
.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .direct-contact-modal-close {
    top: 21px !important;
}

.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .direct-contact-modal-close::before {
    top: -9px !important;
}



/* V_513 - Descargas SCI: bajar 4px solo el cuadrito, sin mover la X visual */
.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .direct-contact-modal-close {
    top: 25px !important;
}

.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .direct-contact-modal-close::before {
    top: -13px !important;
}



/* V_514 - SCI Descargas: quitar texto de intro, hacer la caja más angosta y bajarla un poco */
.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal {
    width: 356px !important;
    max-width: calc(100vw - 44px) !important;
    transform: translateY(14px) !important;
}

.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.download-modal-header {
    gap: 4px !important;
    padding-bottom: 4px !important;
}



/* V_515 - SCI Descargas: estirar 20px hacia arriba el lado superior de la caja externa */
.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal {
    padding-top: 92px !important;
    transform: translateY(-6px) !important;
}



/* V_516 - Descargas SCI: bajar 4px solo la caja del cierre, sin mover la X visual */
.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .direct-contact-modal-close {
    top: 29px !important;
}

.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .direct-contact-modal-close::before {
    top: -17px !important;
}



/* V_517 - Descargas SCI: separar físicamente el cuadrito y la X.
   El cuadrito conserva la posición 4px abajo solicitada en V_516;
   la X vuelve a su posición visual anterior y queda independiente. */
.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal {
    position: relative !important;
}

.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .download-close-anchor-v517 {
    position: absolute !important;
    top: 29px !important;
    right: 16px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 100 !important;
    overflow: visible !important;
    pointer-events: none !important;
}

.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .download-close-button-v517 {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    translate: none !important;
    transform: none !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    font-size: 0 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .download-close-button-v517::before,
.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .download-close-button-v517::after {
    content: none !important;
    display: none !important;
}

.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .download-close-x-v517 {
    position: relative !important;
    top: -4px !important;
    left: 0 !important;
    translate: none !important;
    transform: none !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffbf00 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    text-shadow:
        0 0 10px rgba(255, 191, 0, .55),
        0 0 18px rgba(255, 125, 0, .28) !important;
    pointer-events: none !important;
}



/* V_518 - Registro y Descargas SCI: subir juntos 4px la caja y la X */

/* Registro: mover completo el cierre 4px hacia arriba */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-anchor-v503 {
    top: 22px !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-x-v503 {
    top: -5px !important;
}

/* Descargas: mover completo el cierre 4px hacia arriba */
.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .download-close-anchor-v517 {
    top: 25px !important;
}

.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .download-close-x-v517 {
    top: -4px !important;
}



/* V_519 - Registro y Descargas SCI: subir juntos 8px la caja y la X */

/* Registro: mover completo el cierre 8px hacia arriba */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-anchor-v503 {
    top: 14px !important;
}

.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-x-v503 {
    top: -5px !important;
}

/* Descargas: mover completo el cierre 8px hacia arriba */
.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .download-close-anchor-v517 {
    top: 17px !important;
}

.work-modal-backdrop.register-modal-backdrop.download-modal-backdrop:not(.desktop-theme-showcase)
.register-modal-window.download-modal-window.contact-form-modal .download-close-x-v517 {
    top: -4px !important;
}



/* V_520 - SCI Licencia: imagen Ignacio Quijas con robots al 60% del tamaño actual */
.work-modal-backdrop:not(.desktop-theme-showcase)
.license-working-image-v520 {
    width: 60% !important;
    max-width: 60% !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
}



/* V_522 - SCI Licencia: marco rojo inmediato con 10px exactos alrededor de la imagen */
.work-modal-backdrop:not(.desktop-theme-showcase)
.license-working-image-frame-v522 {
    width: auto !important;
    max-width: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: center !important;
    box-sizing: border-box !important;
    padding: 10px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Mantener el tamaño visual aprobado de V_520: 60% del marco original de 360px = 216px. */
.work-modal-backdrop:not(.desktop-theme-showcase)
.license-working-image-frame-v522 > .license-working-image-v520 {
    width: 216px !important;
    max-width: min(216px, calc(100vw - 80px)) !important;
    height: auto !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
}


/* ============================================================
   V_523 - LICENCIA SCI AISLADA
   Un único bloque visual exclusivo; no usa work-modal,
   branded-modal, work-modal-close, modal-work-placeholder,
   work-placeholder-inner ni working-image-frame.
   ============================================================ */
.license-modal-backdrop-v523 {
    position: fixed;
    inset: 0;
    z-index: 5100;
    display: grid;
    place-items: center;
    padding: 36px;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(4px) brightness(.66) saturate(.82);
}

.license-modal-v523 {
    position: relative;
    width: min(675px, calc(100vw - 72px));
    max-height: calc(100vh - 72px);
    padding: 72px 0 0;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(255, 191, 0, .78);
    border-radius: 13.5px;
    background: #050403;
    color: rgba(255, 244, 214, .92);
    box-shadow:
        0 0 0 1px rgba(255, 125, 0, .30),
        0 0 18px rgba(255, 191, 0, .45),
        0 0 36px rgba(255, 125, 0, .30),
        0 24px 60px rgba(0, 0, 0, .72),
        inset 0 0 18px rgba(255, 191, 0, .13);
}

.license-modal-v523::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 62px;
    z-index: 1;
    pointer-events: none;
    background: #050403;
    border: 0;
    box-shadow: none;
}

.license-modal-logo-v523 {
    position: absolute;
    top: 9px;
    left: 18px;
    z-index: 4;
    width: 46px;
    height: 46px;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
}

.license-modal-close-v523 {
    position: absolute;
    top: 11px;
    right: 16px;
    z-index: 4;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .78);
    border-radius: 10px;
    background: #030303;
    color: #ffbf00;
    font-family: inherit;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    text-shadow:
        0 0 10px rgba(255, 191, 0, .55),
        0 0 18px rgba(255, 125, 0, .28);
    box-shadow:
        0 0 14px rgba(255, 191, 0, .34),
        inset 0 0 10px rgba(255, 191, 0, .10);
}

.license-modal-close-v523:hover,
.license-modal-close-v523:focus-visible {
    border-color: rgba(255, 191, 0, .95);
    background: #000000;
    outline: none;
    box-shadow:
        0 0 18px rgba(255, 191, 0, .46),
        0 0 28px rgba(255, 125, 0, .22),
        inset 0 0 12px rgba(255, 191, 0, .12);
}

.license-modal-content-v523 {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 450px;
    display: grid;
    place-items: center;
    padding: 24px;
    box-sizing: border-box;
    background: #050403;
    color: rgba(255, 244, 214, .92);
    border: 0;
    box-shadow: none;
}

.license-modal-inner-v523 {
    width: min(440px, calc(100vw - 48px));
    min-height: 0;
    display: grid;
    place-items: center;
    justify-items: center;
    gap: 8px;
    padding: 16px 12px 14px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .30);
    border-radius: 16.5px;
    background: #050403;
    color: rgba(255, 244, 214, .90);
    text-align: center;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .10),
        inset 0 0 18px rgba(255, 191, 0, .06);
}

.license-image-frame-v523 {
    width: auto;
    max-width: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    padding: 10px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(255, 191, 0, .28);
    border-radius: 15px;
    background: #050403;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .10),
        inset 0 0 18px rgba(255, 191, 0, .06);
}

.license-image-v523 {
    width: 216px;
    max-width: min(216px, calc(100vw - 80px));
    height: auto;
    flex: 0 0 auto;
    display: block;
    margin: 0;
    border: 0;
    border-radius: 10px;
    object-fit: contain;
}

.license-modal-inner-v523 h3 {
    margin: 0;
    color: #f4f6fb;
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.1;
    font-weight: 650;
    text-shadow: none;
}

.license-modal-inner-v523 p {
    width: min(480px, 100%);
    margin: 0;
    color: rgba(255, 244, 214, .84);
    font-size: clamp(12px, 1.7vw, 16px);
    line-height: 1.35;
    text-shadow: none;
}

.license-modal-inner-v523 p strong {
    color: #ffd54a;
    font-weight: 700;
}


/* V_526 - Licencia SCI: integrar logotipo y cierre al marco inmediato,
   eliminar el marco exterior visible y dejar aura neón en el marco restante */
.license-modal-v523 {
    width: min(675px, calc(100vw - 72px));
    max-height: calc(100vh - 72px);
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.license-modal-v523::before {
    display: none !important;
}

.license-modal-content-v523 {
    min-height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.license-modal-inner-v523 {
    width: min(440px, calc(100vw - 48px)) !important;
    gap: 10px !important;
    padding: 12px 12px 14px !important;
    background: #050403 !important;
    border: 1px solid rgba(255, 191, 0, .52) !important;
    border-radius: 16.5px !important;
    box-shadow:
        0 0 0 1px rgba(255, 125, 0, .20),
        0 0 18px rgba(255, 191, 0, .34),
        0 0 34px rgba(255, 125, 0, .20),
        0 18px 46px rgba(0, 0, 0, .66),
        inset 0 0 14px rgba(255, 191, 0, .08) !important;
}

.license-modal-header-v525 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 0;
    background: transparent;
}

.license-modal-logo-v523 {
    position: static !important;
    z-index: auto !important;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
}

.license-modal-close-v523 {
    position: static !important;
    z-index: auto !important;
    flex: 0 0 auto;
}




/* V_530 - Ajuste exclusivo de caracteres X, sin mover sus cajas.
   Registro: bajar 1px la X respecto de V_526.
   Licencia: subir 1px adicional la X respecto de V_526.
   Sin transform ni translate. */
.work-modal-backdrop.register-modal-backdrop:not(.download-modal-backdrop):not(.desktop-theme-showcase)
.register-modal-window.contact-form-modal .register-close-x-v503 {
    position: relative !important;
    top: -4px !important;
}

.license-modal-close-v523 .license-close-x-v527 {
    position: relative;
    top: -2px;
    left: 0;
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    font: inherit;
    line-height: 1;
    color: inherit;
    pointer-events: none;
}


/* ============================================================
   V_530 CORREGIDA - SCI / VENTANA DE ACCIÓN DE PROYECTOS
   Los botones de la izquierda conservan su llamada al panel de
   acción dentro del layout. No es modal. Mientras el proyecto no
   tenga una acción específica, se muestra "Estamos trabajando".
   Se sustituye únicamente el tratamiento azul por el diseño
   negro/carbón con aura neón aprobado en Licencia/Noticias/Tienda.
   ============================================================ */
.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.project-action-placeholder-v530 {
    background: transparent !important;
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.project-action-window-v530 {
    width: min(440px, 100%) !important;
    min-height: 0 !important;
    margin: auto !important;
    padding: 16px 12px 14px !important;
    gap: 10px !important;
    display: grid !important;
    place-items: center !important;
    justify-items: center !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    border: 1px solid rgba(255, 191, 0, .52) !important;
    border-radius: 16.5px !important;
    background: #050403 !important;
    color: rgba(255, 244, 214, .90) !important;
    text-align: center !important;
    box-shadow:
        0 0 0 1px rgba(255, 125, 0, .20),
        0 0 18px rgba(255, 191, 0, .34),
        0 0 34px rgba(255, 125, 0, .20),
        0 18px 46px rgba(0, 0, 0, .66),
        inset 0 0 14px rgba(255, 191, 0, .08) !important;
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.project-action-image-frame-v530 {
    width: auto !important;
    max-width: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: center !important;
    padding: 10px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 191, 0, .28) !important;
    border-radius: 15px !important;
    background: #050403 !important;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .10),
        inset 0 0 18px rgba(255, 191, 0, .06) !important;
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.project-action-image-v530 {
    width: 216px !important;
    max-width: min(216px, calc(100vw - 80px)) !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 10px !important;
    object-fit: contain !important;
    background: transparent !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.project-action-window-v530 h3 {
    margin: 0 !important;
    color: #f4f6fb !important;
    font-size: clamp(20px, 3vw, 28px) !important;
    line-height: 1.1 !important;
    font-weight: 650 !important;
    text-shadow: none !important;
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.project-action-window-v530 p {
    width: min(480px, 100%) !important;
    margin: 0 !important;
    color: rgba(255, 244, 214, .84) !important;
    font-size: clamp(12px, 1.7vw, 16px) !important;
    line-height: 1.35 !important;
    text-shadow: none !important;
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.project-action-window-v530 p strong {
    color: #ffd54a !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}


/* ============================================================
   V_532 - SCI / VENTANA DE ACCIÓN AUTOMATION
   Reutiliza exactamente la información existente en WEB+ y la
   presenta dentro del layout normal con tratamiento SCI.
   No es una ventana modal.
   ============================================================ */
.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-action-v531 {
    width: min(760px, calc(100% - 24px));
    max-height: calc(100% - 20px);
    margin: auto;
    padding: 20px 18px 14px;
    display: grid;
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 0;
    box-sizing: border-box;
    overflow: auto;
    border: 1px solid rgba(255, 191, 0, .52);
    border-radius: 16.5px;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 191, 0, .10), transparent 0 22%, transparent 23%),
        #050403;
    color: rgba(255, 244, 214, .90);
    box-shadow:
        0 0 0 1px rgba(255, 125, 0, .20),
        0 0 18px rgba(255, 191, 0, .34),
        0 0 34px rgba(255, 125, 0, .20),
        0 18px 46px rgba(0, 0, 0, .66),
        inset 0 0 14px rgba(255, 191, 0, .08);
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-copy-v531 {
    align-self: center;
    z-index: 1;
    padding-right: 12px;
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-kicker-v531 {
    display: inline-flex;
    padding: 6px 12px;
    border: 1px solid rgba(255, 191, 0, .38);
    border-radius: 20px;
    background: rgba(255, 191, 0, .08);
    color: #ffd54a;
    font-size: 12px;
    font-weight: 700;
    box-shadow:
        0 0 12px rgba(255, 191, 0, .16),
        inset 0 0 10px rgba(255, 191, 0, .05);
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-copy-v531 h2 {
    margin: 18px 0 12px;
    color: #f4f6fb;
    font-size: clamp(26px, 2.25vw, 38px);
    line-height: 1.05;
    letter-spacing: -.03em;
    text-shadow: 0 0 14px rgba(255, 191, 0, .12);
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-copy-v531 p {
    margin: 0;
    color: rgba(255, 244, 214, .82);
    font-size: 14px;
    line-height: 1.55;
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-check-list-v531 {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    display: grid;
    gap: 8px;
    color: rgba(255, 244, 214, .90);
    font-size: 14px;
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-check-list-v531 li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 17px;
    height: 17px;
    margin-right: 8px;
    border: 1px solid rgba(255, 191, 0, .66);
    border-radius: 50%;
    background: #050403;
    color: #ffd54a;
    font-size: 12px;
    box-shadow: 0 0 10px rgba(255, 191, 0, .24);
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-actions-v531 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-actions-v531 button {
    border: 1px solid rgba(255, 191, 0, .70);
    border-radius: 10px;
    padding: 11px 20px;
    background: linear-gradient(180deg, rgba(255, 191, 0, .22), rgba(255, 125, 0, .12));
    color: #fff4d6;
    font-weight: 800;
    cursor: pointer;
    box-shadow:
        0 0 14px rgba(255, 191, 0, .20),
        inset 0 0 10px rgba(255, 191, 0, .05);
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-actions-v531 button.secondary {
    background: #050403;
    color: #ffd54a;
    border-color: rgba(255, 191, 0, .42);
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-actions-v531 button:hover,
.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-actions-v531 button:focus-visible {
    outline: none;
    border-color: rgba(255, 213, 74, .95);
    box-shadow:
        0 0 18px rgba(255, 191, 0, .36),
        inset 0 0 12px rgba(255, 191, 0, .08);
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-visual-v531 {
    display: grid;
    place-items: center;
    min-width: 0;
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-visual-v531 img {
    width: min(100%, 500px);
    max-height: 330px;
    object-fit: contain;
    filter:
        drop-shadow(0 0 14px rgba(255, 191, 0, .18))
        drop-shadow(0 20px 24px rgba(0, 0, 0, .46));
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-benefits-v531 {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 191, 0, .24);
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-benefits-v531 span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    padding: 0 6px;
    color: rgba(255, 244, 214, .86);
    font-size: 12px;
    line-height: 1.1;
    border-right: 1px solid rgba(255, 191, 0, .18);
    text-align: left;
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-benefits-v531 span:last-child {
    border-right: 0;
}

.home-dashboard.desktop-theme-scifi
.desktop-panel-two
.sci-automation-benefits-v531 img {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 191, 0, .22));
}

@media (max-width: 1100px) {
    .home-dashboard.desktop-theme-scifi
    .desktop-panel-two
    .sci-automation-action-v531 {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto auto;
    }

    .home-dashboard.desktop-theme-scifi
    .desktop-panel-two
    .sci-automation-copy-v531 {
        padding-right: 0;
    }

    .home-dashboard.desktop-theme-scifi
    .desktop-panel-two
    .sci-automation-visual-v531 img {
        max-height: 210px;
    }
}


/* V_539 - Newsletter SCI: restaurar borde superior y subir 40px el cierre completo */
.newsletter-public-page.newsletter-public-theme-scifi .newsletter-search-panel {
    border-top-width: 1px !important;
    border-top-style: solid !important;
    border-top-color: rgba(255, 191, 0, .30) !important;
}

.newsletter-public-page.newsletter-public-theme-scifi .newsletter-modal-header .return-to-caller-row {
    top: -29px !important; /* 11px - 40px */
    right: 16px !important;
}


/* ============================================================
   V_539 - PLATAFORMAS SCI AISLADA
   No usa work-modal, branded-modal, contact-modal, contact-option,
   contact-brand-art, action-button ni sus pseudo-elementos heredados.
   ============================================================ */
.platforms-sci-backdrop-v536 {
    position: fixed;
    inset: 0;
    z-index: 5100;
    display: grid;
    place-items: center;
    padding: 36px;
    background: rgba(0, 0, 0, .74);
    backdrop-filter: blur(4px) brightness(.66) saturate(.82);
}

.platforms-sci-window-v536 {
    width: min(560px, calc(100vw - 72px));
    max-height: calc(100vh - 72px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .62);
    border-radius: 16px;
    background: #050403;
    color: rgba(255, 244, 214, .92);
    box-shadow:
        0 0 0 1px rgba(255, 125, 0, .22),
        0 0 18px rgba(255, 191, 0, .34),
        0 0 36px rgba(255, 125, 0, .20),
        0 24px 60px rgba(0, 0, 0, .72),
        inset 0 0 18px rgba(255, 191, 0, .08);
}

.platforms-sci-topbar-v536 {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 16px 9px 18px;
    box-sizing: border-box;
    background: #050403;
    border: 0;
}

.platforms-sci-logo-v536 {
    width: 46px;
    height: 46px;
    display: block;
    object-fit: contain;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.platforms-sci-close-v536 {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0 0 1px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .78);
    border-radius: 10px;
    background: #030303;
    color: #ffbf00;
    font-family: inherit;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    text-shadow:
        0 0 10px rgba(255, 191, 0, .55),
        0 0 18px rgba(255, 125, 0, .28);
    box-shadow:
        0 0 14px rgba(255, 191, 0, .34),
        inset 0 0 10px rgba(255, 191, 0, .10);
}

.platforms-sci-close-v536:hover,
.platforms-sci-close-v536:focus-visible {
    border-color: rgba(255, 191, 0, .96);
    background: #000;
    outline: none;
    box-shadow:
        0 0 18px rgba(255, 191, 0, .46),
        0 0 28px rgba(255, 125, 0, .22),
        inset 0 0 12px rgba(255, 191, 0, .12);
}

.platforms-sci-content-v536 {
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 8px 18px 18px;
    box-sizing: border-box;
    background: #050403;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 191, 0, .46) #050403;
}

.platforms-sci-content-v536::-webkit-scrollbar {
    width: 10px;
}

.platforms-sci-content-v536::-webkit-scrollbar-track {
    background: #050403;
}

.platforms-sci-content-v536::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 191, 0, .46);
}

.platforms-sci-heading-v536 {
    display: grid;
    justify-items: center;
    gap: 5px;
    margin: 0;
    padding: 0 6px 4px;
    text-align: center;
    background: transparent;
    border: 0;
}

.platforms-sci-heading-v536 h3 {
    margin: 0;
    color: #ffbf00;
    font-size: clamp(24px, 3vw, 31px);
    line-height: 1.08;
    font-weight: 760;
    text-shadow:
        0 0 12px rgba(255, 191, 0, .36),
        0 0 24px rgba(255, 125, 0, .18);
}

.platforms-sci-heading-v536 p {
    width: min(430px, 100%);
    margin: 0;
    color: rgba(255, 244, 214, .76);
    font-size: 14px;
    line-height: 1.35;
}

.platforms-sci-grid-v536 {
    display: grid;
    grid-template-columns: repeat(3, 138px);
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    background: transparent;
}

.platforms-sci-card-v536 {
    width: 138px;
    min-width: 138px;
    max-width: 138px;
    min-height: 184px;
    height: 184px;
    display: grid;
    grid-template-rows: 84px 30px 38px;
    align-items: center;
    justify-items: center;
    gap: 2px;
    padding: 12px;
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    border: 1px solid rgba(255, 191, 0, .28);
    border-radius: 15px;
    background: linear-gradient(180deg, #0b0905 0%, #030303 100%);
    color: rgba(255, 244, 214, .92);
    box-shadow:
        0 0 10px rgba(255, 191, 0, .08),
        inset 0 0 14px rgba(255, 191, 0, .04);
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.platforms-sci-card-v536:hover,
.platforms-sci-card-v536:focus-visible {
    border-color: rgba(255, 191, 0, .76);
    background: linear-gradient(180deg, #120d04 0%, #030303 100%);
    outline: none;
    box-shadow:
        0 0 16px rgba(255, 191, 0, .26),
        0 0 28px rgba(255, 125, 0, .12),
        inset 0 0 16px rgba(255, 191, 0, .07);
}

.platforms-sci-art-v536 {
    width: 110px;
    height: 84px;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .20);
    border-radius: 13px;
    background: #050403;
    box-shadow:
        0 0 10px rgba(255, 191, 0, .08),
        inset 0 0 12px rgba(255, 191, 0, .04);
}

.platforms-sci-frame-v536 {
    width: 82px;
    height: 70px;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    padding: 6px;
    border: 1px solid rgba(255, 191, 0, .16);
    border-radius: 11px;
    background: #080604;
}

.platforms-sci-core-v536 {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
    background: #f4f0e7;
    box-shadow: 0 0 10px rgba(255, 191, 0, .10);
}

.platforms-sci-brand-v536 {
    width: 52px;
    height: 52px;
    max-width: 52px;
    max-height: 52px;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    filter: none;
}

.platforms-sci-brand-x-v536,
.platforms-sci-brand-gmail-v536,
.platforms-sci-brand-youtube-v536 {
    width: 56px;
    height: 56px;
    max-width: 56px;
    max-height: 56px;
}

.platforms-sci-brand-facebook-v536,
.platforms-sci-brand-linkedin-v536 {
    width: 50px;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
}

.platforms-sci-brand-discord-v536 {
    width: 56px;
    height: 56px;
    max-width: 56px;
    max-height: 56px;
}

.platforms-sci-card-v536 strong {
    width: 100%;
    min-height: 28px;
    display: grid;
    place-items: center;
    margin: 0;
    color: #ffd34d;
    font-size: 13px;
    line-height: 1.08;
    font-weight: 760;
    text-shadow: 0 0 8px rgba(255, 191, 0, .22);
}

.platforms-sci-card-v536 small {
    width: 100%;
    min-height: 34px;
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: rgba(255, 244, 214, .66);
    font-size: 11px;
    line-height: 1.22;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (max-width: 560px) {
    .platforms-sci-backdrop-v536 {
        padding: 12px;
    }

    .platforms-sci-window-v536 {
        width: min(440px, calc(100vw - 24px));
        max-height: calc(100vh - 24px);
    }

    .platforms-sci-grid-v536 {
        grid-template-columns: repeat(2, 138px);
    }
}

@media (max-width: 340px) {
    .platforms-sci-grid-v536 {
        grid-template-columns: 138px;
    }
}


/* ============================================================
   V_539 - CONTACTO SCI AISLADO, FUNCIONAL Y SIN DEPENDENCIAS WEB+
   Una sola estructura funcional de apertura; estilos SCI exclusivos.
   ============================================================ */
.contact-sci-backdrop-v538 {
    position: fixed;
    inset: 0;
    z-index: 5200;
    display: grid;
    place-items: center;
    padding: 28px;
    overflow: auto;
    background: rgba(0, 0, 0, .74);
    backdrop-filter: blur(5px) brightness(.68) saturate(.82);
    -webkit-backdrop-filter: blur(5px) brightness(.68) saturate(.82);
}

.contact-sci-window-v538 {
    position: relative;
    width: min(760px, calc(100vw - 56px));
    max-height: calc(100vh - 56px);
    display: grid;
    grid-template-rows: 64px minmax(0, 1fr);
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .66);
    border-radius: 22px;
    background: #050403;
    color: rgba(255, 244, 214, .92);
    box-shadow:
        0 0 22px rgba(255, 191, 0, .36),
        0 24px 60px rgba(0, 0, 0, .76);
}

.contact-sci-window-v538::before,
.contact-sci-window-v538::after,
.contact-sci-content-v538::before,
.contact-sci-content-v538::after,
.contact-sci-heading-v538::before,
.contact-sci-heading-v538::after {
    content: none !important;
    display: none !important;
}

.contact-sci-topbar-v538 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 16px 9px 18px;
    box-sizing: border-box;
    background: #050403;
    border: 0;
    box-shadow: none;
}

.contact-sci-logo-v538 {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
}

.contact-sci-close-v538 {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0 0 1px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .68);
    border-radius: 10px;
    background: #030303;
    color: #ffbf00;
    font-family: inherit;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(255, 191, 0, .46);
    box-shadow: 0 0 12px rgba(255, 191, 0, .24);
}

.contact-sci-close-v538:hover,
.contact-sci-close-v538:focus-visible {
    border-color: rgba(255, 191, 0, .96);
    background: #000;
    outline: none;
    box-shadow: 0 0 17px rgba(255, 191, 0, .40);
}

.contact-sci-content-v538 {
    min-height: 0;
    overflow-y: auto;
    display: grid;
    align-content: start;
    gap: 20px;
    padding: 10px 34px 30px;
    box-sizing: border-box;
    border: 0;
    background: #050403;
    box-shadow: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 191, 0, .42) rgba(8, 7, 4, .88);
}

.contact-sci-heading-v538 {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0 54px 2px;
    text-align: center;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.contact-sci-heading-v538 h3 {
    margin: 0;
    color: #ffbf00;
    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.02em;
    text-shadow:
        0 0 11px rgba(255, 191, 0, .34),
        0 0 22px rgba(255, 125, 0, .16);
}

.contact-sci-heading-v538 p {
    width: min(590px, 100%);
    margin: 0 auto;
    color: rgba(255, 244, 214, .80);
    font-size: 16px;
    line-height: 1.46;
    font-weight: 450;
}

.contact-sci-form-v538 {
    width: 100%;
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.contact-sci-field-v538 {
    display: grid;
    gap: 8px;
    margin: 0;
    color: rgba(255, 244, 214, .92);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.contact-sci-field-v538 span { color: rgba(255, 244, 214, .92); }
.contact-sci-field-v538 em,
.contact-sci-required-v538 em { color: #ffbf00; font-style: normal; }

.contact-sci-input-v538,
.contact-sci-editor-v538 {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .34);
    border-radius: 13px;
    background: #020202;
    color: rgba(255, 244, 214, .96);
    font-family: inherit;
    font-size: 16px;
    outline: none;
    box-shadow: none;
}

.contact-sci-input-v538 { height: 48px; padding: 0 15px; }
.contact-sci-editor-v538 { min-height: 210px; max-height: 38vh; resize: vertical; padding: 14px 15px; line-height: 1.45; }

.contact-sci-input-v538:focus,
.contact-sci-editor-v538:focus {
    border-color: rgba(255, 191, 0, .84);
    box-shadow: 0 0 0 2px rgba(255, 191, 0, .11);
}

.contact-sci-required-v538 {
    margin: -2px 0 0;
    color: rgba(255, 244, 214, .72);
    font-size: 13px;
    line-height: 1.3;
}

.contact-sci-submit-v538 {
    min-width: 176px;
    height: 46px;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid rgba(255, 191, 0, .72);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 191, 0, .94), rgba(255, 111, 0, .87));
    color: #120a00;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .01em;
    cursor: pointer;
    text-shadow: none;
    box-shadow: 0 0 15px rgba(255, 191, 0, .24);
}

.contact-sci-submit-v538:hover,
.contact-sci-submit-v538:focus-visible {
    border-color: rgba(255, 221, 102, .96);
    outline: none;
    box-shadow: 0 0 20px rgba(255, 191, 0, .36);
}

.contact-sci-submit-v538:disabled { opacity: .62; cursor: wait; }

.contact-sci-alert-v538 {
    display: grid;
    gap: 6px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 191, 0, .32);
    border-radius: 13px;
    background: #070605;
    color: rgba(255, 244, 214, .90);
    box-shadow: none;
}

.contact-sci-alert-v538 strong,
.contact-sci-alert-v538 p { margin: 0; }
.contact-sci-alert-success-v538 { border-color: rgba(255, 191, 0, .44); }
.contact-sci-alert-danger-v538 { border-color: rgba(255, 92, 72, .58); color: #ffd8d1; }

@media (max-width: 820px) {
    .contact-sci-backdrop-v538 { padding: 14px; }
    .contact-sci-window-v538 {
        width: min(100%, calc(100vw - 28px));
        max-height: calc(100vh - 28px);
        border-radius: 18px;
    }
    .contact-sci-content-v538 { padding: 8px 18px 22px; }
    .contact-sci-heading-v538 { padding: 0 8px 2px; }
    .contact-sci-editor-v538 { min-height: 170px; }
}


/* ============================================================
   V_539 - NOVEDADES SCI AISLADA Y DEPURADA
   Sin work-modal, detached-panel-modal, news-modal, dashboard-panel,
   panel-four, panel-detached-content ni pseudo-elementos heredados.
   Un solo marco exterior y una sola aura cálida.
   ============================================================ */
.novedades-sci-backdrop-v539 {
    position: fixed;
    inset: 0;
    z-index: 5150;
    display: grid;
    place-items: center;
    padding: 36px;
    overflow: auto;
    background: rgba(0, 0, 0, .74);
    backdrop-filter: blur(5px) brightness(.68) saturate(.82);
    -webkit-backdrop-filter: blur(5px) brightness(.68) saturate(.82);
}

.novedades-sci-window-v539 {
    position: relative;
    width: min(1040px, calc(100vw - 72px));
    height: min(760px, calc(100vh - 72px));
    max-height: calc(100vh - 72px);
    display: grid;
    grid-template-rows: 64px minmax(0, 1fr);
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .66);
    border-radius: 22px;
    background: #050403;
    color: rgba(255, 244, 214, .92);
    box-shadow:
        0 0 22px rgba(255, 191, 0, .36),
        0 24px 60px rgba(0, 0, 0, .76);
}

.novedades-sci-window-v539::before,
.novedades-sci-window-v539::after,
.novedades-sci-content-v539::before,
.novedades-sci-content-v539::after,
.novedades-sci-heading-v539::before,
.novedades-sci-heading-v539::after,
.novedades-sci-body-v539::before,
.novedades-sci-body-v539::after,
.novedades-sci-empty-v539::before,
.novedades-sci-empty-v539::after {
    content: none !important;
    display: none !important;
}

.novedades-sci-topbar-v539 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 16px 9px 18px;
    box-sizing: border-box;
    background: #050403;
    border: 0;
    box-shadow: none;
}

.novedades-sci-logo-v539 {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
}

.novedades-sci-close-v539 {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0 0 1px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .68);
    border-radius: 10px;
    background: #030303;
    color: #ffbf00;
    font-family: inherit;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(255, 191, 0, .46);
    box-shadow: 0 0 12px rgba(255, 191, 0, .24);
}

.novedades-sci-close-v539:hover,
.novedades-sci-close-v539:focus-visible {
    border-color: rgba(255, 191, 0, .96);
    background: #000;
    outline: none;
    box-shadow: 0 0 17px rgba(255, 191, 0, .40);
}

.novedades-sci-content-v539 {
    min-height: 0;
    overflow-y: auto;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: stretch;
    gap: 20px;
    padding: 10px 34px 30px;
    box-sizing: border-box;
    border: 0;
    background: #050403;
    box-shadow: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 191, 0, .42) rgba(8, 7, 4, .88);
}

.novedades-sci-heading-v539 {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0 54px 2px;
    text-align: center;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.novedades-sci-heading-v539 h3 {
    margin: 0;
    color: #ffbf00;
    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.02em;
    text-shadow:
        0 0 11px rgba(255, 191, 0, .34),
        0 0 22px rgba(255, 125, 0, .16);
}

.novedades-sci-heading-v539 p {
    width: min(620px, 100%);
    margin: 0 auto;
    color: rgba(255, 244, 214, .80);
    font-size: 16px;
    line-height: 1.46;
    font-weight: 450;
}

.novedades-sci-body-v539,
.novedades-sci-empty-v539 {
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #050403;
    box-shadow: none;
}

@media (max-width: 820px) {
    .novedades-sci-backdrop-v539 {
        padding: 14px;
    }

    .novedades-sci-window-v539 {
        width: min(100%, calc(100vw - 28px));
        height: min(760px, calc(100vh - 28px));
        max-height: calc(100vh - 28px);
        border-radius: 18px;
    }

    .novedades-sci-content-v539 {
        padding: 8px 18px 22px;
    }

    .novedades-sci-heading-v539 {
        padding: 0 8px 2px;
    }
}


/* ============================================================
   V_544 - MARCAS SCI AISLADA Y DEPURADA
   Sin work-modal, brands-modal, dashboard-panel, panel-five,
   matrix-disclaimer, brand-panel ni empty-logo-* en la rama SCI.
   Un solo marco exterior y una sola aura cálida.
   ============================================================ */
.marcas-sci-backdrop-v540 {
    position: fixed;
    inset: 0;
    z-index: 5150;
    display: grid;
    place-items: center;
    padding: 36px;
    overflow: auto;
    background: rgba(0, 0, 0, .74);
    backdrop-filter: blur(5px) brightness(.68) saturate(.82);
    -webkit-backdrop-filter: blur(5px) brightness(.68) saturate(.82);
}

.marcas-sci-window-v540 {
    position: relative;
    width: min(720px, calc(100vw - 72px));
    max-height: calc(100vh - 72px);
    display: grid;
    grid-template-rows: 64px minmax(0, 1fr);
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .66);
    border-radius: 20px;
    background: #050403;
    color: rgba(255, 244, 214, .92);
    box-shadow:
        0 0 22px rgba(255, 191, 0, .36),
        0 24px 60px rgba(0, 0, 0, .76);
}

.marcas-sci-window-v540::before,
.marcas-sci-window-v540::after,
.marcas-sci-content-v540::before,
.marcas-sci-content-v540::after,
.marcas-sci-heading-v540::before,
.marcas-sci-heading-v540::after,
.marcas-sci-disclaimer-v540::before,
.marcas-sci-disclaimer-v540::after,
.marcas-sci-matrix-v540::before,
.marcas-sci-matrix-v540::after,
.marcas-sci-cell-v540::before,
.marcas-sci-cell-v540::after {
    content: none !important;
    display: none !important;
}

.marcas-sci-topbar-v540 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 16px 9px 18px;
    box-sizing: border-box;
    background: #050403;
    border: 0;
    box-shadow: none;
}

.marcas-sci-logo-v540 {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
}

.marcas-sci-close-v540 {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0 0 1px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .68);
    border-radius: 10px;
    background: #030303;
    color: #ffbf00;
    font-family: inherit;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(255, 191, 0, .46);
    box-shadow: 0 0 12px rgba(255, 191, 0, .24);
}

.marcas-sci-close-v540:hover,
.marcas-sci-close-v540:focus-visible {
    border-color: rgba(255, 191, 0, .96);
    background: #000;
    outline: none;
    box-shadow: 0 0 17px rgba(255, 191, 0, .40);
}

.marcas-sci-content-v540 {
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 14px;
    padding: 8px 24px 28px;
    box-sizing: border-box;
    border: 0;
    background: #050403;
    box-shadow: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 191, 0, .42) rgba(8, 7, 4, .88);
}

.marcas-sci-heading-v540 {
    width: 100%;
    margin: 0;
    padding: 0 54px 2px;
    box-sizing: border-box;
    text-align: center;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.marcas-sci-heading-v540 h3 {
    margin: 0;
    color: #ffbf00;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: .01em;
    text-shadow:
        0 0 11px rgba(255, 191, 0, .34),
        0 0 22px rgba(255, 125, 0, .16);
}

.marcas-sci-disclaimer-v540 {
    width: min(560px, 100%);
    margin: 0 auto;
    padding: 0 18px 2px;
    display: grid;
    justify-items: center;
    gap: 7px;
    box-sizing: border-box;
    text-align: center;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.marcas-sci-disclaimer-v540 h2 {
    margin: 0;
    color: #ffbf00;
    font-size: 20px;
    line-height: 1.12;
    font-weight: 650;
    text-shadow: 0 0 10px rgba(255, 191, 0, .26);
}

.marcas-sci-disclaimer-v540 p {
    width: min(510px, 100%);
    margin: 0;
    color: rgba(255, 244, 214, .78);
    font-size: 13.5px;
    line-height: 1.38;
    text-shadow: none;
}

.marcas-sci-matrix-v540 {
    width: 525px;
    min-width: 525px;
    max-width: 525px;
    height: 225px;
    min-height: 225px;
    max-height: 225px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(7, 75px);
    grid-template-rows: repeat(3, 75px);
    gap: 0;
    align-content: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .34);
    border-radius: 14px;
    background: #030303;
    box-shadow: none;
}

.marcas-sci-cell-v540 {
    width: 75px;
    height: 75px;
    min-width: 75px;
    min-height: 75px;
    max-width: 75px;
    max-height: 75px;
    margin: 0;
    padding: 0;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .22);
    border-radius: 0;
    background: #000;
    box-shadow: none;
}

.marcas-sci-image-v540 {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, .98);
    filter: none;
    opacity: 1;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 620px) {
    .marcas-sci-backdrop-v540 {
        padding: 14px;
    }

    .marcas-sci-window-v540 {
        width: min(100%, calc(100vw - 28px));
        max-height: calc(100vh - 28px);
        border-radius: 18px;
    }

    .marcas-sci-content-v540 {
        align-items: start;
        overflow-x: auto;
        padding: 8px 16px 24px;
    }
}


/* ============================================================
   V_544 CORREGIDA - REGISTRO WEB+ CON DISTRIBUCIÓN ESPACIAL SCI
   Base: V_540 aprobada.
   Alcance exclusivo: página /registro cuando el tema es Web+.
   Estructura/espacios: equivalentes al Registro SCI aprobado.
   Identidad visual: blancos, azules y logotipo Web+.
   ============================================================ */

.registration-window-pass-through-v541,
.registration-actions-pass-through-v541,
.registration-close-pass-through-v541 {
    display: contents;
}

html:has(.register-webplus-page-v541),
body:has(.register-webplus-page-v541) {
    min-height: 100%;
    margin: 0;
    background:
        radial-gradient(circle at 50% 22%, rgba(11, 115, 255, .12), transparent 24rem),
        linear-gradient(180deg, #f7fbff 0%, #eaf4ff 52%, #f8fbff 100%) !important;
    color: #0b1b3a !important;
}

.register-webplus-page-v541 {
    min-height: 100vh !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 22px !important;
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    overflow: auto !important;
    background:
        radial-gradient(circle at 50% 22%, rgba(11, 115, 255, .12), transparent 24rem),
        linear-gradient(180deg, #f7fbff 0%, #eaf4ff 52%, #f8fbff 100%) !important;
}

.register-webplus-window-v541 {
    position: relative !important;
    width: 546px !important;
    max-width: calc(100vw - 44px) !important;
    max-height: calc(100vh - 44px) !important;
    padding: 72px 17px 19px !important;
    display: block !important;
    overflow: auto !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(11, 115, 255, .34) !important;
    border-radius: 22px !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 115, 255, .08), transparent 22rem),
        linear-gradient(180deg, #ffffff 0%, #f5faff 100%) !important;
    color: #0b1b3a !important;
    box-shadow:
        0 0 0 1px rgba(11, 115, 255, .08),
        0 0 22px rgba(11, 115, 255, .18),
        0 24px 56px rgba(19, 65, 132, .24),
        inset 0 0 18px rgba(11, 115, 255, .05) !important;
}

.register-webplus-logo-v541 {
    position: absolute !important;
    top: 9px !important;
    left: 18px !important;
    width: 46px !important;
    height: 46px !important;
    display: block !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    z-index: 4 !important;
}

.register-webplus-close-v541 {
    position: absolute !important;
    top: 14px !important;
    right: 16px !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 5 !important;
}

.register-webplus-close-v541 .return-to-caller-row {
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.register-webplus-close-v541 .return-to-caller-button,
.register-webplus-close-v541 a.return-to-caller-button {
    position: relative !important;
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(11, 115, 255, .42) !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow:
        0 0 14px rgba(11, 115, 255, .18),
        inset 0 0 10px rgba(11, 115, 255, .05) !important;
}

.register-webplus-close-v541 .return-to-caller-button::before,
.register-webplus-close-v541 a.return-to-caller-button::before {
    content: "×" !important;
    position: relative !important;
    top: -4px !important;
    display: block !important;
    color: #0b73ff !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    text-shadow: 0 0 10px rgba(11, 115, 255, .20) !important;
    pointer-events: none !important;
}

.register-webplus-header-v541 {
    margin: 0 0 12px !important;
    padding: 13px 14px 12px !important;
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    text-align: center !important;
    border: 0 !important;
    border-radius: 16px !important;
    background: transparent !important;
    box-shadow: none !important;
}

.register-webplus-eyebrow-v541 {
    display: none !important;
}

.register-webplus-header-v541 h1 {
    margin: 0 !important;
    color: #0a3f95 !important;
    font-size: 31px !important;
    line-height: 1.02 !important;
    font-weight: 780 !important;
    letter-spacing: -.02em !important;
    text-shadow: none !important;
}

.register-webplus-header-v541 > p:last-child {
    max-width: 448px !important;
    margin: 0 !important;
    color: #51647f !important;
    font-size: 15.5px !important;
    line-height: 1.32 !important;
    text-shadow: none !important;
}

.register-webplus-content-v541 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.register-webplus-form-v541 {
    width: 100% !important;
    display: grid !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.register-webplus-grid-v541 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.register-webplus-field-v541 {
    display: grid !important;
    gap: 5px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #0a3f95 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 650 !important;
}

.register-webplus-field-v541 > span {
    color: #0a3f95 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
}

.register-webplus-page-v541 .required-star {
    color: #0b73ff !important;
    font-weight: 800 !important;
}

.register-webplus-input-v541 {
    width: 100% !important;
    min-height: 37px !important;
    height: 37px !important;
    padding: 8px 10px !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(11, 115, 255, .28) !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #0b1b3a !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    outline: none !important;
    box-shadow: inset 0 1px 2px rgba(19, 65, 132, .06) !important;
}

.register-webplus-input-v541:focus,
.register-webplus-input-v541:focus-visible {
    border-color: rgba(11, 115, 255, .62) !important;
    outline: none !important;
    box-shadow:
        0 0 0 2px rgba(11, 115, 255, .10),
        inset 0 1px 2px rgba(19, 65, 132, .06) !important;
}

.register-webplus-checks-v541 {
    display: grid !important;
    gap: 8px !important;
    margin: 12px 0 !important;
    padding: 10px 11px !important;
    border: 1px solid rgba(11, 115, 255, .20) !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, #f8fbff 0%, #edf6ff 100%) !important;
    box-shadow: inset 0 0 12px rgba(11, 115, 255, .035) !important;
}

.register-webplus-checks-v541 label {
    display: grid !important;
    grid-template-columns: 20px 1fr !important;
    align-items: start !important;
    column-gap: 10px !important;
    min-height: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #51647f !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 500 !important;
}

.register-webplus-checks-v541 input[type="checkbox"] {
    width: 16px !important;
    min-width: 16px !important;
    height: 16px !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    justify-self: center !important;
    accent-color: #0b73ff !important;
    box-shadow: none !important;
}

.register-webplus-checks-v541 label span {
    display: inline !important;
    color: #51647f !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
}

.register-webplus-required-v541 {
    margin: 9px 0 !important;
    color: #51647f !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
}

.register-webplus-actions-v541 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 11px !important;
    margin-top: 11px !important;
    align-items: stretch !important;
}

.register-webplus-privacy-row-v541 {
    display: contents !important;
}

.register-webplus-privacy-button-v541,
.register-webplus-submit-v541 {
    min-height: 39px !important;
    padding: 8px 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(11, 115, 255, .34) !important;
    border-radius: 11px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 750 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    text-shadow: none !important;
}

.register-webplus-privacy-button-v541 {
    background: #ffffff !important;
    color: #0b73ff !important;
    box-shadow: 0 8px 18px rgba(11, 115, 255, .09) !important;
}

.register-webplus-submit-v541 {
    background: linear-gradient(180deg, #2389ff 0%, #0b73ff 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(11, 115, 255, .20) !important;
}

.register-webplus-submit-v541:disabled {
    opacity: .66 !important;
    cursor: wait !important;
}

.register-webplus-alert-v541 {
    display: grid !important;
    gap: 6px !important;
    margin-top: 12px !important;
    padding: 11px 13px !important;
    border: 1px solid rgba(11, 115, 255, .18) !important;
    border-radius: 12px !important;
    background: #f8fbff !important;
    color: #51647f !important;
    font-size: 14px !important;
    line-height: 1.32 !important;
    box-shadow: 0 10px 22px rgba(19, 65, 132, .08) !important;
}

.register-webplus-alert-v541 p {
    margin: 0 !important;
}

.register-webplus-alert-success-v541 {
    border-color: rgba(28, 151, 89, .28) !important;
    background: linear-gradient(180deg, #f3fcf7 0%, #ecf9f2 100%) !important;
    color: #126b3f !important;
}

.register-webplus-alert-danger-v541 {
    border-color: rgba(212, 59, 59, .28) !important;
    background: #fff6f6 !important;
    color: #b32626 !important;
}

@media (max-width: 620px) {
    .register-webplus-page-v541 {
        padding: 12px !important;
    }

    .register-webplus-window-v541 {
        max-width: calc(100vw - 24px) !important;
        max-height: calc(100vh - 24px) !important;
        padding: 68px 12px 14px !important;
        border-radius: 18px !important;
    }

    .register-webplus-actions-v541 {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================================
   V_544 - DESCARGAS WEB+ REALMENTE LLAMADA Y AISLADA
   Misma geometría efectiva de Descargas SCI, conservando blanco/azul.
   ============================================================ */
.download-webplus-backdrop-v542 {
    position: fixed;
    inset: 0;
    z-index: 5200;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(7, 24, 54, .34);
    backdrop-filter: blur(4px) brightness(.82) saturate(.92);
}

.download-webplus-window-v542 {
    position: relative;
    top: -6px;
    width: 356px;
    max-width: calc(100vw - 44px);
    max-height: calc(100vh - 44px);
    overflow: auto;
    padding: 92px 17px 19px;
    box-sizing: border-box;
    border: 1px solid rgba(11, 115, 255, .42);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 115, 255, .09), transparent 18rem),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #eef6ff 100%);
    color: #0b1b3a;
    box-shadow:
        0 0 0 1px rgba(11, 115, 255, .08),
        0 0 20px rgba(11, 115, 255, .20),
        0 22px 54px rgba(18, 76, 160, .22),
        inset 0 0 18px rgba(11, 115, 255, .05);
}

.download-webplus-window-v542::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 62px;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 50%, rgba(11, 115, 255, .10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border-bottom: 1px solid rgba(11, 115, 255, .10);
}

.download-webplus-logo-v542 {
    position: absolute;
    top: 9px;
    left: 18px;
    z-index: 4;
    width: 46px;
    height: 46px;
    display: block;
    object-fit: contain;
    border: 0;
    background: transparent;
}

.download-webplus-close-anchor-v542 {
    position: absolute;
    top: 17px;
    right: 16px;
    z-index: 5;
    width: 40px;
    height: 40px;
}

.download-webplus-close-button-v542 {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(11, 115, 255, .42);
    border-radius: 10px;
    background: #ffffff;
    color: #0b63d1;
    font: inherit;
    font-size: 0;
    cursor: pointer;
    box-shadow:
        0 0 12px rgba(11, 115, 255, .16),
        inset 0 0 9px rgba(11, 115, 255, .05);
}

.download-webplus-close-x-v542 {
    position: relative;
    top: -4px;
    display: block;
    color: #0b63d1;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    pointer-events: none;
}

.download-webplus-content-v542 {
    width: 100%;
    display: grid;
    gap: 12px;
}

.download-webplus-header-v542 {
    display: grid;
    justify-items: center;
    gap: 4px;
    margin: 0 0 12px;
    padding: 13px 14px 4px;
    text-align: center;
    border: 1px solid rgba(11, 115, 255, .16);
    border-radius: 16px;
    background: rgba(255, 255, 255, .78);
    box-shadow: inset 0 0 12px rgba(11, 115, 255, .04);
}

.download-webplus-header-v542 h3 {
    margin: 0;
    color: #083f93;
    font-size: 31px;
    line-height: 1.02;
    font-weight: 780;
}

.download-webplus-header-v542 p {
    max-width: 100%;
    margin: 4px auto 0;
    color: #4b617c;
    font-size: 15px;
    line-height: 1.32;
}

.download-webplus-body-v542 {
    display: grid;
    gap: 12px;
    padding: 2px 0 0;
}

.download-webplus-body-v542 h4 {
    margin: 0;
    color: #0b63d1;
    font-size: 18px;
    line-height: 1.15;
    text-align: center;
}

.download-webplus-body-v542 > p {
    margin: 0;
    color: #4b617c;
    font-size: 15px;
    line-height: 1.36;
    text-align: center;
}

.download-webplus-status-list-v542 {
    display: grid;
    gap: 8px;
    padding: 10px 11px;
    border: 1px solid rgba(11, 115, 255, .22);
    border-radius: 12px;
    background: rgba(241, 247, 255, .92);
    box-shadow: inset 0 0 12px rgba(11, 115, 255, .04);
}

.download-webplus-status-list-v542 div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 30px;
    padding: 6px 8px;
    border: 1px solid rgba(11, 115, 255, .13);
    border-radius: 10px;
    background: #ffffff;
}

.download-webplus-status-list-v542 span {
    color: #4b617c;
    font-size: 14px;
    line-height: 1.2;
}

.download-webplus-status-list-v542 strong {
    color: #0b63d1;
    font-size: 14px;
    line-height: 1.2;
    text-align: right;
}

.download-webplus-actions-v542 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-top: 2px;
}

.download-webplus-register-v542,
.download-webplus-download-v542 {
    min-height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border-radius: 11px;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}

.download-webplus-register-v542 {
    border: 1px solid rgba(11, 115, 255, .34);
    background: #ffffff;
    color: #0b63d1;
}

.download-webplus-download-v542 {
    border: 1px solid #0b63d1;
    background: linear-gradient(180deg, #1677e8, #075bbf);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(11, 99, 209, .18);
}

@media (max-width: 520px) {
    .download-webplus-actions-v542 {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   V_544 CORREGIDA - NEWSLETTER WEB+ AISLADO
   Geometría final idéntica a Newsletter SCI; identidad blanca/azul Web+.
   Este bloque está al final para no depender de overrides intermedios.
   ============================================================ */
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 {
    width: 100vw !important;
    min-width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 14% 0%, rgba(11, 115, 255, .10), transparent 32%),
        linear-gradient(180deg, #f7fbff 0%, #eaf4ff 52%, #f8fbff 100%) !important;
    color: #0b1b3a !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-modal-page {
    position: relative !important;
    width: 80vw !important;
    max-width: 80vw !important;
    height: 80vh !important;
    max-height: 80vh !important;
    min-width: min(80vw, 720px) !important;
    display: grid !important;
    grid-template-rows: auto auto 1fr !important;
    gap: 14px !important;
    padding: 76px 24px 24px !important;
    border: 1px solid rgba(11, 115, 255, .30) !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at 92% 0%, rgba(54, 132, 255, .13), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
    box-shadow:
        0 0 0 1px rgba(11, 115, 255, .08),
        0 0 22px rgba(11, 115, 255, .16),
        0 34px 82px rgba(7, 36, 84, .22),
        inset 0 0 18px rgba(11, 115, 255, .04) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-modal-page::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 62px !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-modal-page::after {
    content: "" !important;
    position: absolute !important;
    top: 9px !important;
    left: 18px !important;
    width: 46px !important;
    height: 46px !important;
    z-index: 8 !important;
    pointer-events: none !important;
    background-image: url("images/showcase/branding/iq-logo.png") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-modal-header,
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-search-panel,
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-modal-scroll {
    position: relative !important;
    z-index: 2 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-modal-header {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    align-items: start !important;
    padding-bottom: 10px !important;
    border: 0 !important;
    border-bottom: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-title-block {
    display: grid !important;
    gap: 6px !important;
    min-width: 0 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-title-block .eyebrow {
    margin: 0 !important;
    color: #0b73ff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    text-shadow: none !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-title-block h1 {
    margin: 0 !important;
    color: #0a3f95 !important;
    font-size: clamp(1.6rem, 3.1vw, 3.1rem) !important;
    line-height: 1 !important;
    font-weight: 780 !important;
    letter-spacing: -.035em !important;
    text-shadow: none !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-title-block p {
    width: min(760px, 100%) !important;
    margin: 0 !important;
    color: #51647f !important;
    font-size: 15px !important;
    line-height: 1.34 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-modal-header .return-to-caller-row {
    position: absolute !important;
    top: -29px !important;
    right: 16px !important;
    z-index: 8 !important;
    width: min(735px, calc(100% - 36px)) !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-self: start !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .return-to-caller-button,
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 a.return-to-caller-button {
    position: relative !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    border: 1px solid rgba(11, 115, 255, .52) !important;
    border-radius: 10px !important;
    background: linear-gradient(180deg, #ffffff, #eef6ff) !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    text-shadow: none !important;
    box-shadow:
        0 0 14px rgba(11, 115, 255, .20),
        inset 0 0 10px rgba(11, 115, 255, .06) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .return-to-caller-button::before,
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 a.return-to-caller-button::before {
    content: "×" !important;
    display: block !important;
    color: #0b73ff !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    text-shadow: 0 0 9px rgba(11, 115, 255, .18) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .return-to-caller-button:hover,
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .return-to-caller-button:focus-visible {
    border-color: rgba(11, 115, 255, .82) !important;
    background: #ffffff !important;
    outline: none !important;
    box-shadow:
        0 0 18px rgba(11, 115, 255, .28),
        inset 0 0 12px rgba(11, 115, 255, .08) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-search-panel {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: 10px !important;
    align-items: end !important;
    padding: 14px !important;
    border: 1px solid rgba(11, 115, 255, .20) !important;
    border-top-width: 1px !important;
    border-top-style: solid !important;
    border-top-color: rgba(11, 115, 255, .20) !important;
    border-radius: 20px !important;
    background: linear-gradient(180deg, #ffffff, #f5faff) !important;
    box-shadow:
        0 0 14px rgba(11, 115, 255, .08),
        inset 0 0 18px rgba(11, 115, 255, .03) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-search-panel::before,
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-search-panel::after {
    content: none !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-search-label {
    display: grid !important;
    gap: 6px !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-search-label span {
    color: #0b1b3a !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-search-input {
    width: 100% !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(15, 94, 210, .26) !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #0b1b3a !important;
    font-size: 15px !important;
    outline: none !important;
    box-sizing: border-box !important;
    box-shadow: inset 0 0 10px rgba(11, 115, 255, .025) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-search-input:focus {
    border-color: rgba(11, 115, 255, .62) !important;
    box-shadow:
        0 0 0 4px rgba(11, 115, 255, .10),
        0 0 15px rgba(11, 115, 255, .14) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-search-button,
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-clear-button {
    height: 40px !important;
    min-width: 96px !important;
    white-space: nowrap !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-search-status {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
    color: #51647f !important;
    font-size: 13px !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-search-nav {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-nav-button {
    border-radius: 999px !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-modal-scroll {
    min-height: 0 !important;
    height: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: grid !important;
    align-content: start !important;
    gap: 14px !important;
    padding: 2px 12px 2px 2px !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(11, 115, 255, .45) rgba(11, 115, 255, .08) !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-modal-scroll::-webkit-scrollbar {
    width: 10px !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-modal-scroll::-webkit-scrollbar-track {
    background: rgba(11, 115, 255, .08) !important;
    border-radius: 999px !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-modal-scroll::-webkit-scrollbar-thumb {
    background: rgba(11, 115, 255, .45) !important;
    border-radius: 999px !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-public-card,
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-empty-result,
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-subscribe-callout {
    display: grid !important;
    gap: 9px !important;
    padding: 18px 20px !important;
    border: 1px solid rgba(11, 115, 255, .18) !important;
    border-radius: 20px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
    box-shadow:
        0 0 14px rgba(11, 115, 255, .06),
        inset 0 0 18px rgba(11, 115, 255, .025) !important;
    color: #0b1b3a !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-card-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    align-items: center !important;
    color: #6a7c95 !important;
    font-size: 13px !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-card-meta strong {
    color: #0b73ff !important;
    font-weight: 800 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-public-card h2,
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-empty-result h2,
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-subscribe-callout h2 {
    margin: 0 !important;
    color: #0a3f95 !important;
    font-size: 22px !important;
    line-height: 1.12 !important;
    text-shadow: none !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-public-card p,
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-empty-result p,
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-subscribe-callout p,
.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-card-body p {
    margin: 0 !important;
    color: #445872 !important;
    line-height: 1.44 !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-card-body {
    display: grid !important;
    gap: 8px !important;
    padding-top: 2px !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-subscribe-callout {
    justify-items: center !important;
    text-align: center !important;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-register-link {
    width: fit-content !important;
    min-height: 40px !important;
    display: inline-grid !important;
    place-items: center !important;
    padding: 0 18px !important;
    text-decoration: none !important;
}

@media (max-width: 900px) {
    .newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 {
        place-items: start center !important;
        padding: 14px !important;
        overflow: auto !important;
    }

    html:has(.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543),
    body:has(.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543) {
        overflow: auto !important;
    }

    .newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-modal-page {
        width: min(94vw, 100%) !important;
        max-width: min(94vw, 100%) !important;
        min-width: 0 !important;
        height: min(88vh, 900px) !important;
        max-height: none !important;
        padding: 76px 18px 18px !important;
        border-radius: 24px !important;
    }

    .newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-modal-header {
        grid-template-columns: 1fr !important;
    }

    .newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-search-panel {
        grid-template-columns: 1fr !important;
    }

    .newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-search-button,
    .newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543 .newsletter-clear-button {
        width: 100% !important;
    }
}


/* ============================================================
   V_544 - PLATAFORMAS WEB+ AISLADA
   Geometría idéntica a Plataformas SCI; identidad blanca y azul Web+.
   No usa work-modal, branded-modal, contact-modal, contact-option,
   contact-brand-art, action-button ni pseudo-elementos heredados.
   ============================================================ */
.platforms-webplus-backdrop-v544 {
    position: fixed;
    inset: 0;
    z-index: 5100;
    display: grid;
    place-items: center;
    padding: 36px;
    background: rgba(222, 241, 255, .72);
    backdrop-filter: blur(4px) brightness(.98) saturate(1.04);
    -webkit-backdrop-filter: blur(4px) brightness(.98) saturate(1.04);
}

.platforms-webplus-window-v544 {
    width: min(560px, calc(100vw - 72px));
    max-height: calc(100vh - 72px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(0, 132, 255, .62);
    border-radius: 16px;
    background: #ffffff;
    color: #0b1b3a;
    box-shadow:
        0 0 0 1px rgba(0, 184, 255, .18),
        0 0 18px rgba(0, 136, 255, .24),
        0 0 36px rgba(0, 92, 184, .14),
        0 24px 60px rgba(25, 72, 125, .20),
        inset 0 0 18px rgba(0, 136, 255, .05);
}

.platforms-webplus-topbar-v544 {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 16px 9px 18px;
    box-sizing: border-box;
    background: #ffffff;
    border: 0;
}

.platforms-webplus-logo-v544 {
    width: 46px;
    height: 46px;
    display: block;
    object-fit: contain;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
}

.platforms-webplus-close-v544 {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0 0 1px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 132, 255, .62);
    border-radius: 10px;
    background: #ffffff;
    color: #0b63d8;
    font-family: inherit;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    text-shadow: none;
    box-shadow:
        0 0 14px rgba(0, 136, 255, .18),
        inset 0 0 10px rgba(0, 184, 255, .07);
}

.platforms-webplus-close-v544:hover,
.platforms-webplus-close-v544:focus-visible {
    border-color: rgba(0, 132, 255, .90);
    background: #f2f9ff;
    color: #063f8c;
    outline: none;
    box-shadow:
        0 0 0 4px rgba(0, 136, 255, .10),
        0 0 22px rgba(0, 136, 255, .26),
        inset 0 0 12px rgba(0, 184, 255, .08);
}

.platforms-webplus-content-v544 {
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 8px 18px 18px;
    box-sizing: border-box;
    background: #ffffff;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 132, 255, .46) #f4faff;
}

.platforms-webplus-content-v544::-webkit-scrollbar {
    width: 10px;
}

.platforms-webplus-content-v544::-webkit-scrollbar-track {
    background: #f4faff;
}

.platforms-webplus-content-v544::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(0, 132, 255, .46);
}

.platforms-webplus-heading-v544 {
    display: grid;
    justify-items: center;
    gap: 5px;
    margin: 0;
    padding: 0 6px 4px;
    text-align: center;
    background: transparent;
    border: 0;
}

.platforms-webplus-heading-v544 h3 {
    margin: 0;
    color: #063f8c;
    font-size: clamp(24px, 3vw, 31px);
    line-height: 1.08;
    font-weight: 760;
    text-shadow: none;
}

.platforms-webplus-heading-v544 p {
    width: min(430px, 100%);
    margin: 0;
    color: #486380;
    font-size: 14px;
    line-height: 1.35;
}

.platforms-webplus-grid-v544 {
    display: grid;
    grid-template-columns: repeat(3, 138px);
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    background: transparent;
}

.platforms-webplus-card-v544 {
    width: 138px;
    min-width: 138px;
    max-width: 138px;
    min-height: 184px;
    height: 184px;
    display: grid;
    grid-template-rows: 84px 30px 38px;
    align-items: center;
    justify-items: center;
    gap: 2px;
    padding: 12px;
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    border: 1px solid rgba(0, 132, 255, .30);
    border-radius: 15px;
    background: linear-gradient(180deg, #ffffff 0%, #edf7ff 100%);
    color: #0b1b3a;
    box-shadow:
        0 0 10px rgba(0, 136, 255, .08),
        inset 0 0 14px rgba(0, 184, 255, .04);
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.platforms-webplus-card-v544:hover,
.platforms-webplus-card-v544:focus-visible {
    border-color: rgba(0, 132, 255, .72);
    background: linear-gradient(180deg, #ffffff 0%, #e7f5ff 100%);
    outline: none;
    box-shadow:
        0 0 0 1px rgba(0, 184, 255, .12) inset,
        0 0 18px rgba(0, 136, 255, .26),
        0 14px 30px rgba(0, 92, 184, .12);
}

.platforms-webplus-art-v544 {
    width: 110px;
    height: 84px;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    border: 1px solid rgba(0, 132, 255, .22);
    border-radius: 13px;
    background: #f8fcff;
    box-shadow:
        0 0 10px rgba(0, 136, 255, .08),
        inset 0 0 12px rgba(0, 184, 255, .04);
}

.platforms-webplus-frame-v544 {
    width: 82px;
    height: 70px;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    padding: 6px;
    border: 1px solid rgba(0, 132, 255, .18);
    border-radius: 11px;
    background: #edf8ff;
}

.platforms-webplus-core-v544 {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 136, 255, .10);
}

.platforms-webplus-brand-v544 {
    width: 52px;
    height: 52px;
    max-width: 52px;
    max-height: 52px;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    filter: none;
}

.platforms-webplus-brand-x-v544,
.platforms-webplus-brand-gmail-v544,
.platforms-webplus-brand-youtube-v544 {
    width: 56px;
    height: 56px;
    max-width: 56px;
    max-height: 56px;
}

.platforms-webplus-brand-facebook-v544,
.platforms-webplus-brand-linkedin-v544 {
    width: 50px;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
}

.platforms-webplus-brand-discord-v544 {
    width: 56px;
    height: 56px;
    max-width: 56px;
    max-height: 56px;
}

.platforms-webplus-card-v544 strong {
    width: 100%;
    min-height: 28px;
    display: grid;
    place-items: center;
    margin: 0;
    color: #063f8c;
    font-size: 13px;
    line-height: 1.08;
    font-weight: 760;
    text-shadow: none;
}

.platforms-webplus-card-v544 small {
    width: 100%;
    min-height: 34px;
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #486380;
    font-size: 11px;
    line-height: 1.22;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (max-width: 560px) {
    .platforms-webplus-backdrop-v544 {
        padding: 12px;
    }

    .platforms-webplus-window-v544 {
        width: min(440px, calc(100vw - 24px));
        max-height: calc(100vh - 24px);
    }

    .platforms-webplus-grid-v544 {
        grid-template-columns: repeat(2, 138px);
    }
}

@media (max-width: 340px) {
    .platforms-webplus-grid-v544 {
        grid-template-columns: 138px;
    }
}


/* ============================================================
   V_545 - CONTACTO WEB+ AISLADO
   Geometría efectiva idéntica a Contacto SCI; identidad blanca y azul.
   No depende de direct-contact-modal, contact-form-modal,
   contact-form-content, contact-form-header ni estilos heredados.
   ============================================================ */
.contact-webplus-backdrop-v545 {
    position: fixed;
    inset: 0;
    z-index: 5200;
    display: grid;
    place-items: center;
    padding: 28px;
    overflow: auto;
    background: rgba(222, 241, 255, .72);
    backdrop-filter: blur(5px) brightness(.98) saturate(1.04);
    -webkit-backdrop-filter: blur(5px) brightness(.98) saturate(1.04);
}

.contact-webplus-window-v545 {
    position: relative;
    width: min(760px, calc(100vw - 56px));
    max-height: calc(100vh - 56px);
    display: grid;
    grid-template-rows: 64px minmax(0, 1fr);
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(0, 132, 255, .62);
    border-radius: 22px;
    background: #ffffff;
    color: #0b1b3a;
    box-shadow:
        0 0 22px rgba(0, 136, 255, .24),
        0 24px 60px rgba(25, 72, 125, .20);
}

.contact-webplus-window-v545::before,
.contact-webplus-window-v545::after,
.contact-webplus-content-v545::before,
.contact-webplus-content-v545::after,
.contact-webplus-heading-v545::before,
.contact-webplus-heading-v545::after {
    content: none !important;
    display: none !important;
}

.contact-webplus-topbar-v545 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 16px 9px 18px;
    box-sizing: border-box;
    background: #ffffff;
    border: 0;
    box-shadow: none;
}

.contact-webplus-logo-v545 {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
}

.contact-webplus-close-v545 {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0 0 1px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 132, 255, .62);
    border-radius: 10px;
    background: #ffffff;
    color: #0b63d8;
    font-family: inherit;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    text-shadow: none;
    box-shadow: 0 0 12px rgba(0, 136, 255, .18);
}

.contact-webplus-close-v545:hover,
.contact-webplus-close-v545:focus-visible {
    border-color: rgba(0, 132, 255, .94);
    background: #f2f9ff;
    color: #063f8c;
    outline: none;
    box-shadow: 0 0 17px rgba(0, 136, 255, .30);
}

.contact-webplus-content-v545 {
    min-height: 0;
    overflow-y: auto;
    display: grid;
    align-content: start;
    gap: 20px;
    padding: 10px 34px 30px;
    box-sizing: border-box;
    border: 0;
    background: #ffffff;
    box-shadow: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 132, 255, .42) #f4faff;
}

.contact-webplus-content-v545::-webkit-scrollbar { width: 10px; }
.contact-webplus-content-v545::-webkit-scrollbar-track { background: #f4faff; }
.contact-webplus-content-v545::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(0, 132, 255, .42);
}

.contact-webplus-heading-v545 {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0 54px 2px;
    text-align: center;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.contact-webplus-heading-v545 h3 {
    margin: 0;
    color: #0b63d8;
    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.02em;
    text-shadow: none;
}

.contact-webplus-heading-v545 p {
    width: min(590px, 100%);
    margin: 0 auto;
    color: #486380;
    font-size: 16px;
    line-height: 1.46;
    font-weight: 450;
}

.contact-webplus-form-v545 {
    width: 100%;
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.contact-webplus-field-v545 {
    display: grid;
    gap: 8px;
    margin: 0;
    color: #18395f;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.contact-webplus-field-v545 span { color: #18395f; }
.contact-webplus-field-v545 em,
.contact-webplus-required-v545 em { color: #0b63d8; font-style: normal; }

.contact-webplus-input-v545,
.contact-webplus-editor-v545 {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border: 1px solid rgba(0, 132, 255, .34);
    border-radius: 13px;
    background: #f8fcff;
    color: #0b1b3a;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    box-shadow: none;
}

.contact-webplus-input-v545 { height: 48px; padding: 0 15px; }
.contact-webplus-editor-v545 {
    min-height: 210px;
    max-height: 38vh;
    resize: vertical;
    padding: 14px 15px;
    line-height: 1.45;
}

.contact-webplus-input-v545:focus,
.contact-webplus-editor-v545:focus {
    border-color: rgba(0, 132, 255, .84);
    box-shadow: 0 0 0 2px rgba(0, 136, 255, .11);
}

.contact-webplus-required-v545 {
    margin: -2px 0 0;
    color: #607792;
    font-size: 13px;
    line-height: 1.3;
}

.contact-webplus-submit-v545 {
    min-width: 176px;
    height: 46px;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid rgba(0, 132, 255, .72);
    border-radius: 999px;
    background: linear-gradient(180deg, #168cff, #0964d8);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .01em;
    cursor: pointer;
    text-shadow: none;
    box-shadow: 0 0 15px rgba(0, 136, 255, .22);
}

.contact-webplus-submit-v545:hover,
.contact-webplus-submit-v545:focus-visible {
    border-color: rgba(0, 132, 255, .96);
    outline: none;
    box-shadow: 0 0 20px rgba(0, 136, 255, .32);
}

.contact-webplus-submit-v545:disabled { opacity: .62; cursor: wait; }

.contact-webplus-alert-v545 {
    display: grid;
    gap: 6px;
    padding: 13px 15px;
    border: 1px solid rgba(0, 132, 255, .32);
    border-radius: 13px;
    background: #f4faff;
    color: #18395f;
    box-shadow: none;
}

.contact-webplus-alert-v545 strong,
.contact-webplus-alert-v545 p { margin: 0; }
.contact-webplus-alert-success-v545 { border-color: rgba(0, 132, 255, .44); }
.contact-webplus-alert-danger-v545 { border-color: rgba(220, 53, 69, .58); color: #9d1c2c; }

@media (max-width: 820px) {
    .contact-webplus-backdrop-v545 { padding: 14px; }
    .contact-webplus-window-v545 {
        width: min(100%, calc(100vw - 28px));
        max-height: calc(100vh - 28px);
        border-radius: 18px;
    }
    .contact-webplus-content-v545 { padding: 8px 18px 22px; }
    .contact-webplus-heading-v545 { padding: 0 8px 2px; }
    .contact-webplus-editor-v545 { min-height: 170px; }
}


/* ============================================================
   V_548 - NOVEDADES WEB+ AISLADA
   Geometría equivalente a Novedades SCI, conservando la identidad
   blanca y azul de Web+. Sin work-modal, detached-panel-modal,
   news-modal, dashboard-panel, panel-four ni estilos heredados.
   ============================================================ */
.novedades-webplus-backdrop-v546 {
    position: fixed;
    inset: 0;
    z-index: 5150;
    display: grid;
    place-items: center;
    padding: 36px;
    overflow: auto;
    background: rgba(8, 24, 48, .38);
    backdrop-filter: blur(5px) brightness(.94) saturate(1.06);
    -webkit-backdrop-filter: blur(5px) brightness(.94) saturate(1.06);
}

.novedades-webplus-window-v546 {
    position: relative;
    width: min(1040px, calc(100vw - 72px));
    height: min(760px, calc(100vh - 72px));
    max-height: calc(100vh - 72px);
    display: grid;
    grid-template-rows: 64px minmax(0, 1fr);
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(0, 111, 238, .46);
    border-radius: 22px;
    background: #ffffff;
    color: #17385f;
    box-shadow:
        0 0 22px rgba(0, 111, 238, .20),
        0 24px 60px rgba(15, 51, 92, .28);
}

.novedades-webplus-window-v546::before,
.novedades-webplus-window-v546::after,
.novedades-webplus-content-v546::before,
.novedades-webplus-content-v546::after,
.novedades-webplus-heading-v546::before,
.novedades-webplus-heading-v546::after,
.novedades-webplus-body-v546::before,
.novedades-webplus-body-v546::after,
.novedades-webplus-empty-v546::before,
.novedades-webplus-empty-v546::after {
    content: none !important;
    display: none !important;
}

.novedades-webplus-topbar-v546 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 16px 9px 18px;
    box-sizing: border-box;
    background: #f8fbff;
    border: 0;
    box-shadow: none;
}

.novedades-webplus-logo-v546 {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
}

.novedades-webplus-close-v546 {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0 0 1px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 111, 238, .58);
    border-radius: 10px;
    background: #ffffff;
    color: #0868d9;
    font-family: inherit;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0, 111, 238, .20);
    box-shadow: 0 0 12px rgba(0, 111, 238, .16);
}

.novedades-webplus-close-v546:hover,
.novedades-webplus-close-v546:focus-visible {
    border-color: rgba(0, 111, 238, .92);
    background: #f5faff;
    outline: none;
    box-shadow: 0 0 17px rgba(0, 111, 238, .28);
}

.novedades-webplus-content-v546 {
    min-height: 0;
    overflow-y: auto;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: stretch;
    gap: 20px;
    padding: 10px 34px 30px;
    box-sizing: border-box;
    border: 0;
    background: #ffffff;
    box-shadow: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 111, 238, .34) #eef6ff;
}

.novedades-webplus-content-v546::-webkit-scrollbar {
    width: 10px;
}

.novedades-webplus-content-v546::-webkit-scrollbar-track {
    background: #eef6ff;
    border-radius: 999px;
}

.novedades-webplus-content-v546::-webkit-scrollbar-thumb {
    background: rgba(0, 111, 238, .34);
    border-radius: 999px;
}

.novedades-webplus-heading-v546 {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0 54px 2px;
    text-align: center;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.novedades-webplus-heading-v546 h3 {
    margin: 0;
    color: #0868d9;
    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.02em;
    text-shadow: 0 0 11px rgba(0, 111, 238, .16);
}

.novedades-webplus-heading-v546 p {
    width: min(620px, 100%);
    margin: 0 auto;
    color: #4e6e92;
    font-size: 16px;
    line-height: 1.46;
    font-weight: 450;
}

.novedades-webplus-body-v546,
.novedades-webplus-empty-v546 {
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
}

@media (max-width: 820px) {
    .novedades-webplus-backdrop-v546 {
        padding: 14px;
    }

    .novedades-webplus-window-v546 {
        width: min(100%, calc(100vw - 28px));
        height: min(760px, calc(100vh - 28px));
        max-height: calc(100vh - 28px);
        border-radius: 18px;
    }

    .novedades-webplus-content-v546 {
        padding: 8px 18px 22px;
    }

    .novedades-webplus-heading-v546 {
        padding: 0 8px 2px;
    }
}


/* ============================================================
   V_548 - TIENDA WEB+ AISLADA
   Geometría equivalente a Tienda SCI, conservando identidad
   blanca/azul y logotipo propio de Web+.
   ============================================================ */
.store-webplus-backdrop-v547 {
    position: fixed;
    inset: 0;
    z-index: 5100;
    display: grid;
    place-items: center;
    padding: 36px;
    background: rgba(6, 25, 52, .42);
    backdrop-filter: blur(4px) brightness(.94) saturate(1.08);
}

.store-webplus-shell-v547 {
    position: relative;
    width: min(675px, calc(100vw - 72px));
    max-height: calc(100vh - 72px);
    display: grid;
    place-items: center;
    padding: 0;
    box-sizing: border-box;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.store-webplus-card-v547 {
    width: min(440px, calc(100vw - 48px));
    min-height: 0;
    display: grid;
    place-items: center;
    justify-items: center;
    gap: 10px;
    padding: 12px 12px 14px;
    box-sizing: border-box;
    border: 1px solid rgba(3, 105, 245, .42);
    border-radius: 16.5px;
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
    color: #18395f;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(3, 105, 245, .14),
        0 0 18px rgba(3, 105, 245, .22),
        0 0 34px rgba(91, 169, 255, .15),
        0 18px 46px rgba(20, 58, 103, .24),
        inset 0 0 14px rgba(3, 105, 245, .06);
}

.store-webplus-header-v547 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 0;
    background: transparent;
}

.store-webplus-logo-v547 {
    position: static;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
}

.store-webplus-close-v547 {
    position: static;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0 0 2px;
    box-sizing: border-box;
    border: 1px solid rgba(3, 105, 245, .58);
    border-radius: 10px;
    background: #ffffff;
    color: #0b63d8;
    font-family: inherit;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(3, 105, 245, .24);
    box-shadow:
        0 0 14px rgba(3, 105, 245, .20),
        inset 0 0 10px rgba(3, 105, 245, .05);
}

.store-webplus-close-v547:hover,
.store-webplus-close-v547:focus-visible {
    border-color: rgba(3, 105, 245, .90);
    background: #f3f8ff;
    outline: none;
    box-shadow:
        0 0 18px rgba(3, 105, 245, .28),
        0 0 28px rgba(91, 169, 255, .15),
        inset 0 0 12px rgba(3, 105, 245, .07);
}

.store-webplus-image-frame-v547 {
    width: auto;
    max-width: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    padding: 10px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(3, 105, 245, .24);
    border-radius: 15px;
    background: #ffffff;
    box-shadow:
        0 0 14px rgba(3, 105, 245, .10),
        inset 0 0 18px rgba(3, 105, 245, .04);
}

.store-webplus-image-v547 {
    width: 216px;
    max-width: min(216px, calc(100vw - 80px));
    height: auto;
    flex: 0 0 auto;
    display: block;
    margin: 0;
    border: 0;
    border-radius: 10px;
    object-fit: contain;
}

.store-webplus-card-v547 h3 {
    margin: 0;
    color: #123f78;
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.1;
    font-weight: 650;
    text-shadow: none;
}

.store-webplus-card-v547 p {
    width: min(480px, 100%);
    margin: 0;
    color: #486787;
    font-size: clamp(12px, 1.7vw, 16px);
    line-height: 1.35;
    text-shadow: none;
}

.store-webplus-card-v547 p strong {
    color: #0b63d8;
    font-weight: 700;
}

@media (max-width: 640px) {
    .store-webplus-backdrop-v547 {
        padding: 18px;
    }

    .store-webplus-shell-v547 {
        width: min(675px, calc(100vw - 36px));
        max-height: calc(100vh - 36px);
    }

    .store-webplus-card-v547 {
        width: min(440px, calc(100vw - 36px));
    }
}


/* ============================================================
   V_548 - LICENCIA WEB+ AISLADA
   Misma geometría efectiva de Licencia SCI; identidad blanca y azul.
   No depende de work-modal, branded-modal ni estilos SCI.
   ============================================================ */
.license-webplus-backdrop-v548 {
    position: fixed;
    inset: 0;
    z-index: 5100;
    display: grid;
    place-items: center;
    padding: 36px;
    background: rgba(7, 20, 42, .46);
    backdrop-filter: blur(4px) brightness(.92) saturate(1.05);
}

.license-webplus-shell-v548 {
    position: relative;
    width: min(675px, calc(100vw - 72px));
    max-height: calc(100vh - 72px);
    display: grid;
    place-items: center;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.license-webplus-card-v548 {
    width: min(440px, calc(100vw - 48px));
    min-height: 0;
    display: grid;
    place-items: center;
    justify-items: center;
    gap: 10px;
    padding: 12px 12px 14px;
    box-sizing: border-box;
    border: 1px solid rgba(11, 115, 255, .44);
    border-radius: 16.5px;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 115, 255, .08), transparent 16rem),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    color: #16365f;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(11, 115, 255, .12),
        0 0 18px rgba(11, 115, 255, .22),
        0 0 34px rgba(3, 105, 245, .13),
        0 18px 46px rgba(7, 36, 84, .24),
        inset 0 0 14px rgba(11, 115, 255, .05);
}

.license-webplus-card-v548::before,
.license-webplus-card-v548::after,
.license-webplus-header-v548::before,
.license-webplus-header-v548::after,
.license-webplus-image-frame-v548::before,
.license-webplus-image-frame-v548::after {
    content: none !important;
}

.license-webplus-header-v548 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.license-webplus-logo-v548 {
    position: static;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
}

.license-webplus-close-v548 {
    position: static;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 1px solid rgba(11, 115, 255, .62);
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff, #edf6ff);
    color: #0369f5;
    font-family: inherit;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(3, 105, 245, .18);
    box-shadow:
        0 0 14px rgba(11, 115, 255, .16),
        inset 0 0 10px rgba(11, 115, 255, .06);
}

.license-webplus-close-v548:hover,
.license-webplus-close-v548:focus-visible {
    border-color: rgba(11, 115, 255, .88);
    background: #ffffff;
    outline: none;
    box-shadow:
        0 0 18px rgba(11, 115, 255, .26),
        0 0 28px rgba(3, 105, 245, .12),
        inset 0 0 12px rgba(11, 115, 255, .08);
}

.license-webplus-close-x-v548 {
    position: relative;
    top: -2px;
    left: 0;
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    font: inherit;
    line-height: 1;
    color: inherit;
    pointer-events: none;
}

.license-webplus-image-frame-v548 {
    width: auto;
    max-width: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    padding: 10px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(11, 115, 255, .22);
    border-radius: 15px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    box-shadow:
        0 0 14px rgba(11, 115, 255, .08),
        inset 0 0 18px rgba(11, 115, 255, .035);
}

.license-webplus-image-v548 {
    width: 216px;
    max-width: min(216px, calc(100vw - 80px));
    height: auto;
    flex: 0 0 auto;
    display: block;
    margin: 0;
    border: 0;
    border-radius: 10px;
    object-fit: contain;
}

.license-webplus-card-v548 h3 {
    margin: 0;
    color: #123a6d;
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.1;
    font-weight: 650;
    text-shadow: none;
}

.license-webplus-card-v548 p {
    width: min(480px, 100%);
    margin: 0;
    color: rgba(22, 54, 95, .82);
    font-size: clamp(12px, 1.7vw, 16px);
    line-height: 1.35;
    text-shadow: none;
}

.license-webplus-card-v548 p strong {
    color: #0369f5;
    font-weight: 700;
}

@media (max-width: 640px) {
    .license-webplus-backdrop-v548 {
        padding: 20px;
    }

    .license-webplus-shell-v548 {
        width: min(675px, calc(100vw - 40px));
    }

    .license-webplus-card-v548 {
        width: min(440px, calc(100vw - 40px));
    }
}


/* ============================================================
   V_549 - NOTICIAS WEB+ AISLADA
   Misma geometría efectiva de Noticias SCI; identidad blanca y azul.
   No depende de work-modal, branded-modal ni estilos SCI.
   ============================================================ */
.news-webplus-backdrop-v549 {
    position: fixed;
    inset: 0;
    z-index: 5100;
    display: grid;
    place-items: center;
    padding: 36px;
    background: rgba(7, 20, 42, .46);
    backdrop-filter: blur(4px) brightness(.92) saturate(1.05);
}

.news-webplus-shell-v549 {
    position: relative;
    width: min(675px, calc(100vw - 72px));
    max-height: calc(100vh - 72px);
    display: grid;
    place-items: center;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.news-webplus-card-v549 {
    width: min(440px, calc(100vw - 48px));
    min-height: 0;
    display: grid;
    place-items: center;
    justify-items: center;
    gap: 10px;
    padding: 12px 12px 14px;
    box-sizing: border-box;
    border: 1px solid rgba(11, 115, 255, .44);
    border-radius: 16.5px;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 115, 255, .08), transparent 16rem),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    color: #16365f;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(11, 115, 255, .12),
        0 0 18px rgba(11, 115, 255, .22),
        0 0 34px rgba(3, 105, 245, .13),
        0 18px 46px rgba(7, 36, 84, .24),
        inset 0 0 14px rgba(11, 115, 255, .05);
}

.news-webplus-card-v549::before,
.news-webplus-card-v549::after,
.news-webplus-header-v549::before,
.news-webplus-header-v549::after,
.news-webplus-image-frame-v549::before,
.news-webplus-image-frame-v549::after {
    content: none !important;
}

.news-webplus-header-v549 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.news-webplus-logo-v549 {
    position: static;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
}

.news-webplus-close-v549 {
    position: static;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 1px solid rgba(11, 115, 255, .62);
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff, #edf6ff);
    color: #0369f5;
    font-family: inherit;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(3, 105, 245, .18);
    box-shadow:
        0 0 14px rgba(11, 115, 255, .16),
        inset 0 0 10px rgba(11, 115, 255, .06);
}

.news-webplus-close-v549:hover,
.news-webplus-close-v549:focus-visible {
    border-color: rgba(11, 115, 255, .88);
    background: #ffffff;
    outline: none;
    box-shadow:
        0 0 18px rgba(11, 115, 255, .26),
        0 0 28px rgba(3, 105, 245, .12),
        inset 0 0 12px rgba(11, 115, 255, .08);
}

.news-webplus-close-x-v549 {
    position: relative;
    top: -2px;
    left: 0;
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    font: inherit;
    line-height: 1;
    color: inherit;
    pointer-events: none;
}

.news-webplus-image-frame-v549 {
    width: auto;
    max-width: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    padding: 10px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(11, 115, 255, .22);
    border-radius: 15px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    box-shadow:
        0 0 14px rgba(11, 115, 255, .08),
        inset 0 0 18px rgba(11, 115, 255, .035);
}

.news-webplus-image-v549 {
    width: 216px;
    max-width: min(216px, calc(100vw - 80px));
    height: auto;
    flex: 0 0 auto;
    display: block;
    margin: 0;
    border: 0;
    border-radius: 10px;
    object-fit: contain;
}

.news-webplus-card-v549 h3 {
    margin: 0;
    color: #123a6d;
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.1;
    font-weight: 650;
    text-shadow: none;
}

.news-webplus-card-v549 p {
    width: min(480px, 100%);
    margin: 0;
    color: rgba(22, 54, 95, .82);
    font-size: clamp(12px, 1.7vw, 16px);
    line-height: 1.35;
    text-shadow: none;
}

.news-webplus-card-v549 p strong {
    color: #0369f5;
    font-weight: 700;
}

@media (max-width: 640px) {
    .news-webplus-backdrop-v549 {
        padding: 20px;
    }

    .news-webplus-shell-v549 {
        width: min(675px, calc(100vw - 40px));
    }

    .news-webplus-card-v549 {
        width: min(440px, calc(100vw - 40px));
    }
}


/* ============================================================
   V_553 - SOBRE MÍ SCI AISLADA Y DEPURADA
   Sin work-modal, branded-modal, about-modal ni reglas visuales
   heredadas. Un solo marco exterior, una sola aura cálida,
   fotografía con un único marco y scroll únicamente en textos.
   ============================================================ */
.about-sci-backdrop-v550 {
    position: fixed;
    inset: 0;
    z-index: 5200;
    display: grid;
    place-items: center;
    padding: 36px;
    overflow: auto;
    background: rgba(0, 0, 0, .74);
    backdrop-filter: blur(5px) brightness(.68) saturate(.82);
    -webkit-backdrop-filter: blur(5px) brightness(.68) saturate(.82);
}

.about-sci-window-v550 {
    position: relative;
    width: min(1080px, calc(100vw - 72px));
    height: min(720px, calc(100vh - 72px));
    max-height: calc(100vh - 72px);
    display: grid;
    grid-template-rows: 64px minmax(0, 1fr);
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .66);
    border-radius: 22px;
    background: #050403;
    color: rgba(255, 244, 214, .92);
    box-shadow:
        0 0 22px rgba(255, 191, 0, .36),
        0 24px 60px rgba(0, 0, 0, .76);
}

.about-sci-window-v550::before,
.about-sci-window-v550::after,
.about-sci-topbar-v550::before,
.about-sci-topbar-v550::after,
.about-sci-content-v550::before,
.about-sci-content-v550::after,
.about-sci-heading-v550::before,
.about-sci-heading-v550::after,
.about-sci-layout-v550::before,
.about-sci-layout-v550::after,
.about-sci-photo-frame-v550::before,
.about-sci-photo-frame-v550::after,
.about-sci-text-scroll-v550::before,
.about-sci-text-scroll-v550::after {
    content: none !important;
    display: none !important;
}

.about-sci-topbar-v550 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 16px 9px 18px;
    box-sizing: border-box;
    background: #050403;
    border: 0;
    box-shadow: none;
}

.about-sci-logo-v550 {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
}

.about-sci-close-v550 {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0 0 1px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 191, 0, .68);
    border-radius: 10px;
    background: #030303;
    color: #ffbf00;
    font-family: inherit;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(255, 191, 0, .46);
    box-shadow: 0 0 12px rgba(255, 191, 0, .24);
}

.about-sci-close-v550:hover,
.about-sci-close-v550:focus-visible {
    border-color: rgba(255, 191, 0, .96);
    background: #000;
    outline: none;
    box-shadow: 0 0 17px rgba(255, 191, 0, .40);
}

.about-sci-content-v550 {
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 20px;
    padding: 10px 34px 30px;
    box-sizing: border-box;
    overflow: hidden;
    border: 0;
    background: #050403;
    box-shadow: none;
}

.about-sci-heading-v550 {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0 54px 2px;
    text-align: center;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.about-sci-kicker-v550 {
    margin: 0;
    color: rgba(255, 244, 214, .76);
    font-size: 13px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-shadow: none;
}

.about-sci-heading-v550 h3 {
    margin: 0;
    color: #ffbf00;
    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.02em;
    text-shadow:
        0 0 11px rgba(255, 191, 0, .34),
        0 0 22px rgba(255, 125, 0, .16);
}

.about-sci-layout-v550 {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: 318px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    overflow: hidden;
}

.about-sci-photo-frame-v550 {
    width: 100%;
    min-width: 0;
    max-height: 100%;
    align-self: start;
    margin: 0;
    padding: 7px;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(255, 191, 0, .54);
    border-radius: 16px;
    background: #070605;
    box-shadow: none;
}

.about-sci-photo-v550 {
    width: 100%;
    max-height: 100%;
    display: block;
    border: 0;
    border-radius: 11px;
    object-fit: contain;
    object-position: center top;
    box-shadow: none;
    filter: none;
}

.about-sci-text-scroll-v550 {
    min-width: 0;
    min-height: 0;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 2px 14px 2px 0;
    box-sizing: border-box;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(255, 244, 214, .84);
    font-size: 16px;
    line-height: 1.58;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 191, 0, .42) rgba(8, 7, 4, .88);
}

.about-sci-text-scroll-v550 p {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: inherit;
}

.about-sci-text-scroll-v550::-webkit-scrollbar {
    width: 9px;
}

.about-sci-text-scroll-v550::-webkit-scrollbar-track {
    background: rgba(8, 7, 4, .88);
    border-radius: 999px;
}

.about-sci-text-scroll-v550::-webkit-scrollbar-thumb {
    background: rgba(255, 191, 0, .42);
    border-radius: 999px;
}

@media (max-width: 900px) {
    .about-sci-backdrop-v550 {
        padding: 14px;
    }

    .about-sci-window-v550 {
        width: min(100%, calc(100vw - 28px));
        height: min(720px, calc(100vh - 28px));
        max-height: calc(100vh - 28px);
        border-radius: 18px;
    }

    .about-sci-content-v550 {
        padding: 8px 18px 22px;
    }

    .about-sci-heading-v550 {
        padding: 0 8px 2px;
    }

    .about-sci-layout-v550 {
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
        gap: 18px;
    }
}


/* ============================================================
   V_553 - SOBRE MÍ WEB+ AISLADA Y DEPURADA
   Misma geometría limpia de SCI, conservando identidad blanca y azul.
   Sin work-modal, branded-modal ni reglas visuales heredadas.
   ============================================================ */
.about-webplus-backdrop-v551 {
    position: fixed;
    inset: 0;
    z-index: 5200;
    display: grid;
    place-items: center;
    padding: 36px;
    overflow: auto;
    background: rgba(7, 20, 40, .38);
    backdrop-filter: blur(5px) brightness(.96) saturate(1.04);
    -webkit-backdrop-filter: blur(5px) brightness(.96) saturate(1.04);
}

.about-webplus-window-v551 {
    position: relative;
    width: min(1080px, calc(100vw - 72px));
    height: min(720px, calc(100vh - 72px));
    max-height: calc(100vh - 72px);
    display: grid;
    grid-template-rows: 64px minmax(0, 1fr);
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(3, 105, 245, .46);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    color: #17314f;
    box-shadow:
        0 0 22px rgba(3, 105, 245, .24),
        0 24px 60px rgba(20, 55, 95, .24);
}

.about-webplus-window-v551::before,
.about-webplus-window-v551::after,
.about-webplus-topbar-v551::before,
.about-webplus-topbar-v551::after,
.about-webplus-content-v551::before,
.about-webplus-content-v551::after,
.about-webplus-heading-v551::before,
.about-webplus-heading-v551::after,
.about-webplus-layout-v551::before,
.about-webplus-layout-v551::after,
.about-webplus-photo-frame-v551::before,
.about-webplus-photo-frame-v551::after,
.about-webplus-text-scroll-v551::before,
.about-webplus-text-scroll-v551::after {
    content: none !important;
    display: none !important;
}

.about-webplus-topbar-v551 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 16px 9px 18px;
    box-sizing: border-box;
    background: #ffffff;
    border: 0;
    box-shadow: none;
}

.about-webplus-logo-v551 {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
}

.about-webplus-close-v551 {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0 0 1px;
    box-sizing: border-box;
    border: 1px solid rgba(3, 105, 245, .56);
    border-radius: 10px;
    background: #ffffff;
    color: #0369f5;
    font-family: inherit;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(3, 105, 245, .20);
    box-shadow: 0 0 12px rgba(3, 105, 245, .16);
}

.about-webplus-close-v551:hover,
.about-webplus-close-v551:focus-visible {
    border-color: rgba(3, 105, 245, .92);
    background: #f5f9ff;
    outline: none;
    box-shadow: 0 0 17px rgba(3, 105, 245, .28);
}

.about-webplus-content-v551 {
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 20px;
    padding: 10px 34px 30px;
    box-sizing: border-box;
    overflow: hidden;
    border: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: none;
}

.about-webplus-heading-v551 {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0 54px 2px;
    text-align: center;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.about-webplus-kicker-v551 {
    margin: 0;
    color: rgba(23, 49, 79, .68);
    font-size: 13px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-shadow: none;
}

.about-webplus-heading-v551 h3 {
    margin: 0;
    color: #0369f5;
    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.02em;
    text-shadow: 0 0 10px rgba(3, 105, 245, .12);
}

.about-webplus-layout-v551 {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: 318px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    overflow: hidden;
}

.about-webplus-photo-frame-v551 {
    width: 100%;
    min-width: 0;
    max-height: 100%;
    align-self: start;
    margin: 0;
    padding: 7px;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(3, 105, 245, .34);
    border-radius: 16px;
    background: #f3f8ff;
    box-shadow: none;
}

.about-webplus-photo-v551 {
    width: 100%;
    max-height: 100%;
    display: block;
    border: 0;
    border-radius: 11px;
    object-fit: contain;
    object-position: center top;
    box-shadow: none;
    filter: none;
}

.about-webplus-text-scroll-v551 {
    min-width: 0;
    min-height: 0;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 2px 14px 2px 0;
    box-sizing: border-box;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #294766;
    font-size: 16px;
    line-height: 1.58;
    scrollbar-width: thin;
    scrollbar-color: rgba(3, 105, 245, .34) rgba(222, 235, 251, .80);
}

.about-webplus-text-scroll-v551 p {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: inherit;
}

.about-webplus-text-scroll-v551::-webkit-scrollbar {
    width: 9px;
}

.about-webplus-text-scroll-v551::-webkit-scrollbar-track {
    background: rgba(222, 235, 251, .80);
    border-radius: 999px;
}

.about-webplus-text-scroll-v551::-webkit-scrollbar-thumb {
    background: rgba(3, 105, 245, .34);
    border-radius: 999px;
}

@media (max-width: 900px) {
    .about-webplus-backdrop-v551 {
        padding: 14px;
    }

    .about-webplus-window-v551 {
        width: min(100%, calc(100vw - 28px));
        height: min(720px, calc(100vh - 28px));
        max-height: calc(100vh - 28px);
        border-radius: 18px;
    }

    .about-webplus-content-v551 {
        padding: 8px 18px 22px;
    }

    .about-webplus-heading-v551 {
        padding: 0 8px 2px;
    }

    .about-webplus-layout-v551 {
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
        gap: 18px;
    }
}

/* ==============================
   WEB04+ (V_556)
   Duplicado visual de WEB+ con assets rojos exclusivos.
   Se limita a clases nuevas para no contaminar SCI ni WEB+.
   ============================== */
.home-dashboard.desktop-theme-web04plus .theme-pill,
.home-dashboard.desktop-theme-web04plus .language-pill {
    border-color: rgba(250, 204, 21, 0.34);
    box-shadow: 0 0 0 1px rgba(253, 224, 71, 0.08) inset;
}

.newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543.newsletter-web04plus-v555 .newsletter-modal-page::after {
    background-image: url("images/web04/branding/iq-logo.png") !important;
}


/* =========================================================
   V_556 - WEB04+: tipografía azul convertida a guinda
   Alcance estricto: solo WEB04+. No altera SCI ni WEB+.
   ========================================================= */
.home-dashboard.desktop-theme-web04plus {
    --web04-guinda: #facc15;
    --web04-guinda-dark: #a16207;
    --web04-guinda-light: #fde047;
    --showcase-blue: #facc15 !important;
    --showcase-blue-dark: #a16207 !important;
}

/* Navegación, etiquetas y acentos tipográficos de la pantalla principal */
.home-dashboard.desktop-theme-web04plus :is(
    .desktop-about-nav a,
    .top-register,
    .top-theme-button,
    .top-language-button,
    .theme-pill,
    .language-pill,
    .showcase-kicker,
    .showcase-profile-role,
    .panel-title p,
    .content-title p,
    .project-inline-status,
    .project-inline-status span,
    .status-badge,
    .project-status.active,
    .intro-accent
) {
    color: var(--web04-guinda) !important;
}

.home-dashboard.desktop-theme-web04plus :is(
    .desktop-about-nav a::before,
    .desktop-about-nav a.active::before,
    .top-register::first-letter,
    .top-theme-button::first-letter,
    .top-language-button::first-letter
) {
    color: var(--web04-guinda-light) !important;
}

.home-dashboard.desktop-theme-web04plus :is(
    .panel-title h2,
    .content-title h2,
    .showcase-profile-card h2,
    .showcase-profile-card h3,
    .showcase-selected-copy h2,
    .showcase-bottom-strip strong,
    .project-text strong,
    .desktop-top-action-button strong,
    .project-inline-meta strong
) {
    color: var(--web04-guinda-dark) !important;
    text-shadow: 0 0 10px rgba(250, 204, 21, .10) !important;
}

.home-dashboard.desktop-theme-web04plus :is(
    .showcase-selected-actions button.secondary,
    .project-inline-actions a.secondary,
    .project-inline-actions button.secondary
) {
    color: var(--web04-guinda-dark) !important;
}

/* Modales genéricos que reciben directamente la clase del tema */
.language-modal-backdrop.desktop-theme-web04plus :is(
    .language-modal-header h2,
    .language-choice.selected,
    .language-choice:hover,
    .language-choice:focus-visible
),
.work-modal-backdrop.desktop-theme-web04plus :is(
    h2,
    h3,
    strong,
    .detached-panel-title,
    .matrix-disclaimer h2
) {
    color: #a16207 !important;
}

.language-modal-backdrop.desktop-theme-web04plus .language-modal-close,
.work-modal-backdrop.desktop-theme-web04plus :is(
    .work-modal-close,
    .status-badge,
    .project-inline-status
) {
    color: #facc15 !important;
}

/* Ventanas Web+ reutilizadas por WEB04+ dentro de Desktop */
body:has(.home-dashboard.desktop-theme-web04plus) :is(
    .platforms-webplus-heading-v544 h3,
    .platforms-webplus-card-v544 strong,
    .contact-webplus-field-v545,
    .contact-webplus-field-v545 span,
    .store-webplus-card-v547 h3,
    .license-webplus-card-v548 h3,
    .news-webplus-card-v549 h3,
    .download-webplus-header-v542 h3,
    .brands-modal .detached-panel-title,
    .brands-modal .matrix-disclaimer h2
) {
    color: #a16207 !important;
    text-shadow: 0 0 10px rgba(250, 204, 21, .10) !important;
}

body:has(.home-dashboard.desktop-theme-web04plus) :is(
    .platforms-webplus-close-v544,
    .contact-webplus-close-v545,
    .contact-webplus-heading-v545 h3,
    .contact-webplus-field-v545 em,
    .contact-webplus-required-v545 em,
    .novedades-webplus-close-v546,
    .novedades-webplus-heading-v546 h3,
    .store-webplus-close-v547,
    .store-webplus-card-v547 p strong,
    .license-webplus-close-v548,
    .license-webplus-card-v548 p strong,
    .news-webplus-close-v549,
    .news-webplus-card-v549 p strong,
    .about-webplus-close-v551,
    .about-webplus-heading-v551 h3,
    .download-webplus-close-button-v542,
    .download-webplus-close-x-v542,
    .download-webplus-body-v542 h4,
    .download-webplus-status-list-v542 strong,
    .download-webplus-register-v542,
    .brands-modal .work-modal-close
) {
    color: #facc15 !important;
}

body:has(.home-dashboard.desktop-theme-web04plus) :is(
    .platforms-webplus-close-v544:hover,
    .platforms-webplus-close-v544:focus-visible,
    .contact-webplus-close-v545:hover,
    .contact-webplus-close-v545:focus-visible
) {
    color: #a16207 !important;
}

/* Registro WEB04+ */
.register-web04plus-page-v555 :is(
    .register-webplus-header-v541 h1,
    .register-webplus-field-v541,
    .register-webplus-field-v541 > span
) {
    color: #a16207 !important;
}

.register-web04plus-page-v555 :is(
    .register-webplus-close-v541 .return-to-caller-button::before,
    .register-webplus-close-v541 a.return-to-caller-button::before,
    .required-star,
    .register-webplus-privacy-button-v541
) {
    color: #facc15 !important;
}

/* Newsletter WEB04+ */
.newsletter-public-page.newsletter-web04plus-v555 :is(
    .newsletter-title-block h1,
    .newsletter-public-card h2,
    .newsletter-empty-result h2,
    .newsletter-subscribe-callout h2
) {
    color: #a16207 !important;
    text-shadow: 0 0 10px rgba(250, 204, 21, .10) !important;
}

.newsletter-public-page.newsletter-web04plus-v555 :is(
    .newsletter-title-block .eyebrow,
    .return-to-caller-button::before,
    a.return-to-caller-button::before,
    .newsletter-card-meta strong,
    .newsletter-nav-button,
    .newsletter-search-position
) {
    color: #facc15 !important;
}

/* Páginas auxiliares WEB04+ */
.download-theme-web04plus :is(
    .download-page-header h1,
    .download-panel h2
),
.privacy-theme-web04plus :is(
    .privacy-header h1,
    .privacy-section h2
),
.registration-theme-web04plus .registration-page-header h1,
.confirm-contact-theme-web04plus .confirm-contact-card h1 {
    color: #a16207 !important;
}

.download-theme-web04plus :is(
    .download-page-header .eyebrow,
    .download-status-list strong,
    .download-register-button
),
.privacy-theme-web04plus :is(
    .privacy-header .eyebrow,
    .privacy-register-button,
    .privacy-back-to-register-button
),
.registration-theme-web04plus .eyebrow,
.confirm-contact-theme-web04plus :is(
    .eyebrow,
    .button-primary
) {
    color: #facc15 !important;
}

/* =========================================================
   V_556 CORREGIDA - WEB04+: prioridad real para tipografía guinda
   Estas reglas superan los selectores heredados de WEB+ sin tocar WEB+ ni SCI.
   ========================================================= */

/* Pantalla principal WEB04+ */
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus :is(
    .desktop-about-nav a,
    .top-register,
    .top-theme-button,
    .top-language-button,
    .theme-pill,
    .language-pill,
    .showcase-kicker,
    .showcase-profile-role,
    .panel-title p,
    .content-title p,
    .project-inline-status,
    .project-inline-status span,
    .status-badge,
    .project-status.active,
    .intro-accent
) {
    color: #facc15 !important;
}

body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus :is(
    .panel-title h2,
    .content-title h2,
    .showcase-profile-card h2,
    .showcase-profile-card h3,
    .showcase-selected-copy h2,
    .showcase-bottom-strip strong,
    .showcase-mini-benefits strong,
    .project-text strong,
    .desktop-top-action-button strong,
    .project-inline-meta strong,
    .showcase-check-list strong
) {
    color: #a16207 !important;
    text-shadow: 0 0 10px rgba(250, 204, 21, .10) !important;
}

body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus > .home-topbar.desktop-expanded-topbar > .desktop-menu-row.desktop-about-controls-row > .desktop-about-nav a,
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .desktop-about-nav a,
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .top-register,
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .top-theme-button,
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .top-language-button {
    color: #facc15 !important;
}

body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus :is(
    .desktop-about-nav a::before,
    .desktop-about-nav a.active::before,
    .top-register::first-letter,
    .top-theme-button::first-letter,
    .top-language-button::first-letter
) {
    color: #fde047 !important;
}

body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus :is(
    .showcase-selected-actions button.secondary,
    .project-inline-actions a.secondary,
    .project-inline-actions button.secondary
) {
    color: #a16207 !important;
}

/* Ventanas internas WEB04+ abiertas desde el dashboard */
body:has(.home-dashboard.desktop-theme-web04plus) :is(
    .platforms-webplus-heading-v544 h3,
    .platforms-webplus-card-v544 strong,
    .contact-webplus-heading-v545 h3,
    .contact-webplus-field-v545,
    .contact-webplus-field-v545 span,
    .novedades-webplus-heading-v546 h3,
    .store-webplus-card-v547 h3,
    .license-webplus-card-v548 h3,
    .news-webplus-card-v549 h3,
    .about-webplus-heading-v551 h3,
    .download-webplus-header-v542 h3,
    .download-webplus-body-v542 h4,
    .download-webplus-status-list-v542 strong,
    .brands-modal .detached-panel-title,
    .brands-modal .matrix-disclaimer h2
) {
    color: #a16207 !important;
    text-shadow: 0 0 10px rgba(250, 204, 21, .10) !important;
}

body:has(.home-dashboard.desktop-theme-web04plus) :is(
    .platforms-webplus-close-v544,
    .contact-webplus-close-v545,
    .contact-webplus-field-v545 em,
    .contact-webplus-required-v545 em,
    .novedades-webplus-close-v546,
    .store-webplus-close-v547,
    .store-webplus-card-v547 p strong,
    .license-webplus-close-v548,
    .license-webplus-card-v548 p strong,
    .news-webplus-close-v549,
    .news-webplus-card-v549 p strong,
    .about-webplus-close-v551,
    .download-webplus-close-button-v542,
    .download-webplus-close-x-v542,
    .download-webplus-register-v542,
    .brands-modal .work-modal-close
) {
    color: #facc15 !important;
}

/* Registro WEB04+ */
html:has(.register-web04plus-page-v555) .register-web04plus-page-v555 :is(
    .register-webplus-header-v541 h1,
    .register-webplus-header-v541 .register-webplus-eyebrow-v541,
    .register-webplus-field-v541,
    .register-webplus-field-v541 > span,
    .register-webplus-checks-v541 label span
) {
    color: #a16207 !important;
}

html:has(.register-web04plus-page-v555) .register-web04plus-page-v555 :is(
    .register-webplus-close-v541 .return-to-caller-button,
    .register-webplus-close-v541 .return-to-caller-button::before,
    .register-webplus-close-v541 a.return-to-caller-button::before,
    .required-star,
    .register-webplus-privacy-button-v541
) {
    color: #facc15 !important;
}

/* Newsletter WEB04+ */
html:has(.newsletter-web04plus-v555) .newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543.newsletter-web04plus-v555 :is(
    .newsletter-title-block h1,
    .newsletter-public-card h2,
    .newsletter-empty-result h2,
    .newsletter-subscribe-callout h2
) {
    color: #a16207 !important;
    text-shadow: 0 0 10px rgba(250, 204, 21, .10) !important;
}

html:has(.newsletter-web04plus-v555) .newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543.newsletter-web04plus-v555 :is(
    .newsletter-title-block .eyebrow,
    .return-to-caller-button,
    .return-to-caller-button::before,
    a.return-to-caller-button::before,
    .newsletter-card-meta strong,
    .newsletter-nav-button,
    .newsletter-search-position
) {
    color: #facc15 !important;
}

/* Páginas auxiliares WEB04+ */
html:has(.download-theme-web04plus) .download-theme-web04plus :is(
    .download-page-header h1,
    .download-panel h2,
    .download-status-list strong
),
html:has(.privacy-theme-web04plus) .privacy-theme-web04plus :is(
    .privacy-header h1,
    .privacy-section h2
),
html:has(.registration-theme-web04plus) .registration-theme-web04plus .registration-page-header h1,
html:has(.confirm-contact-theme-web04plus) .confirm-contact-theme-web04plus .confirm-contact-card h1 {
    color: #a16207 !important;
}

html:has(.download-theme-web04plus) .download-theme-web04plus :is(
    .download-page-header .eyebrow,
    .download-register-button,
    .return-to-caller-button
),
html:has(.privacy-theme-web04plus) .privacy-theme-web04plus :is(
    .privacy-header .eyebrow,
    .privacy-register-button,
    .privacy-back-to-register-button
),
html:has(.registration-theme-web04plus) .registration-theme-web04plus .eyebrow,
html:has(.confirm-contact-theme-web04plus) .confirm-contact-theme-web04plus :is(
    .eyebrow,
    .button-primary
) {
    color: #facc15 !important;
}

/* =========================================================
   V_556 - WEB04+: botones azules y selector de Proyectos en guinda
   Alcance estricto: solo WEB04+. SCI y WEB+ no se modifican.
   ========================================================= */

/* Botones principales de la pantalla WEB04+ */
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus :is(
    .download-demo,
    .buy-premium,
    .project-inline-actions a:not(.secondary),
    .project-inline-actions button:not(.secondary),
    .showcase-selected-actions button:not(.secondary),
    .showcase-profile-button
) {
    background: linear-gradient(180deg, #fde047 0%, #facc15 52%, #a16207 100%) !important;
    background-color: #facc15 !important;
    border-color: rgba(250, 204, 21, .78) !important;
    color: #111111 !important;
    box-shadow:
        0 12px 24px rgba(161, 98, 7, .24),
        inset 0 1px 0 rgba(255, 255, 255, .20) !important;
}

body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus :is(
    .download-demo:hover,
    .download-demo:focus-visible,
    .buy-premium:hover,
    .buy-premium:focus-visible,
    .project-inline-actions a:not(.secondary):hover,
    .project-inline-actions a:not(.secondary):focus-visible,
    .project-inline-actions button:not(.secondary):hover,
    .project-inline-actions button:not(.secondary):focus-visible,
    .showcase-selected-actions button:not(.secondary):hover,
    .showcase-selected-actions button:not(.secondary):focus-visible,
    .showcase-profile-button:hover,
    .showcase-profile-button:focus-visible
) {
    background: linear-gradient(180deg, #fbbf24 0%, #eab308 52%, #854d0e 100%) !important;
    background-color: #eab308 !important;
    border-color: rgba(161, 98, 7, .94) !important;
    box-shadow:
        0 14px 28px rgba(161, 98, 7, .30),
        0 0 0 4px rgba(250, 204, 21, .10),
        inset 0 1px 0 rgba(255, 255, 255, .24) !important;
}

/* Botones secundarios de WEB04+: continúan blancos, pero ya no conservan borde azul */
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus :is(
    .showcase-selected-actions button.secondary,
    .project-inline-actions a.secondary,
    .project-inline-actions button.secondary
) {
    background: #ffffff !important;
    color: #a16207 !important;
    border-color: rgba(250, 204, 21, .28) !important;
    box-shadow: 0 8px 18px rgba(161, 98, 7, .10) !important;
}

/* Selector de Proyectos: activo, hover, focus y barra de desplazamiento */
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button.selected,
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button.selected:hover,
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button.selected:focus-visible {
    background: linear-gradient(180deg, #fde047 0%, #facc15 54%, #a16207 100%) !important;
    background-color: #facc15 !important;
    border-color: rgba(161, 98, 7, .92) !important;
    box-shadow:
        0 12px 24px rgba(161, 98, 7, .28),
        0 2px 0 rgba(255,255,255,.24) inset,
        0 -3px 0 rgba(52,0,13,.28) inset,
        0 0 0 2px rgba(128,0,32,.18) !important;
}

body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button.selected::before,
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button.selected:hover::before,
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button.selected:focus-visible::before {
    background: linear-gradient(180deg, rgba(166,30,60,.98) 0%, rgba(128,0,32,.98) 54%, rgba(90,0,22,.98) 100%) !important;
    opacity: 1 !important;
}

body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button.selected::after,
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button.selected:hover::after,
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button.selected:focus-visible::after {
    border-top-color: rgba(255,255,255,.55) !important;
    border-left-color: rgba(255,255,255,.42) !important;
    border-right-color: rgba(90,0,22,.30) !important;
    border-bottom-color: rgba(90,0,22,.38) !important;
    box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset !important;
}

body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button.selected :is(
    .project-text strong,
    .project-text small,
    .project-status,
    .project-status.active
) {
    color: #111111 !important;
    text-shadow: 0 1px 2px rgba(52, 0, 13, .28) !important;
}

body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button.selected :is(
    .project-art-wrap,
    .showcase-art-wrap
) {
    background: #fff1f4 !important;
    border-color: rgba(250, 204, 21, .22) !important;
}

body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button:not(.selected):hover,
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button:not(.selected):focus-visible {
    background: linear-gradient(180deg, #ffffff 0%, #fff4f6 50%, #fbe5ea 100%) !important;
    border-color: rgba(250, 204, 21, .48) !important;
    box-shadow:
        0 10px 22px rgba(161, 98, 7, .14),
        0 0 0 2px rgba(250, 204, 21, .12) !important;
}

body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button:not(.selected):hover::before,
body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-button:not(.selected):focus-visible::before {
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,244,246,.98) 50%, rgba(251,229,234,.98) 100%) !important;
}

body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-scroll {
    scrollbar-color: rgba(250, 204, 21, .55) rgba(250, 204, 21, .08) !important;
}

body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus.desktop-theme-web04plus.desktop-theme-web04plus .project-scroll::-webkit-scrollbar-thumb {
    background: rgba(250, 204, 21, .55) !important;
}

/* Selector de idioma dentro de WEB04+ */
html body .language-modal-backdrop.desktop-theme-showcase.desktop-theme-web04plus .language-choice.selected {
    background: linear-gradient(180deg, #fde047 0%, #facc15 56%, #a16207 100%) !important;
    background-color: #facc15 !important;
    border-color: rgba(161, 98, 7, .92) !important;
    color: #111111 !important;
    box-shadow: 0 10px 22px rgba(161, 98, 7, .24) !important;
}

html body .language-modal-backdrop.desktop-theme-showcase.desktop-theme-web04plus .language-choice.selected :is(
    .language-native-name,
    small
) {
    color: #111111 !important;
}

html body .language-modal-backdrop.desktop-theme-showcase.desktop-theme-web04plus .language-choice:not(.selected):hover,
html body .language-modal-backdrop.desktop-theme-showcase.desktop-theme-web04plus .language-choice:not(.selected):focus-visible {
    background: #fff1f4 !important;
    border-color: rgba(250, 204, 21, .42) !important;
    color: #a16207 !important;
}

/* Botones genéricos de ventanas abiertas desde WEB04+ */
html body .work-modal-backdrop.desktop-theme-showcase.desktop-theme-web04plus :is(
    .button-primary,
    .direct-contact-submit,
    .download-demo,
    .buy-premium
) {
    background: linear-gradient(180deg, #fde047 0%, #facc15 52%, #a16207 100%) !important;
    background-color: #facc15 !important;
    border-color: rgba(161, 98, 7, .86) !important;
    color: #111111 !important;
    box-shadow: 0 12px 24px rgba(161, 98, 7, .24) !important;
}

html body .work-modal-backdrop.desktop-theme-showcase.desktop-theme-web04plus :is(
    .button-primary:hover,
    .button-primary:focus-visible,
    .direct-contact-submit:hover,
    .direct-contact-submit:focus-visible,
    .download-demo:hover,
    .download-demo:focus-visible,
    .buy-premium:hover,
    .buy-premium:focus-visible
) {
    background: linear-gradient(180deg, #fbbf24 0%, #eab308 52%, #854d0e 100%) !important;
    background-color: #eab308 !important;
}

/* Contacto y Descargas WEB04+ */
html body:has(.home-dashboard.desktop-theme-web04plus) .contact-webplus-submit-v545,
html body:has(.home-dashboard.desktop-theme-web04plus) .download-webplus-download-v542 {
    background: linear-gradient(180deg, #fde047 0%, #facc15 52%, #a16207 100%) !important;
    background-color: #facc15 !important;
    border-color: rgba(161, 98, 7, .88) !important;
    color: #111111 !important;
    box-shadow: 0 10px 22px rgba(161, 98, 7, .24) !important;
}

html body:has(.home-dashboard.desktop-theme-web04plus) .contact-webplus-submit-v545:hover,
html body:has(.home-dashboard.desktop-theme-web04plus) .contact-webplus-submit-v545:focus-visible,
html body:has(.home-dashboard.desktop-theme-web04plus) .download-webplus-download-v542:hover,
html body:has(.home-dashboard.desktop-theme-web04plus) .download-webplus-download-v542:focus-visible {
    background: linear-gradient(180deg, #fbbf24 0%, #eab308 52%, #854d0e 100%) !important;
    background-color: #eab308 !important;
    border-color: rgba(161, 98, 7, .96) !important;
    box-shadow: 0 12px 26px rgba(161, 98, 7, .30) !important;
}

/* Registro WEB04+ */
html:has(.register-web04plus-page-v555) body .register-web04plus-page-v555 .register-webplus-submit-v541,
html:has(.registration-theme-web04plus) body .registration-theme-web04plus :is(
    .button-primary,
    .registration-submit-button
) {
    background: linear-gradient(180deg, #fde047 0%, #facc15 52%, #a16207 100%) !important;
    background-color: #facc15 !important;
    border-color: rgba(161, 98, 7, .88) !important;
    color: #111111 !important;
    box-shadow: 0 12px 24px rgba(161, 98, 7, .24), inset 0 1px 0 rgba(255,255,255,.20) !important;
}

html:has(.register-web04plus-page-v555) body .register-web04plus-page-v555 .register-webplus-submit-v541:hover,
html:has(.register-web04plus-page-v555) body .register-web04plus-page-v555 .register-webplus-submit-v541:focus-visible,
html:has(.registration-theme-web04plus) body .registration-theme-web04plus :is(
    .button-primary:hover,
    .button-primary:focus-visible,
    .registration-submit-button:hover,
    .registration-submit-button:focus-visible
) {
    background: linear-gradient(180deg, #fbbf24 0%, #eab308 52%, #854d0e 100%) !important;
    background-color: #eab308 !important;
    box-shadow: 0 14px 28px rgba(161, 98, 7, .30), inset 0 1px 0 rgba(255,255,255,.24) !important;
}

/* Newsletter WEB04+: todos los botones que eran azul marino pasan a guinda */
html:has(.newsletter-web04plus-v555) body .newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543.newsletter-web04plus-v555 :is(
    .button-primary,
    .button-secondary,
    a.button-primary,
    a.button-secondary,
    .newsletter-register-link,
    a.newsletter-register-link,
    .newsletter-search-button,
    .newsletter-clear-button,
    .newsletter-nav-button
) {
    background: linear-gradient(180deg, #fde047 0%, #facc15 52%, #a16207 100%) !important;
    background-color: #facc15 !important;
    color: #111111 !important;
    border-color: rgba(161, 98, 7, .88) !important;
    box-shadow: 0 10px 22px rgba(161, 98, 7, .24) !important;
}

html:has(.newsletter-web04plus-v555) body .newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543.newsletter-web04plus-v555 :is(
    .button-primary:hover,
    .button-primary:focus-visible,
    .button-secondary:hover,
    .button-secondary:focus-visible,
    a.button-primary:hover,
    a.button-primary:focus-visible,
    a.button-secondary:hover,
    a.button-secondary:focus-visible,
    .newsletter-register-link:hover,
    .newsletter-register-link:focus-visible,
    .newsletter-search-button:hover,
    .newsletter-search-button:focus-visible,
    .newsletter-clear-button:hover,
    .newsletter-clear-button:focus-visible,
    .newsletter-nav-button:hover,
    .newsletter-nav-button:focus-visible
) {
    background: linear-gradient(180deg, #fbbf24 0%, #eab308 52%, #854d0e 100%) !important;
    background-color: #eab308 !important;
    color: #111111 !important;
    border-color: rgba(161, 98, 7, .96) !important;
    box-shadow: 0 12px 26px rgba(161, 98, 7, .30), 0 0 0 4px rgba(250, 204, 21, .10) !important;
}

/* El botón Volver al anterior permanece blanco; solo se corrige su borde guinda */
html:has(.newsletter-web04plus-v555) body .newsletter-public-page.newsletter-public-theme-showcase.newsletter-webplus-v543.newsletter-web04plus-v555 :is(
    .return-to-caller-button,
    a.return-to-caller-button
) {
    background: #ffffff !important;
    color: #facc15 !important;
    border-color: rgba(250, 204, 21, .46) !important;
    box-shadow: 0 8px 18px rgba(161, 98, 7, .10) !important;
}

/* Descargas, Privacidad y Confirmación WEB04+ */
html:has(.download-theme-web04plus) body .download-theme-web04plus :is(
    .button-primary,
    .download-register-button,
    a.download-register-button
),
html:has(.privacy-theme-web04plus) body .privacy-theme-web04plus :is(
    .privacy-register-button,
    a.privacy-register-button
),
html:has(.confirm-contact-theme-web04plus) body .confirm-contact-theme-web04plus .button-primary {
    background: linear-gradient(180deg, #fde047 0%, #facc15 52%, #a16207 100%) !important;
    background-color: #facc15 !important;
    border-color: rgba(161, 98, 7, .88) !important;
    color: #111111 !important;
    box-shadow: 0 12px 24px rgba(161, 98, 7, .24), inset 0 1px 0 rgba(255,255,255,.20) !important;
}

html:has(.download-theme-web04plus) body .download-theme-web04plus :is(
    .button-primary:hover,
    .button-primary:focus-visible,
    .download-register-button:hover,
    .download-register-button:focus-visible
),
html:has(.privacy-theme-web04plus) body .privacy-theme-web04plus :is(
    .privacy-register-button:hover,
    .privacy-register-button:focus-visible
),
html:has(.confirm-contact-theme-web04plus) body .confirm-contact-theme-web04plus :is(
    .button-primary:hover,
    .button-primary:focus-visible
) {
    background: linear-gradient(180deg, #fbbf24 0%, #eab308 52%, #854d0e 100%) !important;
    background-color: #eab308 !important;
    box-shadow: 0 14px 28px rgba(161, 98, 7, .30), inset 0 1px 0 rgba(255,255,255,.24) !important;
}


/* =========================================================
   V_556 - WEB04+: fondos negros y contraste amarillo
   Conserva la geometría de WEB+; solo cambia su identidad.
   ========================================================= */
html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus,
html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus .four-column-dashboard,
html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus .desktop-main-row,
html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus .dashboard-panel,
html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus .desktop-panel-one,
html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus .desktop-panel-two,
html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus .desktop-panel-three,
html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus .panel-three-main,
html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus .project-button-frame,
html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus .desktop-top-action-frame,
html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus .showcase-profile-card,
html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus .showcase-selected-card,
html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus .showcase-bottom-strip {
    background: #070707 !important;
    background-color: #070707 !important;
    border-color: rgba(250, 204, 21, .42) !important;
    box-shadow: 0 0 0 1px rgba(250, 204, 21, .08) inset, 0 12px 30px rgba(0, 0, 0, .48) !important;
}

html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus > .home-topbar.desktop-expanded-topbar,
html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus .desktop-top-action-panel {
    background: #030303 !important;
    background-color: #030303 !important;
    border-color: rgba(250, 204, 21, .38) !important;
}

html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus :is(
    p, small, span, li, .project-text small, .project-inline-description,
    .showcase-profile-text, .showcase-check-list li, .showcase-bottom-strip span,
    .matrix-copyright, .project-inline-meta span
) {
    color: #e7e5e4 !important;
}

html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus :is(
    h1, h2, h3, strong, .panel-title h2, .content-title h2,
    .showcase-profile-role, .showcase-kicker, .desktop-about-nav a,
    .top-register, .top-theme-button, .top-language-button,
    .theme-pill, .language-pill
) {
    color: #fde047 !important;
    text-shadow: 0 0 12px rgba(250, 204, 21, .18) !important;
}

html body .home-dashboard.desktop-theme-showcase.desktop-theme-white.desktop-theme-web04plus :is(
    .project-button, .desktop-top-action-button, .showcase-selected-actions button.secondary,
    .project-inline-actions a.secondary, .project-inline-actions button.secondary
) {
    background-color: #111111 !important;
    color: #fde047 !important;
    border-color: rgba(250, 204, 21, .42) !important;
}

body:has(.home-dashboard.desktop-theme-web04plus) :is(
    .license-webplus-window-v548, .news-webplus-window-v549, .store-webplus-window-v547,
    .novedades-webplus-window-v546, .marcas-webplus-window-v540,
    .about-webplus-window-v551, .platforms-webplus-window-v544,
    .contact-webplus-window-v545, .download-webplus-window-v542,
    .work-modal-window, .register-modal-window, .language-modal-window
) {
    background: #080808 !important;
    background-color: #080808 !important;
    border-color: rgba(250, 204, 21, .56) !important;
    box-shadow: 0 0 0 1px rgba(250, 204, 21, .10) inset, 0 22px 54px rgba(0,0,0,.72), 0 0 28px rgba(250,204,21,.12) !important;
}

body:has(.home-dashboard.desktop-theme-web04plus) :is(
    .license-webplus-content-v548, .news-webplus-content-v549, .store-webplus-content-v547,
    .novedades-webplus-content-v546, .marcas-webplus-content-v540,
    .about-webplus-content-v551, .platforms-webplus-content-v544,
    .contact-webplus-content-v545, .download-webplus-content-v542,
    .about-webplus-text-scroll-v551, .platforms-webplus-card-v544
) {
    background: #101010 !important;
    background-color: #101010 !important;
    color: #e7e5e4 !important;
    border-color: rgba(250, 204, 21, .30) !important;
}

body:has(.home-dashboard.desktop-theme-web04plus) :is(
    .license-webplus-content-v548, .news-webplus-content-v549, .store-webplus-content-v547,
    .novedades-webplus-content-v546, .marcas-webplus-content-v540,
    .about-webplus-content-v551, .platforms-webplus-content-v544,
    .contact-webplus-content-v545, .download-webplus-content-v542
) :is(p, small, span, li, label) {
    color: #e7e5e4 !important;
}

body:has(.home-dashboard.desktop-theme-web04plus) :is(
    .license-webplus-content-v548, .news-webplus-content-v549, .store-webplus-content-v547,
    .novedades-webplus-content-v546, .marcas-webplus-content-v540,
    .about-webplus-content-v551, .platforms-webplus-content-v544,
    .contact-webplus-content-v545, .download-webplus-content-v542
) :is(h2, h3, h4, strong) {
    color: #fde047 !important;
}

html:has(.register-web04plus-page-v555),
body:has(.register-web04plus-page-v555),
html:has(.newsletter-web04plus-v555),
body:has(.newsletter-web04plus-v555),
html:has(.privacy-theme-web04plus),
body:has(.privacy-theme-web04plus),
html:has(.download-theme-web04plus),
body:has(.download-theme-web04plus),
html:has(.registration-theme-web04plus),
body:has(.registration-theme-web04plus),
html:has(.confirm-contact-theme-web04plus),
body:has(.confirm-contact-theme-web04plus) {
    background: #030303 !important;
    background-color: #030303 !important;
}

.register-web04plus-page-v555 .register-webplus-window-v541,
.newsletter-web04plus-v555 .newsletter-modal-page,
.privacy-theme-web04plus .privacy-card,
.download-theme-web04plus .download-page-panel,
.registration-theme-web04plus :is(.registration-page-header, .registration-form-panel),
.confirm-contact-theme-web04plus .confirm-contact-card {
    background: #090909 !important;
    background-color: #090909 !important;
    color: #e7e5e4 !important;
    border-color: rgba(250, 204, 21, .48) !important;
    box-shadow: 0 20px 48px rgba(0,0,0,.68), 0 0 24px rgba(250,204,21,.10) !important;
}

.register-web04plus-page-v555 :is(p, span, label),
.newsletter-web04plus-v555 :is(p, span, label),
.privacy-theme-web04plus :is(p, span, label),
.download-theme-web04plus :is(p, span, label),
.registration-theme-web04plus :is(p, span, label),
.confirm-contact-theme-web04plus :is(p, span, label) {
    color: #e7e5e4 !important;
}

.register-web04plus-page-v555 :is(h1, h2, h3, strong, .register-webplus-eyebrow-v541),
.newsletter-web04plus-v555 :is(h1, h2, h3, strong, .eyebrow),
.privacy-theme-web04plus :is(h1, h2, h3, strong, .eyebrow),
.download-theme-web04plus :is(h1, h2, h3, strong, .eyebrow),
.registration-theme-web04plus :is(h1, h2, h3, strong, .eyebrow),
.confirm-contact-theme-web04plus :is(h1, h2, h3, strong, .eyebrow) {
    color: #fde047 !important;
}

.register-web04plus-page-v555 :is(input, textarea),
.newsletter-web04plus-v555 :is(input, textarea),
.privacy-theme-web04plus :is(input, textarea),
.download-theme-web04plus :is(input, textarea) {
    background: #151515 !important;
    color: #ffffff !important;
    border-color: rgba(250, 204, 21, .42) !important;
}

/* V_624 - Administración de comercio, pagos y licencias */
.commerce-admin-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.commerce-break-text {
    overflow-wrap: anywhere;
    text-align: right;
}

.commerce-product-editor {
    margin: 16px 0 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.commerce-product-editor select {
    width: 100%;
    border: .75px solid rgba(68,198,255,.25);
    border-radius: 7.5px;
    padding: 9px 10.5px;
    background: rgba(1,8,18,.76);
    color: var(--text);
}

.commerce-admin-note {
    color: var(--muted);
    font-size: .92rem;
}

.commerce-summary-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.commerce-summary-cards article {
    display: grid;
    gap: 7px;
}

.commerce-summary-cards article span {
    color: var(--muted);
}

.commerce-summary-cards article strong {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.commerce-table-panel {
    max-width: 1180px;
    margin: 15px auto;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
}

.table-scroll table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
}

.table-scroll th,
.table-scroll td {
    padding: 10px;
    border-bottom: .75px solid rgba(255,255,255,.09);
    text-align: left;
    vertical-align: top;
}

.table-scroll th {
    color: #dbefff;
}

.table-scroll td {
    color: var(--muted);
}

@media (max-width: 760px) {
    .commerce-admin-heading {
        display: grid;
    }

    .commerce-product-editor,
    .commerce-summary-cards {
        grid-template-columns: 1fr;
    }
}

/* V_625 - Pantallas administrativas compactas y manipulables al 100% de zoom */
.admin-compact-page {
    width: min(1180px, calc(100% - 24px));
    margin: 0 auto;
    padding: 8px 0 28px;
}

.admin-compact-header {
    max-width: none;
    margin: 4px 0 8px;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(220px, auto) minmax(0, 1fr);
    column-gap: 18px;
    align-items: end;
}

.admin-compact-header .eyebrow {
    grid-column: 1 / -1;
    margin: 0 0 2px;
    font-size: .72rem;
    letter-spacing: .08em;
}

.admin-compact-header h1 {
    margin: 0;
    font-size: clamp(1.65rem, 2.4vw, 2.35rem);
    line-height: 1.02;
}

.admin-compact-header > p:last-child {
    margin: 0 0 2px;
    max-width: 720px;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.35;
}

.admin-compact-page .web04-return-owner-neutral-row-v623,
.admin-compact-page .webplus-return-owner-neutral-row-v623 {
    width: auto;
    max-width: none;
    margin: 4px 0 8px;
    justify-content: flex-start;
}

.admin-compact-panel {
    max-width: none;
    margin: 8px 0;
    padding: 12px 14px;
}

.admin-compact-panel h2,
.admin-compact-page .commerce-table-panel h2 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    line-height: 1.2;
}

.admin-compact-panel > p,
.admin-compact-page .commerce-admin-heading p,
.admin-compact-page .commerce-table-panel > p {
    margin: 0 0 8px;
    font-size: .82rem;
    line-height: 1.35;
}

.admin-commerce-page .commerce-admin-readiness .commerce-readiness-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.admin-commerce-page .commerce-product-summary {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}

.admin-compact-page .data-grid div {
    min-height: 34px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: .78rem;
    align-items: center;
}

.admin-compact-page .data-grid div span {
    color: var(--muted);
}

.admin-compact-page .data-grid div strong {
    text-align: right;
    font-size: .8rem;
}

.admin-compact-page .commerce-break-text {
    max-width: 340px;
    font-size: .72rem !important;
    line-height: 1.25;
}

.admin-compact-page .commerce-admin-heading {
    align-items: center;
    gap: 10px;
}

.admin-compact-page .commerce-admin-heading .button-secondary {
    flex: 0 0 auto;
}

.admin-commerce-page .commerce-product-editor {
    width: fit-content;
    max-width: 100%;
    margin: 10px 0 7px;
    grid-template-columns: minmax(150px, 210px) minmax(82px, 105px) minmax(150px, 210px);
    gap: 8px;
}

.admin-commerce-page .commerce-product-editor label {
    gap: 4px;
    font-size: .78rem;
}

.admin-commerce-page .commerce-product-editor input,
.admin-commerce-page .commerce-product-editor select {
    min-height: 32px;
    padding: 6px 8px;
    font-size: .86rem;
}

.admin-commerce-page .commerce-admin-note {
    max-width: 760px;
    margin: 2px 0 8px;
    font-size: .76rem;
}

.admin-compact-page .button-primary,
.admin-compact-page .button-secondary {
    min-height: 30px;
    padding: 6px 10px;
    font-size: .8rem;
}

.admin-compact-page .alert {
    margin-top: 8px;
    padding: 7px 9px;
    font-size: .78rem;
}

.admin-commerce-page .admin-compact-summary {
    width: 100%;
    max-width: none;
    margin: 8px 0;
    padding: 0;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 7px;
}

.admin-commerce-page .admin-compact-summary article {
    min-height: 66px;
    padding: 9px 10px;
    gap: 3px;
}

.admin-commerce-page .admin-compact-summary article span {
    font-size: .72rem;
}

.admin-commerce-page .admin-compact-summary article strong {
    font-size: 1.2rem;
    line-height: 1.1;
}

.admin-compact-page .commerce-table-panel {
    width: 100%;
    max-width: none;
    margin: 8px 0;
    padding: 11px 13px;
}

.admin-compact-page .table-scroll {
    max-height: 310px;
    overflow: auto;
}

.admin-compact-page .table-scroll table,
.admin-database-page .table {
    font-size: .76rem;
}

.admin-compact-page .table-scroll th,
.admin-compact-page .table-scroll td,
.admin-database-page .table th,
.admin-database-page .table td {
    padding: 6px 7px;
    white-space: nowrap;
}

.admin-database-page .database-status-panel .data-grid.two-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.admin-database-page .actions {
    margin-top: 8px;
    gap: 6px;
}

.admin-database-page .table-scroll {
    width: 100%;
    overflow: auto;
}

.admin-database-page .table {
    min-width: 880px;
    margin-top: 5px;
}

.admin-lock {
    width: min(420px, calc(100% - 24px));
    margin: 34px auto;
    padding: 16px;
}

.admin-lock .eyebrow {
    margin: 0 0 3px;
    font-size: .72rem;
}

.admin-lock h1 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    line-height: 1.1;
}

.admin-lock .form-grid.compact {
    grid-template-columns: minmax(0, 300px);
    gap: 7px;
}

.admin-lock input {
    min-height: 34px;
    padding: 7px 9px;
}

.admin-lock .button-primary {
    margin-top: 9px;
    min-width: 86px;
}

@media (max-width: 920px) {
    .admin-compact-header {
        grid-template-columns: 1fr;
        gap: 3px;
        align-items: start;
    }

    .admin-commerce-page .commerce-admin-readiness .commerce-readiness-grid,
    .admin-commerce-page .commerce-product-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-commerce-page .admin-compact-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .admin-compact-page {
        width: min(100% - 16px, 1180px);
        padding-top: 4px;
    }

    .admin-compact-header h1 {
        font-size: 1.55rem;
    }

    .admin-commerce-page .commerce-admin-readiness .commerce-readiness-grid,
    .admin-commerce-page .commerce-product-summary,
    .admin-database-page .database-status-panel .data-grid.two-cols,
    .admin-commerce-page .admin-compact-summary {
        grid-template-columns: 1fr;
    }

    .admin-commerce-page .commerce-product-editor {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .admin-compact-page .commerce-admin-heading {
        display: grid;
    }
}

/* V_659: control propio del Newsletter y baja administrativa. */
.admin-subscribers-v659-unsubscribe-button {
    min-width: 82px;
    min-height: 30px;
    padding: 5px 10px;
    font-size: 10px;
}

.admin-subscribers-v659-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 15000;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgb(0 3 10 / 82%);
    backdrop-filter: blur(6px);
}

.admin-subscribers-v659-modal {
    position: relative;
    width: min(520px, calc(100vw - 36px));
    padding: 20px;
    border: 2px solid rgb(250 204 21 / 68%);
    border-radius: 12px;
    background: linear-gradient(135deg, rgb(2 18 27), rgb(15 23 42));
    box-shadow: 0 28px 90px rgb(0 0 0 / 72%);
    color: #f8fafc;
}

.admin-subscribers-v659-modal h2 {
    margin: 0 42px 10px 0;
    font-size: 20px;
}

.admin-subscribers-v659-modal p {
    color: #cbd5e1;
}

.admin-subscribers-v659-modal label {
    display: grid;
    gap: 6px;
    margin-top: 14px;
    color: #e2e8f0;
    font-size: 12px;
}

.admin-subscribers-v659-modal input {
    width: 100%;
    min-height: 36px;
    padding: 7px 9px;
}

.admin-subscribers-v659-modal-close {
    position: absolute;
    top: 9px;
    right: 10px;
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0 0 3px;
    border: 2px solid rgb(253 224 71 / 94%);
    border-radius: 9px;
    background: rgb(8 12 20 / 98%);
    color: #fff7c2;
    font: 400 25px/1 Arial, Helvetica, sans-serif;
}

.admin-subscribers-v659-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}


/* V_661 - administración de suscriptores */
.admin-subscribers-v661-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 12px;
    margin-top: 12px;
}

.admin-subscribers-v661-filters label {
    display: grid;
    gap: 5px;
    min-width: 210px;
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-subscribers-v661-filters input,
.admin-subscribers-v661-filters select,
.admin-subscribers-v659-modal select {
    min-height: 38px;
    border: 1px solid currentColor;
    border-radius: 8px;
    padding: 7px 10px;
    background: inherit;
    color: inherit;
}

.admin-subscribers-v661-count {
    padding: 8px 10px;
    font-size: 0.82rem;
    opacity: 0.85;
}

.admin-subscribers-v661-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    min-width: 142px;
}

.admin-subscribers-v661-actions button {
    width: 100%;
    white-space: nowrap;
}

.admin-subscribers-v661-delete-button,
.admin-subscribers-v661-delete-confirm {
    border-color: #9c2f2f !important;
}

.admin-subscribers-v661-invalid-email {
    text-decoration: underline wavy;
    text-decoration-thickness: 1px;
    font-weight: 800;
}

.admin-subscribers-v661-already-unsubscribed {
    display: block;
    padding: 7px 4px;
    text-align: center;
    font-size: 0.78rem;
    opacity: 0.78;
}

.admin-subscribers-v661-delete-notice {
    border-left: 4px solid currentColor;
    padding-left: 12px;
    font-size: 0.9rem;
}
