/* =========================================================
   PROSOLUCIONES — SECCIONES (Desarrollo web + Coming soon)
   Todo el CSS de bloques vive aquí. Edita SOLO este archivo
   (o style.css global) — no Custom CSS por contenedor.
   ========================================================= */

/* ---------- Fondos de sección intercalados ---------- */

.ps-sec {
    position: relative;
    width: 100%;
    padding: 110px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.045);
    overflow: hidden;
}

.ps-sec--a {
    background:
        radial-gradient(
            circle at 14% 22%,
            rgba(0, 207, 255, 0.045),
            transparent 30%
        ),
        #050607;
}

.ps-sec--b {
    background:
        radial-gradient(
            circle at 86% 20%,
            rgba(0, 207, 255, 0.045),
            transparent 30%
        ),
        #07090b;
}

.ps-sec--c {
    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(0, 207, 255, 0.055),
            transparent 30%
        ),
        #050607;
}

.ps-sec__inner {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .ps-sec {
        padding: 90px 24px;
    }
}

@media (max-width: 767px) {
    .ps-sec {
        padding: 72px 20px;
    }
}

/* ---------- Eyebrow / títulos comunes ---------- */

.ps-sec__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px;
    padding: 8px 13px;
    background: rgba(0, 207, 255, 0.06);
    border: 1px solid rgba(0, 207, 255, 0.16);
    border-radius: 999px;
    color: #00cfff;
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.ps-sec__header {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.ps-sec__title {
    margin: 0 0 16px !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: 35px !important;
    font-weight: 600 !important;
    line-height: 1.18 !important;
    letter-spacing: -1.1px !important;
    text-align: center !important;
}

.ps-sec__text {
    margin: 0 auto !important;
    max-width: 580px;
    color: rgb(156, 166, 172) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
    text-align: center !important;
}

@media (max-width: 900px) {
    .ps-sec__header {
        margin-bottom: 36px;
    }

    .ps-sec__title {
        font-size: 30px !important;
        letter-spacing: -0.6px !important;
    }
}

/* =========================================================
   BENEFICIOS
   ========================================================= */

.ps-web-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.ps-web-benefit-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    padding: 26px 24px 28px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease;
}

.ps-web-benefit-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(0, 207, 255, 0.22);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(0, 207, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ps-web-benefit-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(0, 207, 255, 0.08);
    border: 1px solid rgba(0, 207, 255, 0.16);
    border-radius: 14px;
    color: #00cfff;
}

.ps-web-benefit-card__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Reset tipografía de cards: evita letter-spacing agresivo de Elementor Kit */
.ps-sec h3.ps-web-benefit-card__title,
.ps-sec h3.ps-web-solution-card__title,
.ps-sec h3.ps-web-project-card__title,
.ps-sec h3.ps-web-plan-card__title,
.ps-web-benefit-card__title,
.ps-web-solution-card__title,
.ps-web-project-card__title,
.ps-web-plan-card__title {
    letter-spacing: 0 !important;
    word-spacing: normal !important;
}

.ps-web-benefit-card__title {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}

.ps-web-benefit-card__text {
    margin: 0 !important;
    color: rgb(156, 166, 172) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

@media (max-width: 900px) {
    .ps-web-benefits__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ps-web-benefit-card {
        padding: 24px 22px;
        border-radius: 20px;
    }
}

/* =========================================================
   SOLUCIONES
   ========================================================= */

.ps-web-solutions__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.ps-web-solution-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    padding: 28px 26px 30px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    text-align: left;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease;
}

.ps-web-solution-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(0, 207, 255, 0.22);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(0, 207, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ps-web-solution-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ps-web-solution-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: rgba(0, 207, 255, 0.08);
    border: 1px solid rgba(0, 207, 255, 0.16);
    border-radius: 14px;
    color: #00cfff;
}

.ps-web-solution-card__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ps-web-solution-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.62);
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.ps-web-solution-card__title {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}

.ps-web-solution-card__text {
    margin: 0 !important;
    color: rgb(156, 166, 172) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

.ps-web-solution-card__list {
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ps-web-solution-card__list li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.ps-web-solution-card__list li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 207, 255, 0.85);
    box-shadow: 0 0 8px rgba(0, 207, 255, 0.35);
}

@media (max-width: 900px) {
    .ps-web-solutions__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ps-web-solution-card {
        padding: 24px 22px;
        border-radius: 20px;
    }
}

/* =========================================================
   PROYECTOS
   ========================================================= */

.ps-web-projects__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.ps-web-project-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.ps-web-project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 207, 255, 0.22);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(0, 207, 255, 0.06);
}

.ps-web-project-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a0d0f;
    text-decoration: none;
}

/* Cards de diseño sin enlace: mismo bloque visual */
div.ps-web-project-card__media {
    cursor: default;
}

.ps-web-project-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    transition: transform 0.45s ease;
}

.ps-web-project-card:hover .ps-web-project-card__media img {
    transform: scale(1.03);
}

.ps-web-project-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    padding: 22px 22px 24px;
}

.ps-web-project-card__tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 10px;
    background: rgba(0, 207, 255, 0.08);
    border: 1px solid rgba(0, 207, 255, 0.16);
    border-radius: 999px;
    color: #00cfff;
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.ps-web-project-card__title {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}

.ps-web-project-card__text {
    margin: 0 !important;
    color: rgb(156, 166, 172) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

.ps-web-project-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
    color: #00cfff !important;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: gap 0.22s ease, color 0.22s ease;
}

.ps-web-project-card__link:hover {
    color: #32daff !important;
    gap: 10px;
}

.ps-web-projects__cta {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.ps-web-projects__cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    background: rgba(0, 207, 255, 0.035);
    color: #ffffff !important;
    border: 1px solid rgba(0, 207, 255, 0.72);
    border-radius: 14px;
    font-family: "Sora", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 28px rgba(0, 207, 255, 0.06);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ps-web-projects__cta a:hover {
    background: rgba(0, 207, 255, 0.12);
    border-color: #00cfff;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 14px 34px rgba(0, 207, 255, 0.12);
}

@media (max-width: 900px) {
    .ps-web-projects__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ps-web-project-card {
        border-radius: 20px;
    }

    .ps-web-projects__cta {
        margin-top: 28px;
    }

    .ps-web-projects__cta a {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ps-web-benefit-card,
    .ps-web-solution-card,
    .ps-web-project-card,
    .ps-web-project-card__media img,
    .ps-web-project-card__link,
    .ps-web-projects__cta a {
        transition: none;
    }

    .ps-web-benefit-card:hover,
    .ps-web-solution-card:hover,
    .ps-web-project-card:hover {
        transform: none;
    }

    .ps-web-project-card:hover .ps-web-project-card__media img {
        transform: none;
    }
}

/* =========================================================
   COMING SOON
   ========================================================= */

.ps-soon {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 20px;
    text-align: center;
    font-family: "Sora", sans-serif;
    color: #f4f7f8;
}

.ps-soon__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 22px;
    padding: 8px 14px;
    background: rgba(0, 207, 255, 0.07);
    border: 1px solid rgba(0, 207, 255, 0.18);
    border-radius: 999px;
    color: #00cfff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.ps-soon__title {
    margin: 0 0 16px !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: clamp(28px, 5vw, 42px) !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: -1.2px !important;
}

.ps-soon__text {
    max-width: 520px;
    margin: 0 auto 40px !important;
    color: #9ca6ac !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
}

.ps-soon__countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 36px;
}

.ps-soon__unit {
    padding: 22px 12px 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.ps-soon__number {
    display: block;
    color: #ffffff;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
}

.ps-soon__label {
    display: block;
    margin-top: 10px;
    color: #9ca6ac;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ps-soon__status {
    min-height: 24px;
    margin: 0 0 28px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.ps-soon__status.is-done {
    color: #00cfff !important;
}

.ps-soon__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    background: rgba(0, 207, 255, 0.05);
    color: #ffffff !important;
    border: 1px solid rgba(0, 207, 255, 0.72);
    border-radius: 14px;
    font-family: "Sora", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.ps-soon__cta:hover {
    background: rgba(0, 207, 255, 0.12);
    border-color: #00cfff;
    transform: translateY(-2px);
    color: #ffffff !important;
}

.ps-soon__footer {
    margin: 40px 0 0 !important;
    color: rgba(156, 166, 172, 0.85) !important;
    font-size: 13px !important;
}

.ps-soon__footer a {
    color: #00cfff !important;
    text-decoration: none !important;
}

@media (max-width: 560px) {
    .ps-soon__countdown {
        gap: 10px;
    }

    .ps-soon__unit {
        padding: 16px 8px 14px;
        border-radius: 16px;
    }

    .ps-soon__label {
        font-size: 10px;
    }

    .ps-soon__cta {
        width: 100%;
    }
}

/* =========================================================
   PLANES WEB
   ========================================================= */

.ps-web-plans__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.ps-web-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px 24px 26px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.ps-web-plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 207, 255, 0.22);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(0, 207, 255, 0.06);
}

.ps-web-plan-card--featured {
    border-color: rgba(0, 207, 255, 0.45);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(0, 207, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ps-web-plan-card__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 14px;
    padding: 6px 11px;
    background: rgba(0, 207, 255, 0.12);
    border: 1px solid rgba(0, 207, 255, 0.35);
    border-radius: 999px;
    color: #00cfff;
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.ps-web-plan-card__title {
    margin: 0 0 10px !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
}

.ps-web-plan-card__lead {
    margin: 0 0 18px !important;
    color: rgb(156, 166, 172) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

.ps-web-plan-card__includes {
    margin: 0 0 10px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.ps-web-plan-card__list {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.ps-web-plan-card__list li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.ps-web-plan-card__list li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00cfff;
    box-shadow: 0 0 8px rgba(0, 207, 255, 0.35);
}

.ps-web-plan-card__note {
    margin: 0 0 18px !important;
    color: rgba(156, 166, 172, 0.9) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.ps-web-plan-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: auto;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    text-align: center;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.ps-web-plan-card__cta:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.24);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.ps-web-plan-card__cta--primary {
    background: rgba(0, 207, 255, 0.06);
    border-color: rgba(0, 207, 255, 0.72);
    color: #ffffff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 28px rgba(0, 207, 255, 0.06);
}

.ps-web-plan-card__cta--primary:hover {
    background: rgba(0, 207, 255, 0.12);
    border-color: #00cfff;
    color: #ffffff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 14px 34px rgba(0, 207, 255, 0.12);
}

.ps-web-plans__footnote {
    margin: 28px auto 0 !important;
    max-width: 640px;
    color: rgb(156, 166, 172) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    text-align: center !important;
}

@media (max-width: 1024px) {
    .ps-web-plans__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 480px;
        margin: 0 auto;
    }

    .ps-web-plan-card {
        padding: 24px 22px;
        border-radius: 20px;
    }

    .ps-web-plan-card--featured {
        order: -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ps-web-plan-card,
    .ps-web-plan-card__cta {
        transition: none;
    }

    .ps-web-plan-card:hover,
    .ps-web-plan-card__cta:hover {
        transform: none;
    }
}

/* =========================================================
   CTA FINAL (compacto)
   ========================================================= */

.ps-web-cta-sec.ps-sec {
    padding-top: 72px;
    padding-bottom: 72px;
}

.ps-web-cta {
    max-width: 640px;
    margin: 0 auto;
    padding: 28px 28px 26px;
    text-align: center;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.ps-web-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 12px;
    padding: 6px 11px;
    background: rgba(0, 207, 255, 0.06);
    border: 1px solid rgba(0, 207, 255, 0.16);
    border-radius: 999px;
    color: #00cfff;
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.ps-web-cta__title {
    margin: 0 0 10px !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
}

.ps-web-cta__text {
    margin: 0 auto 18px !important;
    max-width: 420px;
    color: rgb(156, 166, 172) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
}

.ps-web-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    background: rgba(0, 207, 255, 0.06);
    color: #ffffff !important;
    border: 1px solid rgba(0, 207, 255, 0.72);
    border-radius: 13px;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 24px rgba(0, 207, 255, 0.06);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ps-web-cta__btn:hover {
    background: rgba(0, 207, 255, 0.12);
    border-color: #00cfff;
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 28px rgba(0, 207, 255, 0.12);
}

.ps-web-cta__mail {
    margin: 14px 0 0 !important;
    color: rgba(156, 166, 172, 0.9) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}

.ps-web-cta__mail a {
    color: #00cfff !important;
    text-decoration: none !important;
}

.ps-web-cta__mail a:hover {
    text-decoration: underline !important;
}

@media (max-width: 767px) {
    .ps-web-cta-sec.ps-sec {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .ps-web-cta {
        padding: 22px 18px 20px;
        border-radius: 18px;
    }

    .ps-web-cta__title {
        font-size: 22px !important;
    }

    .ps-web-cta__btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ps-web-cta__btn {
        transition: none;
    }

    .ps-web-cta__btn:hover {
        transform: none;
    }
}

/* =========================================================
   DISEÑO GRÁFICO — HERO
   ========================================================= */

.ps-design-hero-sec.ps-sec {
    padding-top: 96px;
    padding-bottom: 96px;
    background:
        radial-gradient(
            circle at 82% 28%,
            rgba(0, 207, 255, 0.06),
            transparent 34%
        ),
        #050607;
    border-top: none;
}

.ps-design-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: center;
}

.ps-design-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.45);
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.ps-design-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.ps-design-hero__breadcrumb a:hover {
    color: #00cfff;
}

.ps-design-hero__breadcrumb span:last-child {
    color: #00cfff;
}

.ps-design-hero__title {
    margin: 0 0 16px !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: clamp(30px, 3.4vw, 42px) !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
    letter-spacing: -1.1px !important;
    text-align: left !important;
}

.ps-design-hero__text {
    margin: 0 0 24px !important;
    max-width: 520px;
    color: rgb(156, 166, 172) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
    text-align: left !important;
}

.ps-design-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.ps-design-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 13px;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ps-design-hero__btn--primary {
    background: rgba(0, 207, 255, 0.06);
    color: #ffffff !important;
    border: 1px solid rgba(0, 207, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 28px rgba(0, 207, 255, 0.06);
}

.ps-design-hero__btn--primary:hover {
    background: rgba(0, 207, 255, 0.12);
    border-color: #00cfff;
    transform: translateY(-2px);
    color: #ffffff !important;
}

.ps-design-hero__btn--secondary {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.88) !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.ps-design-hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.ps-design-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ps-design-hero__chips span {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.76);
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.ps-design-hero__visual {
    display: flex;
    justify-content: center;
}

.ps-brand-board {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.ps-brand-board__glow {
    position: absolute;
    inset: 10% 8%;
    background: radial-gradient(circle, rgba(0, 207, 255, 0.14), transparent 68%);
    filter: blur(28px);
    pointer-events: none;
}

.ps-brand-board__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: psBrandFloat 6.5s ease-in-out infinite;
}

.ps-brand-board__mark {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ps-brand-board__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(0, 207, 255, 0.28), rgba(0, 207, 255, 0.06));
    border: 1px solid rgba(0, 207, 255, 0.35);
    color: #00cfff;
    font-family: "Sora", sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.ps-brand-board__mark strong {
    display: block;
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.ps-brand-board__mark small {
    display: block;
    margin-top: 3px;
    color: rgb(156, 166, 172);
    font-family: "Sora", sans-serif;
    font-size: 12px;
}

.ps-brand-board__swatches {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.ps-brand-board__swatches span {
    display: block;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ps-brand-board__type {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
}

.ps-brand-board__type-lg {
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: 28px;
    font-weight: 650;
    line-height: 1;
}

.ps-brand-board__type-sm {
    color: rgb(156, 166, 172);
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.ps-brand-board__rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ps-brand-board__rows span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.ps-brand-board__rows span:nth-child(1) { width: 100%; }
.ps-brand-board__rows span:nth-child(2) { width: 78%; }
.ps-brand-board__rows span:nth-child(3) { width: 56%; }

@keyframes psBrandFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
    .ps-design-hero-sec.ps-sec {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .ps-design-hero {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ps-design-hero__actions {
        flex-direction: column;
    }

    .ps-design-hero__btn {
        width: 100%;
    }

    .ps-brand-board {
        max-width: 360px;
        margin: 0 auto;
        padding: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ps-brand-board__card,
    .ps-design-hero__btn {
        animation: none;
        transition: none;
    }

    .ps-design-hero__btn:hover {
        transform: none;
    }
}

/* =========================================================
   EQUIPOS Y SOFTWARE — HERO + SOLUCIONES
   ========================================================= */

.ps-tech-hero-sec.ps-sec {
    padding-top: 96px;
    padding-bottom: 96px;
    background:
        radial-gradient(
            circle at 18% 30%,
            rgba(0, 207, 255, 0.06),
            transparent 34%
        ),
        #050607;
    border-top: none;
}

.ps-tech-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: center;
}

.ps-tech-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.45);
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.ps-tech-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.ps-tech-hero__breadcrumb a:hover {
    color: #00cfff;
}

.ps-tech-hero__breadcrumb span:last-child {
    color: #00cfff;
}

.ps-tech-hero__title {
    margin: 0 0 16px !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: clamp(30px, 3.4vw, 42px) !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
    letter-spacing: -1.1px !important;
    text-align: left !important;
}

.ps-tech-hero__text {
    margin: 0 0 24px !important;
    max-width: 540px;
    color: rgb(156, 166, 172) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
    text-align: left !important;
}

.ps-tech-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.ps-tech-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 13px;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.ps-tech-hero__btn--primary {
    background: rgba(0, 207, 255, 0.06);
    color: #ffffff !important;
    border: 1px solid rgba(0, 207, 255, 0.72);
}

.ps-tech-hero__btn--primary:hover {
    background: rgba(0, 207, 255, 0.12);
    border-color: #00cfff;
    transform: translateY(-2px);
    color: #ffffff !important;
}

.ps-tech-hero__btn--secondary {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.88) !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.ps-tech-hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.ps-tech-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ps-tech-hero__chips span {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.76);
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.ps-tech-hero__visual {
    display: flex;
    justify-content: center;
}

.ps-tech-board {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.ps-tech-board__glow {
    position: absolute;
    inset: 12% 10%;
    background: radial-gradient(circle, rgba(0, 207, 255, 0.14), transparent 68%);
    filter: blur(28px);
    pointer-events: none;
}

.ps-tech-board__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: psBrandFloat 6.5s ease-in-out infinite;
}

.ps-tech-board__row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ps-tech-board__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(0, 207, 255, 0.1);
    border: 1px solid rgba(0, 207, 255, 0.28);
    color: #00cfff;
}

.ps-tech-board__icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.ps-tech-board__icon--win {
    color: #00cfff;
}

.ps-tech-board__icon--apple {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.ps-tech-board__icon--hw {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.ps-tech-board__row strong {
    display: block;
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.ps-tech-board__row small {
    display: block;
    margin-top: 3px;
    color: rgb(156, 166, 172);
    font-family: "Sora", sans-serif;
    font-size: 12px;
}

.ps-tech-board__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ps-tech-board__pills span {
    padding: 6px 10px;
    background: rgba(0, 207, 255, 0.07);
    border: 1px solid rgba(0, 207, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 500;
}

.ps-tech-board__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.ps-tech-board__bars {
    display: none;
}

.ps-tech-solutions__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.ps-tech-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    padding: 28px 26px 30px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.ps-tech-block:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 207, 255, 0.22);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(0, 207, 255, 0.06);
}

.ps-tech-block__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ps-tech-block__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(0, 207, 255, 0.08);
    border: 1px solid rgba(0, 207, 255, 0.16);
    border-radius: 14px;
    color: #00cfff;
}

.ps-tech-block__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ps-tech-block__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.62);
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.ps-tech-block__title,
body .ps-tech-block__title,
body .elementor-widget-shortcode h3.ps-tech-block__title {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    word-spacing: normal !important;
}

.ps-tech-block__text {
    margin: 0 !important;
    color: rgb(156, 166, 172) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

.ps-tech-block__list {
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ps-tech-block__list li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.ps-tech-block__list li::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00cfff;
    box-shadow: 0 0 8px rgba(0, 207, 255, 0.35);
}

@media (max-width: 900px) {
    .ps-tech-hero-sec.ps-sec {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .ps-tech-hero {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ps-tech-hero__actions {
        flex-direction: column;
    }

    .ps-tech-hero__btn {
        width: 100%;
    }

    .ps-tech-board {
        max-width: 360px;
        margin: 0 auto;
        padding: 8px;
    }

    .ps-tech-solutions__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ps-tech-block {
        padding: 24px 22px;
        border-radius: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ps-tech-board__card,
    .ps-tech-block,
    .ps-tech-hero__btn {
        animation: none;
        transition: none;
    }

    .ps-tech-block:hover,
    .ps-tech-hero__btn:hover {
        transform: none;
    }
}

/* =========================================================
   NOSOTROS
   ========================================================= */

.ps-about-hero-sec.ps-sec {
    padding-top: 110px;
    padding-bottom: 90px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0, 207, 255, 0.07),
            transparent 42%
        ),
        #050607;
    border-top: none;
    text-align: center;
}

.ps-about-hero {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.ps-about-hero .ps-sec__eyebrow {
    margin-bottom: 18px;
}

.ps-about-hero__title {
    margin: 0 0 18px !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: clamp(30px, 3.6vw, 44px) !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
    letter-spacing: -1.1px !important;
    text-align: center !important;
}

.ps-about-hero__text {
    margin: 0 auto 14px !important;
    max-width: 640px;
    color: rgb(156, 166, 172) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    text-align: center !important;
}

.ps-about-hero__text--soft {
    color: rgba(156, 166, 172, 0.88) !important;
    font-size: 15px !important;
}

.ps-about-focus__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.ps-about-focus__card {
    padding: 26px 24px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.ps-about-focus__card-title,
body .ps-about-focus__card-title,
body .elementor-widget-shortcode h3.ps-about-focus__card-title {
    margin: 0 0 10px !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    word-spacing: normal !important;
}

.ps-about-focus__card-text {
    margin: 0 !important;
    color: rgb(156, 166, 172) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

.ps-about-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ps-about-process__step {
    position: relative;
    padding: 24px 20px 26px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    text-align: left;
}

.ps-about-process__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    background: rgba(0, 207, 255, 0.08);
    border: 1px solid rgba(0, 207, 255, 0.22);
    border-radius: 12px;
    color: #00cfff;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.ps-about-process__title,
body .ps-about-process__title,
body .elementor-widget-shortcode h3.ps-about-process__title {
    margin: 0 0 8px !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    word-spacing: normal !important;
}

.ps-about-process__text {
    margin: 0 !important;
    color: rgb(156, 166, 172) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
}

.ps-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ps-about-stats__card {
    padding: 28px 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    text-align: center;
}

.ps-about-stats__value {
    margin: 0 0 8px !important;
    color: #00cfff !important;
    font-family: "Sora", sans-serif !important;
    font-size: clamp(32px, 4vw, 40px) !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -1px !important;
}

.ps-about-stats__label {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
}

@media (max-width: 900px) {
    .ps-about-hero-sec.ps-sec {
        padding-top: 80px;
        padding-bottom: 64px;
    }

    .ps-about-focus__grid,
    .ps-about-process__grid,
    .ps-about-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

@media (max-width: 560px) {
    .ps-about-focus__grid,
    .ps-about-process__grid,
    .ps-about-stats__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   CONTACTO
   ========================================================= */

.ps-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
    gap: 24px;
    align-items: start;
}

.ps-contact__info-card,
.ps-contact__form-wrap {
    padding: 28px 26px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.ps-contact__info-title,
body .ps-contact__info-title,
body .elementor-widget-shortcode h3.ps-contact__info-title {
    margin: 0 0 20px !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    word-spacing: normal !important;
}

.ps-contact__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 16px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    text-decoration: none !important;
    transition: border-color 0.22s ease, background 0.22s ease;
}

a.ps-contact__item:hover {
    background: rgba(0, 207, 255, 0.06);
    border-color: rgba(0, 207, 255, 0.22);
}

.ps-contact__item-label {
    color: #00cfff;
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.ps-contact__item-value {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.ps-contact__form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ps-contact__hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.ps-contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ps-contact__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.ps-contact__field input,
.ps-contact__field select,
.ps-contact__field textarea {
    width: 100%;
    padding: 13px 14px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.ps-contact__field input::placeholder,
.ps-contact__field textarea::placeholder {
    color: rgba(156, 166, 172, 0.75);
}

.ps-contact__field select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #00cfff 50%),
        linear-gradient(135deg, #00cfff 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 2px),
        calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 36px;
}

.ps-contact__field select option {
    background: #0a0d0f;
    color: #ffffff;
}

.ps-contact__field input:focus,
.ps-contact__field select:focus,
.ps-contact__field textarea:focus {
    border-color: rgba(0, 207, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(0, 207, 255, 0.1);
}

.ps-contact__field textarea {
    resize: vertical;
    min-height: 120px;
}

.ps-contact__captcha {
    display: flex;
    justify-content: flex-start;
    min-height: 78px;
}

.ps-contact__submit,
.ps-contact__form button.ps-contact__submit,
.ps-contact__form-wrap button.ps-contact__submit,
body .elementor-widget-shortcode .ps-contact__submit,
body .elementor-widget-shortcode button.ps-contact__submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    max-width: 100% !important;
    min-height: 50px !important;
    padding: 0 24px !important;
    margin: 0 !important;
    background: rgba(0, 207, 255, 0.06) !important;
    background-color: rgba(0, 207, 255, 0.06) !important;
    color: #ffffff !important;
    border: 1px solid rgba(0, 207, 255, 0.72) !important;
    border-radius: 13px !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 28px rgba(0, 207, 255, 0.06) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease !important;
}

.ps-contact__submit:hover:not(:disabled):not(.is-loading),
.ps-contact__form button.ps-contact__submit:hover:not(:disabled):not(.is-loading) {
    background: rgba(0, 207, 255, 0.12) !important;
    background-color: rgba(0, 207, 255, 0.12) !important;
    border-color: #00cfff !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 14px 34px rgba(0, 207, 255, 0.12) !important;
}

.ps-contact__submit:focus,
.ps-contact__submit:focus-visible {
    outline: none !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 0 3px rgba(0, 207, 255, 0.18) !important;
}

.ps-contact__submit:disabled,
.ps-contact__submit.is-loading,
.ps-contact__form button.ps-contact__submit:disabled,
.ps-contact__form button.ps-contact__submit.is-loading {
    opacity: 1 !important;
    background: rgba(0, 207, 255, 0.04) !important;
    background-color: rgba(0, 207, 255, 0.04) !important;
    border-color: rgba(0, 207, 255, 0.45) !important;
    color: rgba(255, 255, 255, 0.82) !important;
    cursor: wait !important;
    transform: none !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}

.ps-contact__feedback {
    margin: 0 !important;
    padding: 12px 14px;
    border-radius: 12px;
    font-family: "Sora", sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
}

.ps-contact__feedback.is-success {
    background: rgba(0, 207, 255, 0.1);
    border: 1px solid rgba(0, 207, 255, 0.28);
    color: #9fefff !important;
}

.ps-contact__feedback.is-error {
    background: rgba(255, 80, 80, 0.1);
    border: 1px solid rgba(255, 80, 80, 0.28);
    color: #ffb4b4 !important;
}

@media (max-width: 900px) {
    .ps-contact__grid {
        grid-template-columns: 1fr;
    }

    .ps-contact__row {
        grid-template-columns: 1fr;
    }

    .ps-contact__submit,
    .ps-contact__form button.ps-contact__submit {
        width: 100% !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ps-contact__submit,
    .ps-contact__item {
        transition: none;
    }

    .ps-contact__submit:hover:not(:disabled):not(.is-loading) {
        transform: none;
    }
}

/* =========================================================
   PORTAFOLIO
   ========================================================= */

.ps-portfolio__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 0 34px;
}

.ps-portfolio__filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #d7dee2 !important;
    font-family: "Sora", sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    cursor: pointer;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.ps-portfolio__filter:hover,
.ps-portfolio__filter:focus-visible {
    border-color: rgba(0, 207, 255, 0.35);
    color: #ffffff !important;
    outline: none;
}

.ps-portfolio__filter.is-active {
    background: rgba(0, 207, 255, 0.12);
    border-color: rgba(0, 207, 255, 0.55);
    color: #ffffff !important;
    box-shadow: 0 0 24px rgba(0, 207, 255, 0.12);
}

.ps-portfolio__panel {
    position: relative;
    min-height: 220px;
}

.ps-portfolio__panel.is-loading {
    opacity: 0.55;
    pointer-events: none;
}

.ps-portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.ps-portfolio__empty {
    grid-column: 1 / -1;
    padding: 42px 24px;
    text-align: center;
    border-radius: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.ps-portfolio__empty p {
    margin: 0 !important;
    color: #9ca6ac !important;
    font-family: "Sora", sans-serif !important;
    font-size: 14px !important;
}

.ps-portfolio-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.ps-portfolio-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 207, 255, 0.22);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(0, 207, 255, 0.06);
}

.ps-portfolio-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: 0;
    background: #0a0d0f;
    cursor: zoom-in;
    text-align: left;
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    color: inherit;
}

.ps-portfolio-card__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f7a80;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    cursor: default;
}

.ps-portfolio-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    transition: transform 0.45s ease;
}

.ps-portfolio-card:hover .ps-portfolio-card__media img {
    transform: scale(1.03);
}

.ps-portfolio-card__zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(5, 6, 7, 0.72);
    border: 1px solid rgba(0, 207, 255, 0.35);
    color: #00cfff;
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.ps-portfolio-card:hover .ps-portfolio-card__zoom {
    opacity: 1;
    transform: translateY(0);
}

.ps-portfolio-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    padding: 22px 22px 24px;
}

.ps-portfolio-card--compact .ps-portfolio-card__body {
    padding-top: 18px;
    padding-bottom: 20px;
}

.ps-portfolio-card__tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(0, 207, 255, 0.1);
    border: 1px solid rgba(0, 207, 255, 0.22);
    color: #9fefff !important;
    font-family: "Sora", sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase;
}

.ps-portfolio-card__title {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: "Sora", sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
}

.ps-portfolio-card__text {
    margin: 0 !important;
    color: rgb(156, 166, 172) !important;
    font-family: "Sora", sans-serif !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

.ps-portfolio-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: #00cfff !important;
    font-family: "Sora", sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.25s ease, gap 0.25s ease;
}

.ps-portfolio-card__link:hover {
    color: #32daff !important;
    gap: 10px;
}

.ps-portfolio__pagination-wrap {
    margin-top: 30px;
}

.ps-portfolio__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ps-portfolio__page-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ps-portfolio__page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #d7dee2 !important;
    font-family: "Sora", sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.ps-portfolio__page-btn:hover:not(:disabled),
.ps-portfolio__page-btn:focus-visible {
    border-color: rgba(0, 207, 255, 0.35);
    color: #ffffff !important;
    outline: none;
}

.ps-portfolio__page-btn.is-active {
    background: rgba(0, 207, 255, 0.14);
    border-color: rgba(0, 207, 255, 0.5);
    color: #ffffff !important;
}

.ps-portfolio__page-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* Lightbox */
.ps-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.ps-lightbox[hidden] {
    display: none !important;
}

.ps-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 6, 7, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ps-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(1200px, 100%);
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
}

.ps-lightbox__close {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 13, 15, 0.92);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.ps-lightbox__figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
}

.ps-lightbox__image {
    display: block;
    width: 100%;
    max-height: calc(100vh - 120px);
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a0d0f;
}

.ps-lightbox__caption {
    margin: 0;
    text-align: center;
    color: #f4f7f8 !important;
    font-family: "Sora", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

body.ps-lightbox-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .ps-portfolio__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .ps-portfolio__filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .ps-portfolio__filter {
        flex: 0 0 auto;
    }

    .ps-portfolio__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ps-portfolio-card {
        border-radius: 20px;
    }

    .ps-lightbox {
        padding: 16px;
    }

    .ps-lightbox__close {
        top: 8px;
        right: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ps-portfolio__filter,
    .ps-portfolio-card,
    .ps-portfolio-card__media img,
    .ps-portfolio-card__zoom,
    .ps-portfolio-card__link,
    .ps-portfolio__page-btn {
        transition: none;
    }

    .ps-portfolio-card:hover,
    .ps-portfolio-card:hover .ps-portfolio-card__media img {
        transform: none;
    }
}
