﻿/* =========================================================
   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;
    overflow: hidden;
    background: #090A0B;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ps-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ps-sec > * {
    position: relative;
    z-index: 1;
}

.ps-sec--a::before {
    background: radial-gradient(
        ellipse 55% 70% at 8% 22%,
        rgba(255, 255, 255, 0.055),
        transparent 62%
    );
}

.ps-sec--b::before {
    background: radial-gradient(
        ellipse 55% 70% at 92% 18%,
        rgba(255, 255, 255, 0.05),
        transparent 62%
    );
}

.ps-sec--c::before {
    background: radial-gradient(
        ellipse 50% 65% at 10% 80%,
        rgba(255, 255, 255, 0.04),
        transparent 60%
    );
}

.ps-sec--center::before {
    background: radial-gradient(
        ellipse 70% 55% at 50% 0%,
        rgba(255, 255, 255, 0.06),
        transparent 58%
    );
}

/* Primera sección: 180px. Inicio / Nosotros / Diseño / Equipos no van aquí (145px). */
.ps-main--flush > .ps-sec:first-child:not(.ps-home-hero-sec):not(.ps-about-hero-sec):not(.ps-design-hero-sec):not(.ps-tech-hero-sec):not(.ps-service-hero-sec),
.ps-contact-sec.ps-sec,
.ps-portfolio-sec.ps-sec,
.ps-web-hero-sec.ps-sec,
.ps-legal-sec.ps-sec,
.ps-main .ps-sec:first-child:not(.ps-home-hero-sec):not(.ps-about-hero-sec):not(.ps-design-hero-sec):not(.ps-tech-hero-sec):not(.ps-service-hero-sec) {
    padding-top: 180px;
    border-top: 0;
}

.ps-service-hero-sec.ps-sec {
    padding-top: 48px;
    padding-bottom: 75px;
}

/* Entrada de secciones (solo las que aún no están en viewport) */
.ps-sec.ps-reveal,
.ps-site-footer.ps-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.ps-sec.ps-reveal.is-in,
.ps-site-footer.ps-reveal.is-in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
    .ps-sec.ps-reveal,
    .ps-site-footer.ps-reveal,
    .ps-sec.ps-reveal.is-in,
    .ps-site-footer.ps-reveal.is-in {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

/* =========================================================
   HOME — Sticky stack DESACTIVADO
   El hero usa Reveal como el resto de secciones.
   ========================================================= */

.ps-sticky-stack {
    position: relative;
    width: 100%;
}

.ps-sec__inner {
    position: relative;
    width: 100%;
    max-width: 1140px;
    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-block;
    margin: 0 0 14px;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    color: #7bb7ff;
    font-family: var(--ps-font);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.3;
    letter-spacing: 1.8px;
    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: var(--ps-font) !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: var(--ps-font) !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(123, 183, 255, 0.22);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(123, 183, 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(123, 183, 255, 0.08);
    border: 1px solid rgba(123, 183, 255, 0.16);
    border-radius: 14px;
    color: #7bb7ff;
}

.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: var(--ps-font) !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: var(--ps-font) !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(123, 183, 255, 0.22);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(123, 183, 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(123, 183, 255, 0.08);
    border: 1px solid rgba(123, 183, 255, 0.16);
    border-radius: 14px;
    color: #7bb7ff;
}

.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: var(--ps-font);
    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: var(--ps-font) !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: var(--ps-font) !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: var(--ps-font);
    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(123, 183, 255, 0.85);
    box-shadow: 0 0 8px rgba(123, 183, 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(123, 183, 255, 0.22);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(123, 183, 255, 0.06);
}

.ps-web-project-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #090A0B;
    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: block;
    width: fit-content;
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    color: #7bb7ff;
    font-family: var(--ps-font);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.4px;
    line-height: 1.3;
    text-transform: uppercase;
}

.ps-web-project-card__title {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !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: var(--ps-font) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

.ps-web-project-card__link,
.ps-web-project-card__link:visited,
.ps-web-project-card a.ps-web-project-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
    color: #e8eef1 !important;
    font-family: var(--ps-font);
    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,
.ps-web-project-card__link:focus {
    color: #7bb7ff !important;
    gap: 10px;
    text-decoration: none !important;
}

.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(123, 183, 255, 0.035);
    color: #ffffff !important;
    border: 1px solid rgba(123, 183, 255, 0.72);
    border-radius: 14px;
    font-family: var(--ps-font);
    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(123, 183, 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(123, 183, 255, 0.12);
    border-color: #7bb7ff;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 14px 34px rgba(123, 183, 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: var(--ps-font);
    color: #f4f7f8;
}

.ps-soon__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 22px;
    padding: 8px 14px;
    background: rgba(123, 183, 255, 0.07);
    border: 1px solid rgba(123, 183, 255, 0.18);
    border-radius: 999px;
    color: #7bb7ff;
    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: var(--ps-font) !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: #7bb7ff !important;
}

.ps-soon__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    background: rgba(123, 183, 255, 0.05);
    color: #ffffff !important;
    border: 1px solid rgba(123, 183, 255, 0.72);
    border-radius: 14px;
    font-family: var(--ps-font);
    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(123, 183, 255, 0.12);
    border-color: #7bb7ff;
    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: #7bb7ff !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(123, 183, 255, 0.22);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(123, 183, 255, 0.06);
}

.ps-web-plan-card--featured {
    border-color: rgba(123, 183, 255, 0.45);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(123, 183, 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(123, 183, 255, 0.12);
    border: 1px solid rgba(123, 183, 255, 0.35);
    border-radius: 999px;
    color: #7bb7ff;
    font-family: var(--ps-font);
    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: var(--ps-font) !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: var(--ps-font) !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: var(--ps-font) !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: var(--ps-font);
    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: #7bb7ff;
    box-shadow: 0 0 8px rgba(123, 183, 255, 0.35);
}

.ps-web-plan-card__note {
    margin: 0 0 18px !important;
    color: rgba(156, 166, 172, 0.9) !important;
    font-family: var(--ps-font) !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: var(--ps-font);
    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(123, 183, 255, 0.06);
    border-color: rgba(123, 183, 255, 0.72);
    color: #ffffff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 28px rgba(123, 183, 255, 0.06);
}

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

.ps-web-plans__footnote {
    margin: 28px auto 0 !important;
    max-width: 640px;
    color: rgb(156, 166, 172) !important;
    font-family: var(--ps-font) !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-block;
    margin: 0 0 12px;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    color: #7bb7ff;
    font-family: var(--ps-font);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.3;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.ps-web-cta__title {
    margin: 0 0 10px !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !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: var(--ps-font) !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(123, 183, 255, 0.06);
    color: #ffffff !important;
    border: 1px solid rgba(123, 183, 255, 0.72);
    border-radius: 13px;
    font-family: var(--ps-font);
    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(123, 183, 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(123, 183, 255, 0.12);
    border-color: #7bb7ff;
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 28px rgba(123, 183, 255, 0.12);
}

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

.ps-web-cta__mail a {
    color: #7bb7ff !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: 145px;
    padding-bottom: 145px;
    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: var(--ps-font);
    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: #7bb7ff;
}

.ps-design-hero__breadcrumb span:last-child {
    color: #7bb7ff;
}

.ps-design-hero__title {
    margin: 0 0 16px !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !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: var(--ps-font) !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: var(--ps-font);
    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(123, 183, 255, 0.06);
    color: #ffffff !important;
    border: 1px solid rgba(123, 183, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 28px rgba(123, 183, 255, 0.06);
}

.ps-design-hero__btn--primary:hover {
    background: rgba(123, 183, 255, 0.12);
    border-color: #7bb7ff;
    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: var(--ps-font);
    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(123, 183, 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(123, 183, 255, 0.28), rgba(123, 183, 255, 0.06));
    border: 1px solid rgba(123, 183, 255, 0.35);
    color: #7bb7ff;
    font-family: var(--ps-font);
    font-size: 22px;
    font-weight: 700;
}

.ps-brand-board__mark strong {
    display: block;
    color: #ffffff;
    font-family: var(--ps-font);
    font-size: 16px;
    font-weight: 600;
}

.ps-brand-board__mark small {
    display: block;
    margin-top: 3px;
    color: rgb(156, 166, 172);
    font-family: var(--ps-font);
    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: var(--ps-font);
    font-size: 28px;
    font-weight: 650;
    line-height: 1;
}

.ps-brand-board__type-sm {
    color: rgb(156, 166, 172);
    font-family: var(--ps-font);
    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: 80px;
        padding-bottom: 80px;
    }

    .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: 145px;
    padding-bottom: 145px;
    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: var(--ps-font);
    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: #7bb7ff;
}

.ps-tech-hero__breadcrumb span:last-child {
    color: #7bb7ff;
}

.ps-tech-hero__title {
    margin: 0 0 16px !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !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: var(--ps-font) !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: var(--ps-font);
    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(123, 183, 255, 0.06);
    color: #ffffff !important;
    border: 1px solid rgba(123, 183, 255, 0.72);
}

.ps-tech-hero__btn--primary:hover {
    background: rgba(123, 183, 255, 0.12);
    border-color: #7bb7ff;
    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: var(--ps-font);
    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(123, 183, 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(123, 183, 255, 0.1);
    border: 1px solid rgba(123, 183, 255, 0.28);
    color: #7bb7ff;
}

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

.ps-tech-board__icon--win {
    color: #7bb7ff;
}

.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: var(--ps-font);
    font-size: 15px;
    font-weight: 600;
}

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

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

.ps-tech-board__pills span {
    padding: 6px 10px;
    background: rgba(123, 183, 255, 0.07);
    border: 1px solid rgba(123, 183, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--ps-font);
    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(123, 183, 255, 0.22);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(123, 183, 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(123, 183, 255, 0.08);
    border: 1px solid rgba(123, 183, 255, 0.16);
    border-radius: 14px;
    color: #7bb7ff;
}

.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: var(--ps-font);
    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: var(--ps-font) !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: var(--ps-font) !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: var(--ps-font);
    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: #7bb7ff;
    box-shadow: 0 0 8px rgba(123, 183, 255, 0.35);
}

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

    .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: 145px;
    padding-bottom: 145px;
    background: #090A0B;
    border-top: none;
    text-align: center;
}

.ps-about-hero-sec.ps-sec::before {
    background: radial-gradient(
        ellipse 70% 55% at 50% 0%,
        rgba(255, 255, 255, 0.055),
        transparent 58%
    );
}

.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: var(--ps-font) !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: var(--ps-font) !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: var(--ps-font) !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: var(--ps-font) !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(123, 183, 255, 0.08);
    border: 1px solid rgba(123, 183, 255, 0.22);
    border-radius: 12px;
    color: #7bb7ff;
    font-family: var(--ps-font);
    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: var(--ps-font) !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: var(--ps-font) !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: #7bb7ff !important;
    font-family: var(--ps-font) !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: var(--ps-font) !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: 80px;
    }

    .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: var(--ps-font) !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(123, 183, 255, 0.06);
    border-color: rgba(123, 183, 255, 0.22);
}

.ps-contact__item-label {
    color: #7bb7ff;
    font-family: var(--ps-font);
    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: var(--ps-font);
    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: var(--ps-font);
    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: var(--ps-font);
    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%, #7bb7ff 50%),
        linear-gradient(135deg, #7bb7ff 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: #090A0B;
    color: #ffffff;
}

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

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

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

.ps-contact__captcha altcha-widget {
    --altcha-color-base: #101114;
    --altcha-color-border: rgba(255, 255, 255, 0.12);
    --altcha-color-text: #f4f4f4;
    --altcha-color-border-focus: #7bb7ff;
    --altcha-border-radius: 12px;
    --altcha-max-width: 100%;
    width: 100%;
    max-width: 420px;
}

.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(123, 183, 255, 0.06) !important;
    background-color: rgba(123, 183, 255, 0.06) !important;
    color: #ffffff !important;
    border: 1px solid rgba(123, 183, 255, 0.72) !important;
    border-radius: 13px !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 28px rgba(123, 183, 255, 0.06) !important;
    font-family: var(--ps-font) !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(123, 183, 255, 0.12) !important;
    background-color: rgba(123, 183, 255, 0.12) !important;
    border-color: #7bb7ff !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 14px 34px rgba(123, 183, 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(123, 183, 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(123, 183, 255, 0.04) !important;
    background-color: rgba(123, 183, 255, 0.04) !important;
    border-color: rgba(123, 183, 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: var(--ps-font) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
}

.ps-contact__feedback.is-success {
    background: rgba(123, 183, 255, 0.1);
    border: 1px solid rgba(123, 183, 255, 0.28);
    color: #7bb7ff !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,
.ps-portfolio button.ps-portfolio__filter,
body .elementor-widget-shortcode .ps-portfolio__filter {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    padding: 0 18px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
    color: #d7dee2 !important;
    font-family: var(--ps-font) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease !important;
}

.ps-portfolio__filter:hover,
.ps-portfolio__filter:focus,
.ps-portfolio__filter:focus-visible,
.ps-portfolio button.ps-portfolio__filter:hover,
.ps-portfolio button.ps-portfolio__filter:focus,
.ps-portfolio button.ps-portfolio__filter:focus-visible {
    background: rgba(123, 183, 255, 0.08) !important;
    background-color: rgba(123, 183, 255, 0.08) !important;
    border-color: rgba(123, 183, 255, 0.35) !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
}

.ps-portfolio__filter:active,
.ps-portfolio button.ps-portfolio__filter:active {
    background: rgba(123, 183, 255, 0.12) !important;
    background-color: rgba(123, 183, 255, 0.12) !important;
    border-color: rgba(123, 183, 255, 0.55) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

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

.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: var(--ps-font) !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(123, 183, 255, 0.22);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(123, 183, 255, 0.06);
}

.ps-portfolio-card__media,
.ps-portfolio-card button.ps-portfolio-card__media,
body .elementor-widget-shortcode .ps-portfolio-card__media {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #090A0B !important;
    background-color: #090A0B !important;
    box-shadow: none !important;
    cursor: zoom-in !important;
    text-align: left !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    font: inherit !important;
    color: inherit !important;
    line-height: 0 !important;
}

.ps-portfolio-card__media--placeholder {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #6f7a80 !important;
    font-family: var(--ps-font) !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    cursor: default !important;
}

.ps-portfolio-card__media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center top !important;
    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(123, 183, 255, 0.35);
    color: #7bb7ff;
    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: block;
    width: fit-content;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    color: #7bb7ff !important;
    font-family: var(--ps-font) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 1.4px !important;
    line-height: 1.3 !important;
    text-transform: uppercase;
}

.ps-portfolio-card__title {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !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: var(--ps-font) !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

.ps-portfolio-card__link,
.ps-portfolio-card__link:visited,
.ps-portfolio-card a.ps-portfolio-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: #e8eef1 !important;
    font-family: var(--ps-font) !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,
.ps-portfolio-card__link:focus {
    color: #7bb7ff !important;
    gap: 10px;
    text-decoration: none !important;
}

.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,
.ps-portfolio button.ps-portfolio__page-btn,
body .elementor-widget-shortcode .ps-portfolio__page-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
    color: #d7dee2 !important;
    font-family: var(--ps-font) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease !important;
}

.ps-portfolio__page-btn:hover:not(:disabled),
.ps-portfolio__page-btn:focus:not(:disabled),
.ps-portfolio__page-btn:focus-visible:not(:disabled),
.ps-portfolio button.ps-portfolio__page-btn:hover:not(:disabled),
.ps-portfolio button.ps-portfolio__page-btn:focus:not(:disabled) {
    background: rgba(123, 183, 255, 0.08) !important;
    background-color: rgba(123, 183, 255, 0.08) !important;
    border-color: rgba(123, 183, 255, 0.35) !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
}

.ps-portfolio__page-btn:active:not(:disabled),
.ps-portfolio button.ps-portfolio__page-btn:active:not(:disabled) {
    background: rgba(123, 183, 255, 0.14) !important;
    background-color: rgba(123, 183, 255, 0.14) !important;
    border-color: rgba(123, 183, 255, 0.5) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.ps-portfolio__page-btn.is-active,
.ps-portfolio__page-btn.is-active:hover,
.ps-portfolio__page-btn.is-active:focus,
.ps-portfolio__page-btn.is-active:active,
.ps-portfolio button.ps-portfolio__page-btn.is-active,
.ps-portfolio button.ps-portfolio__page-btn.is-active:hover,
.ps-portfolio button.ps-portfolio__page-btn.is-active:focus,
.ps-portfolio button.ps-portfolio__page-btn.is-active:active {
    background: rgba(123, 183, 255, 0.14) !important;
    background-color: rgba(123, 183, 255, 0.14) !important;
    border-color: rgba(123, 183, 255, 0.5) !important;
    color: #ffffff !important;
    box-shadow: 0 0 16px rgba(123, 183, 255, 0.12) !important;
}

.ps-portfolio__page-btn:disabled,
.ps-portfolio button.ps-portfolio__page-btn:disabled {
    opacity: 0.35 !important;
    cursor: not-allowed !important;
    background: rgba(255, 255, 255, 0.03) !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #d7dee2 !important;
    box-shadow: none !important;
}

/* 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,
.ps-lightbox button.ps-lightbox__close,
body .ps-lightbox button.ps-lightbox__close {
    position: absolute !important;
    top: -12px !important;
    right: -12px !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    border: 1px solid rgba(123, 183, 255, 0.45) !important;
    background: rgba(10, 13, 15, 0.96) !important;
    background-color: rgba(10, 13, 15, 0.96) !important;
    color: #7bb7ff !important;
    font-size: 26px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    text-transform: none !important;
}

.ps-lightbox__close:hover,
.ps-lightbox__close:focus,
.ps-lightbox__close:focus-visible,
.ps-lightbox__close:active,
.ps-lightbox button.ps-lightbox__close:hover,
.ps-lightbox button.ps-lightbox__close:focus,
.ps-lightbox button.ps-lightbox__close:active,
body .ps-lightbox button.ps-lightbox__close:hover,
body .ps-lightbox button.ps-lightbox__close:focus,
body .ps-lightbox button.ps-lightbox__close:active {
    background: rgba(123, 183, 255, 0.14) !important;
    background-color: rgba(123, 183, 255, 0.14) !important;
    border-color: #7bb7ff !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(123, 183, 255, 0.18) !important;
}

.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: #090A0B;
}

.ps-lightbox__caption {
    margin: 0;
    text-align: center;
    color: #f4f7f8 !important;
    font-family: var(--ps-font) !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: center;
        flex-wrap: wrap;
        overflow: visible;
        gap: 8px;
        margin-bottom: 26px;
        padding-bottom: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .ps-portfolio__filters::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .ps-portfolio__filter,
    .ps-portfolio button.ps-portfolio__filter {
        flex: 0 1 auto;
        min-height: 40px !important;
        padding: 0 14px !important;
        font-size: 12px !important;
    }

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

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

    .ps-portfolio-card__body {
        gap: 8px;
        padding: 14px 14px 16px;
    }

    .ps-portfolio-card__title {
        font-size: 14px !important;
    }

    .ps-portfolio-card__text {
        font-size: 12px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .ps-portfolio-card__link {
        font-size: 12px !important;
    }

    .ps-lightbox {
        padding: 16px;
    }

    .ps-lightbox__close,
    .ps-lightbox button.ps-lightbox__close {
        top: 8px !important;
        right: 8px !important;
    }
}

@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;
    }
}

/* =========================================================
   INICIO — HERO
   ========================================================= */

.ps-home-hero-sec.ps-sec {
    padding-top: 145px;
    padding-bottom: 145px;
    border-top: none;
}

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

.ps-home-hero__eyebrow {
    display: inline-block;
    width: auto;
    margin: 0 0 18px !important;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    color: #7bb7ff !important;
    font-family: var(--ps-font) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase;
    line-height: 1.2 !important;
}

.ps-home-hero__title {
    margin: 0 0 16px !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !important;
    font-size: 55px !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
    letter-spacing: -1.2px !important;
    text-align: left !important;
}

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

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

.ps-home-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 13px;
    font-family: var(--ps-font);
    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-home-hero__btn--primary {
    background: rgba(123, 183, 255, 0.06);
    color: #ffffff !important;
    border: 1px solid rgba(123, 183, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 28px rgba(123, 183, 255, 0.06);
}

.ps-home-hero__btn--primary:hover {
    background: rgba(123, 183, 255, 0.12);
    border-color: #7bb7ff;
    transform: translateY(-2px);
    color: #ffffff !important;
}

.ps-home-hero__btn--secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.ps-home-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ps-home-hero__features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 10px 13px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.075);
    color: #ffffff;
    font-family: var(--ps-font);
    font-size: 13px;
    font-weight: 500;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.ps-home-hero__features li:hover {
    background: rgba(123, 183, 255, 0.07);
    border-color: rgba(123, 183, 255, 0.22);
    transform: translateY(-2px);
}

.ps-home-hero__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(123, 183, 255, 0.1);
    color: #7bb7ff;
    flex: 0 0 auto;
}

.ps-home-hero__feature-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.ps-home-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

/* ---------- Mockup laptop ---------- */

.ps-mockup-laptop {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 0 24px 42px;
    box-sizing: border-box;
    overflow: visible;
}

.ps-mockup-laptop::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: calc(100% - 4px);
    max-width: 620px;
    height: 24px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            180deg,
            #485158 0%,
            #293036 42%,
            #121619 100%
        );
    border-radius: 3px 3px 24px 24px;
    box-shadow:
        0 18px 30px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    z-index: 1;
}

.ps-mockup-laptop::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 29px;
    width: 92px;
    height: 6px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.13);
    border-radius: 0 0 10px 10px;
    z-index: 4;
}

.ps-mockup-screen {
    position: relative;
    width: 100%;
    max-width: 650px;
    aspect-ratio: 16 / 10;
    margin: 0 auto;
    padding: 20px 13px 13px;
    background:
        linear-gradient(
            145deg,
            #161c20 0%,
            #090c0e 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px 22px 9px 9px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.42),
        0 0 65px rgba(123, 183, 255, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
    box-sizing: border-box;
    z-index: 3;
}

.ps-mockup-screen::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 5px;
    height: 5px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.08);
    z-index: 5;
}

.ps-mockup-screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
    background: #090A0B;
}

@media (max-width: 1024px) {
    .ps-home-hero {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ps-home-hero__visual {
        order: 1;
    }

    .ps-home-hero__content {
        order: 2;
    }

    .ps-home-hero__title {
        font-size: clamp(32px, 8vw, 42px) !important;
    }
}

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

    .ps-home-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .ps-home-hero__features {
        flex-direction: column;
        align-items: stretch;
    }

    .ps-mockup-laptop {
        max-width: 560px;
        padding-inline: 10px;
        padding-bottom: 34px;
    }

    .ps-mockup-laptop::after {
        bottom: 9px;
        height: 20px;
        width: 100%;
    }

    .ps-mockup-laptop::before {
        bottom: 22px;
        width: 72px;
        height: 5px;
    }

    .ps-mockup-screen {
        aspect-ratio: 16 / 10;
        padding: 17px 9px 9px;
        border-radius: 17px 17px 7px 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ps-home-hero__btn,
    .ps-home-hero__features li {
        transition: none;
    }

    .ps-home-hero__btn:hover,
    .ps-home-hero__features li:hover {
        transform: none;
    }
}

/* =========================================================
   INICIO — SERVICIOS
   ========================================================= */

.ps-home-services .ps-sec__header {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ps-home-services .ps-sec__text {
    margin-left: auto;
    margin-right: auto;
}

.ps-home-services__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 22px;
    align-items: stretch;
}

.ps-home-services__side {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ps-home-service-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    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-home-service-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ps-home-service-card--featured {
    padding: 34px 32px;
    border-color: rgba(255, 255, 255, 0.14);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: inset 3px 0 0 rgba(255, 255, 255, 0.35);
}

.ps-home-service-card--featured:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.14);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: inset 3px 0 0 rgba(255, 255, 255, 0.35);
}

.ps-home-service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.ps-home-service-card__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.ps-home-service-card__label {
    margin: 4px 0 0 !important;
    color: #9ca6ac !important;
    font-family: var(--ps-font) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
}

.ps-home-service-card--featured .ps-home-service-card__label {
    margin-top: 8px !important;
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    letter-spacing: -0.4px !important;
    line-height: 1.2 !important;
}

.ps-home-service-card__title {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
}

.ps-home-service-card--featured .ps-home-service-card__title {
    font-size: clamp(20px, 2vw, 24px) !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    color: #c5ced2 !important;
}

.ps-home-service-card__text {
    margin: 0 !important;
    color: rgb(156, 166, 172) !important;
    font-family: var(--ps-font) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

.ps-home-service-card__includes {
    margin-top: 6px;
}

.ps-home-service-card__includes-title {
    margin: 0 0 10px !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.ps-home-service-card__includes ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ps-home-service-card__includes li {
    position: relative;
    padding-left: 22px;
    color: #c5ced2;
    font-family: var(--ps-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.ps-home-service-card__includes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background-color: #7bb7ff;
    -webkit-mask:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.2 6.2l2.4 2.4 5.2-5.2' stroke='%23ffffff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        center / contain no-repeat;
    mask:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.2 6.2l2.4 2.4 5.2-5.2' stroke='%23ffffff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        center / contain no-repeat;
}

.ps-home-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
    color: #ffffff !important;
    font-family: var(--ps-font) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.25s ease, gap 0.25s ease;
}

.ps-home-service-card__link:hover {
    color: #7bb7ff !important;
    gap: 10px;
}

@media (max-width: 1024px) {
    .ps-home-services__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .ps-home-service-card,
    .ps-home-service-card--featured {
        padding: 24px 22px;
        border-radius: 20px;
    }

    .ps-home-service-card--featured .ps-home-service-card__label {
        font-size: 24px !important;
    }

    .ps-home-service-card--featured .ps-home-service-card__title {
        font-size: 18px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ps-home-service-card,
    .ps-home-service-card__link {
        transition: none;
    }

    .ps-home-service-card:hover {
        transform: none;
    }

    .ps-home-service-card__link:hover {
        gap: 6px;
    }
}

.ps-home-portfolio .ps-sec__header {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ps-home-portfolio .ps-sec__text {
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   INICIO — POR QUÉ ELEGIRNOS
   ========================================================= */

.ps-home-why .ps-sec__header {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ps-home-why .ps-sec__text {
    margin-left: auto;
    margin-right: auto;
}

.ps-home-why__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.ps-home-why-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    padding: 26px 22px 28px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    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-home-why-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(123, 183, 255, 0.22);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(123, 183, 255, 0.06);
}

.ps-home-why-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(123, 183, 255, 0.08);
    border: 1px solid rgba(123, 183, 255, 0.16);
    color: #7bb7ff;
}

.ps-home-why-card__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.ps-home-why-card__title {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
}

.ps-home-why-card__text {
    margin: 0 !important;
    color: rgb(156, 166, 172) !important;
    font-family: var(--ps-font) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
}

@media (max-width: 1100px) {
    .ps-home-why__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .ps-home-why__grid {
        grid-template-columns: 1fr;
    }

    .ps-home-why-card {
        padding: 24px 22px;
        border-radius: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ps-home-why-card {
        transition: none;
    }

    .ps-home-why-card:hover {
        transform: none;
    }
}

/* =========================================================
   INICIO — TESTIMONIOS
   ========================================================= */

.ps-home-testimonials .ps-sec__header {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ps-home-testimonials .ps-sec__text {
    margin-left: auto;
    margin-right: auto;
}

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

.ps-home-testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    padding: 28px 26px 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-home-testimonial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(123, 183, 255, 0.2);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(123, 183, 255, 0.05);
}

.ps-home-testimonial-card__quote {
    position: absolute;
    top: 10px;
    left: 18px;
    color: rgba(123, 183, 255, 0.18);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.ps-home-testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-top: 8px;
    color: #f5c542;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 1;
}

.ps-home-testimonial-card__title {
    margin: 0 !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
}

.ps-home-testimonial-card__text {
    margin: 0 !important;
    color: rgb(196, 204, 209) !important;
    font-family: var(--ps-font) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
    flex: 1;
}

.ps-home-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ps-home-testimonial-card__author img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    border: 0;
    flex: 0 0 auto;
}

.ps-home-testimonial-card__author strong {
    display: block;
    color: #ffffff;
    font-family: var(--ps-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.ps-home-testimonial-card__author span {
    display: block;
    margin-top: 2px;
    color: #9ca6ac;
    font-family: var(--ps-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .ps-home-testimonials__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .ps-home-testimonial-card {
        padding: 24px 22px;
        border-radius: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ps-home-testimonial-card {
        transition: none;
    }

    .ps-home-testimonial-card:hover {
        transform: none;
    }
}

/* =========================================================
   INICIO — FAQ
   ========================================================= */

.ps-home-faq {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 48px;
    align-items: start;
}

.ps-home-faq__intro .ps-sec__eyebrow {
    justify-content: flex-start !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.ps-home-faq__intro .ps-sec__title,
.ps-home-faq__intro .ps-sec__text {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.ps-home-faq__intro .ps-sec__text {
    max-width: 420px;
    margin-bottom: 28px !important;
}

.ps-home-faq__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 24px 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.035);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    text-align: left;
}

.ps-home-faq__cta strong {
    color: #ffffff;
    font-family: var(--ps-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.ps-home-faq__cta p {
    margin: 0 !important;
    color: #9ca6ac !important;
    font-family: var(--ps-font) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
}

.ps-home-faq__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 46px;
    margin-top: 6px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid rgba(123, 183, 255, 0.72) !important;
    background: rgba(123, 183, 255, 0.06) !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.ps-home-faq__cta-btn:hover {
    background: rgba(123, 183, 255, 0.12) !important;
    border-color: #7bb7ff !important;
    transform: translateY(-2px);
}

.ps-faq-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 100%;
}

.ps-faq-item {
    width: 100%;
    background: rgba(255, 255, 255, 0.022);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 15px;
    overflow: hidden;
    box-shadow:
        0 14px 38px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.ps-faq-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(123, 183, 255, 0.16);
}

.ps-faq-item.is-open {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(123, 183, 255, 0.22);
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.18),
        0 0 24px rgba(123, 183, 255, 0.02);
}

.ps-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 52px;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--ps-font);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.25s ease;
}

.ps-faq-item summary::-webkit-details-marker {
    display: none;
}

.ps-faq-item summary::marker {
    display: none;
    content: "";
}

.ps-faq-item.is-open summary {
    color: #ffffff;
}

.ps-faq-icon {
    position: relative;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    background: rgba(123, 183, 255, 0.06);
    border: 1px solid rgba(123, 183, 255, 0.18);
    border-radius: 8px;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.ps-faq-item.is-open .ps-faq-icon {
    background: rgba(123, 183, 255, 0.1);
    border-color: rgba(123, 183, 255, 0.3);
    box-shadow: 0 0 14px rgba(123, 183, 255, 0.08);
    transform: scale(1.03);
}

.ps-faq-icon::before,
.ps-faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: #7bb7ff;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}

.ps-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ps-faq-item.is-open .ps-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
    opacity: 0;
}

.ps-faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.ps-faq-answer__inner {
    padding: 0 18px 18px;
}

.ps-faq-answer p {
    margin: 0 !important;
    color: #9ca6ac !important;
    font-family: var(--ps-font) !important;
    font-size: 13.5px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 0.28s ease 0.04s,
        transform 0.28s ease 0.04s;
}

.ps-faq-item.is-open .ps-faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .ps-home-faq {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ps-home-faq__intro .ps-sec__text {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .ps-faq-list {
        gap: 8px;
    }

    .ps-faq-item {
        border-radius: 13px;
    }

    .ps-faq-item summary {
        min-height: 50px;
        padding: 13px 15px;
        font-size: 13px;
        line-height: 1.4;
    }

    .ps-faq-icon {
        flex-basis: 24px;
        width: 24px;
        height: 24px;
        border-radius: 7px;
    }

    .ps-faq-icon::before,
    .ps-faq-icon::after {
        width: 9px;
    }

    .ps-faq-answer__inner {
        padding: 0 15px 15px;
    }

    .ps-faq-answer p {
        font-size: 13px !important;
        line-height: 1.65 !important;
    }

    .ps-home-faq__cta-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ps-faq-item,
    .ps-faq-icon,
    .ps-faq-icon::before,
    .ps-faq-icon::after,
    .ps-faq-answer,
    .ps-faq-answer p,
    .ps-home-faq__cta-btn {
        transition: none !important;
    }

    .ps-faq-answer p {
        opacity: 1;
        transform: none;
    }

    .ps-home-faq__cta-btn:hover {
        transform: none;
    }
}

/* =========================================================
   INICIO — CTA (compacto)
   ========================================================= */

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

.ps-home-cta {
    max-width: 680px;
    margin: 0 auto;
    padding: 28px 28px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(123, 183, 255, 0.16);
    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-home-cta__eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    color: #7bb7ff;
    font-family: var(--ps-font);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.3;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.ps-home-cta__title {
    margin: 0 0 10px !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
    text-align: center !important;
}

.ps-home-cta__text {
    margin: 0 auto 18px !important;
    max-width: 460px;
    color: rgb(156, 166, 172) !important;
    font-family: var(--ps-font) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    text-align: center !important;
}

.ps-home-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 20px;
    background: rgba(123, 183, 255, 0.06);
    color: #ffffff !important;
    border: 1px solid rgba(123, 183, 255, 0.72);
    border-radius: 13px;
    font-family: var(--ps-font);
    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(123, 183, 255, 0.06);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.ps-home-cta__btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

.ps-home-cta__btn:hover {
    background: rgba(123, 183, 255, 0.12);
    border-color: #7bb7ff;
    transform: translateY(-2px);
    color: #ffffff !important;
}

.ps-home-cta__mail {
    margin: 14px 0 0 !important;
    color: #7f8a90 !important;
    font-family: var(--ps-font) !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    text-align: center !important;
}

.ps-home-cta__mail a {
    color: #9ca6ac !important;
    text-decoration: none !important;
}

.ps-home-cta__mail a:hover {
    color: #7bb7ff !important;
}

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

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

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

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

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

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

/* =========================================================
   DESARROLLO WEB — HERO (service hero + iPhone mockup)
   ========================================================= */

.ps-service-hero-sec.ps-sec {
    padding-top: 48px;
    padding-bottom: 75px;
    border-top: none;
}

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

.ps-service-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--ps-font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

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

.ps-service-hero__breadcrumb a:hover {
    color: #7bb7ff;
}

.ps-service-hero__breadcrumb span:last-child {
    color: #7bb7ff;
}

.ps-service-hero__title {
    margin: 0 0 16px !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !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-service-hero__text {
    margin: 0 0 24px !important;
    max-width: 520px;
    color: rgb(156, 166, 172) !important;
    font-family: var(--ps-font) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
    text-align: left !important;
}

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

.ps-service-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 13px;
    font-family: var(--ps-font);
    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-service-hero__btn--primary {
    background: rgba(123, 183, 255, 0.06);
    color: #ffffff !important;
    border: 1px solid rgba(123, 183, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 28px rgba(123, 183, 255, 0.06);
}

.ps-service-hero__btn--primary:hover {
    background: rgba(123, 183, 255, 0.12);
    border-color: #7bb7ff;
    transform: translateY(-2px);
    color: #ffffff !important;
}

.ps-service-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-service-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-service-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ps-service-hero__chips li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    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: var(--ps-font);
    font-size: 12px;
    font-weight: 500;
}

.ps-service-hero__chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #7bb7ff;
    flex-shrink: 0;
}

.ps-service-hero__chip-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.ps-service-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 500px;
}

.ps-service-hero__visual::before {
    content: "";
    position: absolute;
    inset: 18% 8%;
    background: rgba(123, 183, 255, 0.045);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.ps-service-hero__visual > * {
    position: relative;
    z-index: 1;
}

/* ---------- Mockup iPhone ---------- */

.ps-phone-showcase,
.ps-phone-showcase * {
    box-sizing: border-box;
}

.ps-phone-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    min-height: 480px;
    margin: 0 auto;
    padding: 18px 20px 30px;
}

.ps-phone-showcase::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 390px;
    background: radial-gradient(
        circle,
        rgba(123, 183, 255, 0.13) 0%,
        rgba(123, 183, 255, 0.055) 38%,
        transparent 72%
    );
    filter: blur(24px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ps-iphone {
    position: relative;
    z-index: 2;
    width: 250px;
    aspect-ratio: 9 / 18;
    padding: 7px;
    background: linear-gradient(
        145deg,
        #525b64 0%,
        #151a1f 18%,
        #161616 52%,
        #303840 82%,
        #090c0e 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 44px;
    box-shadow:
        0 34px 75px rgba(0, 0, 0, 0.58),
        0 0 42px rgba(123, 183, 255, 0.09),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 3px 0 4px rgba(255, 255, 255, 0.07),
        inset -3px 0 5px rgba(0, 0, 0, 0.72);
    animation: psPhoneFloat 6s ease-in-out infinite;
}

.ps-iphone__screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #090A0B;
    border: 2px solid #121212;
    border-radius: 37px;
    overflow: hidden;
}

.ps-iphone__screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: inherit;
    transform: scale(1.01);
}

.ps-iphone__island {
    position: absolute;
    z-index: 5;
    top: 10px;
    left: 50%;
    width: 82px;
    height: 24px;
    background: #010202;
    border: 1px solid rgba(255, 255, 255, 0.035);
    border-radius: 999px;
    box-shadow:
        inset 0 1px 3px rgba(255, 255, 255, 0.025),
        0 2px 5px rgba(0, 0, 0, 0.55);
    transform: translateX(-50%);
}

.ps-iphone__island span {
    position: absolute;
    top: 50%;
    right: 7px;
    width: 6px;
    height: 6px;
    background: radial-gradient(
        circle at 35% 35%,
        #1f6582,
        #07141d 55%,
        #000 75%
    );
    border-radius: 50%;
    transform: translateY(-50%);
}

.ps-iphone__glass {
    position: absolute;
    z-index: 4;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0.055) 0%,
        transparent 18%,
        transparent 72%,
        rgba(255, 255, 255, 0.015) 100%
    );
    border-radius: inherit;
    pointer-events: none;
}

.ps-iphone__silent,
.ps-iphone__volume,
.ps-iphone__power {
    position: absolute;
    background: linear-gradient(
        180deg,
        #4d5660,
        #11161b 38%,
        #161616 75%,
        #242b31
    );
    box-shadow:
        inset 1px 0 1px rgba(255, 255, 255, 0.15),
        1px 0 2px rgba(0, 0, 0, 0.7);
}

.ps-iphone__silent {
    top: 80px;
    left: -4px;
    width: 4px;
    height: 23px;
    border-radius: 3px 0 0 3px;
}

.ps-iphone__volume {
    left: -5px;
    width: 5px;
    height: 47px;
    border-radius: 4px 0 0 4px;
}

.ps-iphone__volume--up {
    top: 120px;
}

.ps-iphone__volume--down {
    top: 176px;
}

.ps-iphone__power {
    top: 140px;
    right: -5px;
    width: 5px;
    height: 72px;
    border-radius: 0 4px 4px 0;
    box-shadow:
        inset -1px 0 1px rgba(255, 255, 255, 0.14),
        -1px 0 2px rgba(0, 0, 0, 0.75);
}

.ps-iphone__speaker {
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 52px;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    transform: translateX(-50%);
}

.ps-phone-showcase__shadow {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 25px;
    width: 190px;
    height: 24px;
    background: radial-gradient(
        ellipse,
        rgba(123, 183, 255, 0.18),
        rgba(0, 0, 0, 0.20) 48%,
        transparent 73%
    );
    filter: blur(9px);
    transform: translateX(-50%);
}

@keyframes psPhoneFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-0.35deg);
    }

    50% {
        transform: translateY(-8px) rotate(0.35deg);
    }
}

@media (max-width: 1024px) {
    .ps-service-hero__visual {
        min-height: 465px;
    }

    .ps-phone-showcase {
        max-width: 390px;
        min-height: 465px;
    }

    .ps-iphone {
        width: 225px;
    }

    .ps-phone-showcase::before {
        width: 275px;
        height: 350px;
    }

    .ps-phone-showcase__shadow {
        width: 175px;
    }
}

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

    .ps-service-hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ps-service-hero__visual {
        order: -1;
    }

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

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

@media (max-width: 767px) {
    .ps-service-hero__visual {
        min-height: 430px;
    }

    .ps-service-hero__title {
        font-size: 28px !important;
    }

    .ps-phone-showcase {
        max-width: 100%;
        min-height: 430px;
        padding: 10px 12px 25px;
    }

    .ps-iphone {
        width: min(215px, 67vw);
        border-radius: 40px;
    }

    .ps-iphone__screen {
        border-radius: 33px;
    }

    .ps-iphone__island {
        width: 75px;
        height: 22px;
    }

    .ps-phone-showcase::before {
        width: 245px;
        height: 315px;
    }

    .ps-phone-showcase__shadow {
        bottom: 20px;
        width: 160px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ps-iphone {
        animation: none;
    }

    .ps-service-hero__btn {
        transition: none;
    }

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

/* =========================================================
   LEGAL — Privacidad / Términos
   ========================================================= */

.ps-legal-sec.ps-sec {
    padding-top: 24px;
    padding-bottom: 110px;
    border-top: none;
}

.ps-legal {
    max-width: 760px;
    margin: 0 auto;
}

.ps-legal__header {
    margin-bottom: 42px;
    text-align: left;
}

.ps-legal__header .ps-sec__eyebrow {
    margin-bottom: 16px;
}

.ps-legal__title {
    margin: 0 0 12px !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !important;
    font-size: clamp(28px, 4vw, 40px) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.8px !important;
    text-align: left !important;
}

.ps-legal__meta {
    margin: 0 0 18px !important;
    color: #7f8a90 !important;
    font-family: var(--ps-font) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

.ps-legal__lead {
    margin: 0 !important;
    color: #9ca6ac !important;
    font-family: var(--ps-font) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
}

.ps-legal__content h2 {
    margin: 36px 0 12px !important;
    color: #ffffff !important;
    font-family: var(--ps-font) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    text-align: left !important;
}

.ps-legal__content p,
.ps-legal__content li {
    color: #9ca6ac !important;
    font-family: var(--ps-font) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    text-align: left !important;
}

.ps-legal__content p {
    margin: 0 0 14px !important;
}

.ps-legal__content ul {
    margin: 0 0 16px !important;
    padding-left: 1.2em;
}

.ps-legal__content li {
    margin: 0 0 8px;
}

.ps-legal__content a {
    color: #7bb7ff !important;
    text-decoration: none !important;
}

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

.ps-legal__content strong {
    color: #e8eef1 !important;
    font-weight: 600 !important;
}

@media (max-width: 767px) {
    .ps-legal-sec.ps-sec {
        padding-top: 20px;
        padding-bottom: 80px;
    }

    .ps-legal__title {
        font-size: 28px !important;
    }

    .ps-legal__content h2 {
        font-size: 18px !important;
    }
}

/* Primera sección: 180px, excepto heroes 145px y Desarrollo web 48px.
   #content .ps-sec:first-of-type pisa a .ps-home-hero-sec (lleva ID). */
#content .ps-sec:first-of-type:not(.ps-home-hero-sec):not(.ps-about-hero-sec):not(.ps-design-hero-sec):not(.ps-tech-hero-sec):not(.ps-service-hero-sec),
#content .ps-sec:first-child:not(.ps-home-hero-sec):not(.ps-about-hero-sec):not(.ps-design-hero-sec):not(.ps-tech-hero-sec):not(.ps-service-hero-sec),
.ps-contact-sec.ps-sec,
.ps-portfolio-sec.ps-sec,
.ps-legal-sec.ps-sec,
.entry-content > .ps-sec:first-of-type:not(.ps-home-hero-sec):not(.ps-about-hero-sec):not(.ps-design-hero-sec):not(.ps-tech-hero-sec):not(.ps-service-hero-sec) {
    padding-top: 110px !important;
    margin-top: 0 !important;
    border-top: 0 !important;
}

#content .ps-home-hero-sec.ps-sec,
#content .ps-about-hero-sec.ps-sec,
#content .ps-design-hero-sec.ps-sec,
#content .ps-tech-hero-sec.ps-sec {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
}

#content .ps-service-hero-sec.ps-sec,
.ps-service-hero-sec.ps-sec {
    padding-top: 48px !important;
    padding-bottom: 75px !important;
}

@media (max-width: 900px) {
    #content .ps-sec:first-of-type:not(.ps-home-hero-sec):not(.ps-about-hero-sec):not(.ps-design-hero-sec):not(.ps-tech-hero-sec):not(.ps-service-hero-sec),
    #content .ps-sec:first-child:not(.ps-home-hero-sec):not(.ps-about-hero-sec):not(.ps-design-hero-sec):not(.ps-tech-hero-sec):not(.ps-service-hero-sec),
    .ps-contact-sec.ps-sec,
    .ps-portfolio-sec.ps-sec,
    .ps-legal-sec.ps-sec,
    .entry-content > .ps-sec:first-of-type:not(.ps-home-hero-sec):not(.ps-about-hero-sec):not(.ps-design-hero-sec):not(.ps-tech-hero-sec):not(.ps-service-hero-sec) {
        padding-top: 80px !important;
    }

    #content .ps-home-hero-sec.ps-sec,
    #content .ps-about-hero-sec.ps-sec,
    #content .ps-design-hero-sec.ps-sec,
    #content .ps-tech-hero-sec.ps-sec {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    #content .ps-service-hero-sec.ps-sec,
    .ps-service-hero-sec.ps-sec {
        padding-top: 48px !important;
        padding-bottom: 72px !important;
    }
}
