.paquetes-web-page {
    /* Espaciado — múltiplos de 8px */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-7: 64px;
    --space-8: 80px;
    --space-9: 96px;
    --space-10: 112px;
    --space-11: 128px;

    --radius-surface: 16px;
    --radius-pill: 999px;
    --container-max: 1200px;
    --container-pad: 24px;
    --section-space: 96px;

    /* Superficies DARK MODE */
    --bg-page: #07111f;
    --bg-section: #0b1627;
    --surface-card: #101c30;
    --surface-elevated: #132338;

    /* Bordes finos 1px */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --border-accent: rgba(24, 195, 143, 0.32);

    /* Tipografía (contraste AAA sobre dark) */
    --text-strong: #f4f8fb;
    --text-body: #c8d7e6;
    --text-muted: #92a7bc;

    /* Acentos */
    --accent-green: #18c38f;
    --accent-green-bright: #2ee0a6;
    --accent-green-strong: #12af7f;
    --accent-blue: #3ea3d8;

    /* Sombras para dark — más profundidad */
    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.42);
    --shadow-card: 0 24px 56px rgba(0, 0, 0, 0.56);
    --shadow-green: 0 16px 32px rgba(24, 195, 143, 0.28);

    background: var(--bg-page);
    color: var(--text-body);
}

@media (min-width: 768px) {
    .paquetes-web-page {
        --section-space: 112px;
    }
}

@media (min-width: 1024px) {
    .paquetes-web-page {
        --container-pad: 32px;
        --section-space: 128px;
    }
}

body.paquetes-web-page *,
body.paquetes-web-page *::before,
body.paquetes-web-page *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

.paquetes-web-page main {
    overflow: clip;
}

.paquetes-web-page img {
    display: block;
    max-width: 100%;
}

.paquetes-web-page a:not(.pw-button):not(.pw-button--primary):not(.pw-button--secondary):not(.pw-button--card):not(.pw-button--card-featured) {
    color: inherit;
}

.paquetes-web-page .container {
    width: 100%;
    max-width: calc(var(--container-max) + (var(--container-pad) * 2));
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

/* ============================= TOPBAR ============================= */
.pw-topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: rgba(7, 17, 31, 0.84);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(16px);
}

.pw-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    min-height: 80px;
}

.pw-topbar__brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.pw-topbar__logo {
    height: 48px;
    width: auto;
}

.pw-topbar__cta {
    display: none;
    min-height: 56px;
    padding: var(--space-2) var(--space-3);
    white-space: nowrap;
}

@media (min-width: 640px) {
    .pw-topbar__cta {
        display: inline-flex;
    }
}

/* ============================= SECTION HEAD ============================= */
.pw-section-head {
    max-width: 848px;
    margin: 0 auto var(--space-4);
}

.pw-section-head--center {
    text-align: center;
}

.pw-section-head h2 {
    margin: 0;
    color: var(--text-strong);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.pw-section-head p {
    max-width: 64ch;
    margin: var(--space-2) auto 0;
    color: var(--text-body);
    font-size: 1.04rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .pw-section-head {
        margin-bottom: var(--space-6);
    }
}

/* ============================= BUTTONS ============================= */
.pw-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    min-height: 56px;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-surface);
    border: 1px solid transparent;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.pw-button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-pill);
    background: rgba(4, 18, 24, 0.14);
}

.pw-button:hover {
    transform: translateY(-1px);
}

.pw-button--primary {
    background: var(--accent-green);
    border-color: rgba(46, 224, 166, 0.32);
    color: #041218;
    box-shadow: var(--shadow-green);
}

.pw-button--primary:hover {
    background: var(--accent-green-bright);
    color: #041218;
    box-shadow: 0 20px 36px rgba(46, 224, 166, 0.36);
}

.pw-button--primary span {
    background: rgba(4, 18, 24, 0.18);
}

.pw-button--secondary,
.pw-button--card {
    background: var(--surface-elevated);
    border-color: var(--border-strong);
    color: var(--text-strong);
    box-shadow: var(--shadow-soft);
}

.pw-button--secondary:hover,
.pw-button--card:hover {
    background: #1a2d47;
    border-color: var(--border-accent);
    color: var(--text-strong);
    box-shadow: var(--shadow-card);
}

.pw-button--secondary span,
.pw-button--card span {
    background: rgba(255, 255, 255, 0.08);
}

.pw-button--card-featured {
    background: var(--accent-green);
    border-color: rgba(46, 224, 166, 0.32);
    color: #041218;
    box-shadow: var(--shadow-green);
}

.pw-button--card-featured:hover {
    background: var(--accent-green-bright);
    color: #041218;
    box-shadow: 0 20px 36px rgba(46, 224, 166, 0.36);
}

.pw-button--card-featured span {
    background: rgba(4, 18, 24, 0.18);
}

.pw-button--card,
.pw-button--card-featured {
    width: 100%;
    margin-top: var(--space-3);
}

.pw-topbar__brand:focus-visible,
.pw-button:focus-visible,
.pw-showcase-card__media:focus-visible,
.pw-showcase-card__link:focus-visible {
    outline: 3px solid rgba(46, 224, 166, 0.56);
    outline-offset: 4px;
}

/* ============================= HERO ============================= */
.pw-hero {
    position: relative;
    padding: 160px 0 var(--section-space);
    background:
        radial-gradient(circle at top left, rgba(24, 195, 143, 0.18), transparent 28%),
        radial-gradient(circle at right center, rgba(12, 104, 153, 0.32), transparent 40%),
        linear-gradient(135deg, #07111f 0%, #0b1627 52%, #101f34 100%);
    color: var(--text-strong);
}

.pw-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.24));
    pointer-events: none;
}

.pw-hero__glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: var(--radius-pill);
    filter: blur(48px);
    opacity: 0.32;
}

.pw-hero__glow--left {
    top: 64px;
    left: -96px;
    background: rgba(24, 195, 143, 0.42);
}

.pw-hero__glow--right {
    right: -64px;
    bottom: 32px;
    background: rgba(12, 104, 153, 0.36);
}

.pw-hero .container {
    position: relative;
    z-index: 1;
}

.pw-hero__inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.pw-hero__inner h1 {
    max-width: 14ch;
    margin: 0 auto;
    color: var(--text-strong);
    font-size: clamp(2.75rem, 6vw, 5.5rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.pw-hero__lead {
    max-width: 720px;
    margin: var(--space-3) auto 0;
    color: var(--text-body);
    font-size: 1.08rem;
    line-height: 1.6;
}

.pw-hero__actions {
    display: flex;
    justify-content: center;
    margin-top: var(--space-4);
}

@media (min-width: 1024px) {
    .pw-hero {
        padding-top: 192px;
    }
}

@media (min-width: 1280px) {
    .pw-hero {
        padding-bottom: var(--space-10);
    }
}

/* ============================= TRUSTBAR (NUEVA) ============================= */
.pw-trustbar {
    padding: var(--space-7) 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.pw-trustbar__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    list-style: none;
    padding: 0;
    margin: 0;
}

.pw-trustbar__grid li {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.pw-trustbar__grid strong {
    color: var(--accent-green-bright);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pw-trustbar__grid span {
    color: var(--text-muted);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .pw-trustbar__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================= SHOWCASE ============================= */
.pw-showcase {
    padding: var(--section-space) 0;
    background: var(--bg-page);
}

.pw-showcase__bleed {
    width: 100%;
    max-width: calc(var(--container-max) + (var(--container-pad) * 2));
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.pw-showcase__scroller {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

.pw-showcase-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    border-radius: var(--radius-surface);
    border: 1px solid var(--border-subtle);
    background: var(--surface-card);
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.pw-showcase-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.pw-showcase-card__media {
    display: block;
}

.pw-showcase-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.24s ease;
}

.pw-showcase-card__media:hover img {
    transform: scale(1.02);
}

.pw-showcase-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-3);
}

.pw-showcase-card__eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-pill);
    background: rgba(24, 195, 143, 0.14);
    color: var(--accent-green-bright);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pw-showcase-card h3 {
    margin: 0;
    color: var(--text-strong);
    font-size: 1.45rem;
    line-height: 1.12;
    font-weight: 800;
}

.pw-showcase-card p {
    margin: 0;
    color: var(--text-body);
    line-height: 1.6;
}

.pw-showcase-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    width: fit-content;
    margin-top: auto;
    padding-top: var(--space-3);
    color: var(--accent-blue);
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.pw-showcase-card__link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(62, 163, 216, 0.24);
    background: rgba(62, 163, 216, 0.08);
    color: inherit;
    transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.pw-showcase-card__link:hover {
    color: #7bc4e8;
}

.pw-showcase-card__link:hover span {
    transform: translateX(2px);
    background: rgba(62, 163, 216, 0.16);
    border-color: rgba(62, 163, 216, 0.4);
}

/* ============================= AUTHORITY (Raúl Roa) ============================= */
.pw-authority {
    position: relative;
    padding: var(--section-space) 0;
    background: var(--bg-section);
    overflow: hidden;
}

.pw-authority::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(24, 195, 143, 0.1), transparent 42%);
    pointer-events: none;
}

.pw-authority .container {
    position: relative;
    z-index: 1;
}

.pw-authority__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

.pw-authority__portrait {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border-radius: var(--radius-surface);
    border: 1px solid var(--border-strong);
    background: linear-gradient(180deg, #0c1627 0%, #102238 100%);
    box-shadow: var(--shadow-card);
}

.pw-authority__portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.12) 0%, rgba(7, 17, 31, 0.48) 100%);
    pointer-events: none;
}

.pw-authority__portrait img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center top;
}

.pw-authority__content {
    display: flex;
    flex-direction: column;
    padding: var(--space-4);
    border-radius: var(--radius-surface);
    border: 1px solid var(--border-accent);
    background: var(--surface-elevated);
    box-shadow: var(--shadow-card);
}

.pw-authority__content h2 {
    color: var(--text-strong);
    font-size: clamp(2.1rem, 4vw, 3.25rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.pw-authority__role {
    margin: var(--space-2) 0 0;
    color: var(--accent-green-bright);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pw-authority__lead {
    margin-top: var(--space-3);
    color: var(--text-body);
}

.pw-authority__list {
    display: grid;
    gap: var(--space-2);
    margin: var(--space-4) 0 0;
    padding: 0;
    list-style: none;
}

.pw-authority__list li {
    position: relative;
    padding-left: 32px;
    color: var(--text-body);
}

.pw-authority__list li::before {
    content: "\f058";
    position: absolute;
    top: 1px;
    left: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-green-bright);
    font-size: 1rem;
}

.pw-authority__action {
    display: flex;
    margin-top: var(--space-4);
}

.pw-authority__cta {
    width: 100%;
}

/* ============================= PRICING ============================= */
.pw-pricing {
    padding: var(--section-space) 0;
    background: var(--bg-page);
}

.pw-pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

.pw-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    min-height: 100%;
    padding: var(--space-4);
    border-radius: var(--radius-surface);
    border: 1px solid var(--border-subtle);
    background: var(--surface-card);
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.pw-price-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-card);
}

.pw-price-card--featured {
    padding-top: var(--space-8);
    border-color: var(--border-accent);
    background:
        radial-gradient(circle at top right, rgba(24, 195, 143, 0.14), transparent 40%),
        linear-gradient(180deg, var(--surface-elevated) 0%, #162a42 100%);
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(24, 195, 143, 0.18);
}

.pw-price-card--featured:hover {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(24, 195, 143, 0.32), var(--shadow-green);
}

.pw-price-card__badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-4);
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-bright) 100%);
    color: #041218;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(24, 195, 143, 0.32);
}

.pw-price-card__tag {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: var(--space-1);
    min-height: 32px;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-pill);
    background: rgba(62, 163, 216, 0.12);
    color: var(--accent-blue);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pw-price-card h3,
.pw-process-card h3,
.pw-authority__content h2,
.pw-final-cta__content h2 {
    margin: 0;
}

.pw-price-card h3 {
    color: var(--text-strong);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    line-height: 1.08;
    font-weight: 800;
}

.pw-price-card__subtitle,
.pw-price-card__price,
.pw-pricing-cta__copy,
.pw-process-card p,
.pw-authority__lead,
.pw-authority__list li,
.pw-fit__list li,
.pw-final-cta__content p,
.pw-final-cta__micro {
    margin: 0;
    line-height: 1.6;
}

.pw-price-card__subtitle {
    color: var(--text-body);
}

.pw-price-card__price {
    color: var(--text-muted);
}

.pw-price-card__price strong {
    display: block;
    margin-top: var(--space-1);
    color: var(--accent-green-bright);
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.pw-price-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1);
}

.pw-price-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.pw-price-card__list {
    display: grid;
    gap: var(--space-2);
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--text-body);
    font-size: 0.97rem;
}

.pw-price-card__list li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: var(--space-2);
    align-items: start;
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--border-subtle);
    line-height: 1.6;
}

.pw-price-card__list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.pw-price-card__list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--accent-green-bright);
}

/* Micro-badges de garantía en pricing cards (NUEVO) */
.pw-price-card__guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    padding-top: var(--space-3);
    border-top: 1px solid var(--border-subtle);
}

.pw-price-card__guarantees span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.pw-price-card__guarantees i {
    color: var(--accent-green);
    font-size: 0.88rem;
}

.pw-pricing-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-4);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-surface);
    border: 1px solid var(--border-subtle);
    background: var(--surface-card);
    box-shadow: var(--shadow-soft);
}

.pw-pricing-cta__copy {
    max-width: 68ch;
    color: var(--text-body);
}

.pw-pricing-cta__copy strong {
    color: var(--text-strong);
}

/* ============================= FIT ============================= */
.pw-fit {
    padding: var(--section-space) 0;
    background: var(--bg-section);
}

.pw-fit__panel {
    padding: var(--space-4);
    border-radius: var(--radius-surface);
    border: 1px solid var(--border-subtle);
    background:
        radial-gradient(circle at top right, rgba(24, 195, 143, 0.08), transparent 32%),
        linear-gradient(180deg, var(--surface-elevated) 0%, #0f1d30 100%);
    box-shadow: var(--shadow-card);
}

.pw-fit__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2);
    padding: 0;
    margin: 0;
    list-style: none;
}

.pw-fit__list li {
    position: relative;
    padding: var(--space-3) var(--space-3) var(--space-3) 56px;
    border-radius: var(--radius-surface);
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-body);
}

.pw-fit__list li::before {
    content: "";
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    width: 24px;
    height: 24px;
    border-radius: var(--radius-pill);
    background: rgba(24, 195, 143, 0.18);
    border: 1px solid rgba(24, 195, 143, 0.32);
}

.pw-fit__list li::after {
    content: "";
    position: absolute;
    top: 32px;
    left: 32px;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--accent-green-bright);
    border-bottom: 2px solid var(--accent-green-bright);
    transform: rotate(-45deg);
}

.pw-fit__actions {
    display: flex;
    justify-content: center;
    margin-top: var(--space-4);
}

/* ============================= PROCESS ============================= */
.pw-process {
    padding: var(--section-space) 0;
    background: var(--bg-page);
}

.pw-process__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

.pw-process-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    min-height: 100%;
    padding: var(--space-4);
    border-radius: var(--radius-surface);
    border: 1px solid var(--border-subtle);
    background: var(--surface-card);
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.pw-process-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-card);
}

.pw-process-card__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-surface);
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-bright) 100%);
    color: #041218;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(24, 195, 143, 0.28);
}

.pw-process-card h3 {
    color: var(--text-strong);
    font-size: 1.45rem;
    line-height: 1.12;
    font-weight: 800;
}

.pw-process-card p {
    color: var(--text-body);
}

/* ============================= FINAL CTA ============================= */
.pw-final-cta {
    padding: var(--section-space) 0;
    background:
        radial-gradient(circle at top left, rgba(24, 195, 143, 0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(12, 104, 153, 0.28), transparent 36%),
        linear-gradient(135deg, #07111f 0%, #0a1526 100%);
    border-top: 1px solid var(--border-subtle);
}

.pw-final-cta__box {
    display: grid;
    gap: var(--space-4);
    padding: var(--space-4);
    border-radius: var(--radius-surface);
    border: 1px solid var(--border-accent);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.48);
}

.pw-final-cta__content h2 {
    color: var(--text-strong);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.pw-final-cta__content p {
    max-width: 60ch;
    margin-top: var(--space-2);
    color: var(--text-body);
}

.pw-final-cta__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.pw-final-cta__actions .pw-button {
    width: 100%;
}

.pw-final-cta__micro {
    color: var(--text-muted);
    font-size: 0.94rem;
}

/* ============================= RESPONSIVE ============================= */
@media (min-width: 768px) {
    .pw-showcase__scroller,
    .pw-fit__list,
    .pw-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pw-showcase-card__body {
        padding: var(--space-4);
    }

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

    .pw-price-card--featured {
        order: -1;
        grid-column: 1 / -1;
    }

    .pw-pricing-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .pw-fit__panel,
    .pw-authority__content,
    .pw-final-cta__box {
        padding: var(--space-6);
    }

    .pw-price-card {
        padding: var(--space-5);
    }

    .pw-authority__portrait,
    .pw-authority__portrait img {
        min-height: 416px;
    }
}

@media (min-width: 1024px) {
    .pw-showcase__scroller,
    .pw-process__grid,
    .pw-pricing__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pw-price-card--featured {
        order: 0;
        grid-column: auto;
        transform: translateY(-8px);
    }

    .pw-price-card--featured:hover {
        transform: translateY(-12px);
    }

    .pw-authority__grid {
        grid-template-columns: minmax(320px, 400px) minmax(0, 1fr);
        align-items: stretch;
    }

    .pw-authority__portrait,
    .pw-authority__portrait img {
        min-height: 480px;
    }

    .pw-final-cta__box {
        grid-template-columns: minmax(0, 1.3fr) minmax(280px, 360px);
        align-items: center;
        padding: var(--space-6);
    }

    .pw-final-cta__actions {
        align-items: flex-start;
        justify-self: end;
    }

    .pw-final-cta__actions .pw-button,
    .pw-authority__cta {
        width: auto;
    }
}

@media (min-width: 1280px) {
    .pw-showcase,
    .pw-final-cta {
        padding: var(--space-11) 0;
    }

    .pw-showcase__bleed--marquee {
        position: relative;
        width: 100vw;
        max-width: none;
        margin-inline: calc(50% - 50vw);
        padding-inline: 0;
        overflow: hidden;
    }

    .pw-showcase__bleed--marquee::before,
    .pw-showcase__bleed--marquee::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 112px;
        pointer-events: none;
        z-index: 2;
    }

    .pw-showcase__bleed--marquee::before {
        left: 0;
        background: linear-gradient(90deg, var(--bg-page) 0%, rgba(7, 17, 31, 0) 100%);
    }

    .pw-showcase__bleed--marquee::after {
        right: 0;
        background: linear-gradient(270deg, var(--bg-page) 0%, rgba(7, 17, 31, 0) 100%);
    }

    .pw-showcase__scroller.is-marquee {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(360px, 392px);
        gap: var(--space-4);
        width: 100%;
        max-width: none;
        padding-inline: var(--space-4);
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pw-showcase__scroller.is-marquee::-webkit-scrollbar {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pw-button,
    .pw-showcase-card,
    .pw-showcase-card img,
    .pw-showcase-card__link span,
    .pw-price-card,
    .pw-process-card {
        transition: none;
    }
}


/* =========================================================
   HORMOZI COMPONENTS
   ========================================================= */

.paquetes-web-page .pw-eyebrow {
    display: inline-block;
    color: var(--accent-green-bright);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.pw-urgency-banner {
    background: linear-gradient(90deg, rgba(24,195,143,0.14), rgba(24,195,143,0.08));
    border-bottom: 1px solid rgba(24,195,143,0.28);
    padding: 10px 0;
    font-size: 0.92rem;
}
.pw-urgency-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    text-align: center;
}
.pw-urgency-banner p { margin: 0; color: var(--text-body); }
.pw-urgency-banner strong { color: var(--accent-green-bright); }
.pw-urgency-banner__dot {
    width: 10px; height: 10px;
    border-radius: 999px;
    background: var(--accent-green-bright);
    box-shadow: 0 0 0 0 rgba(46, 224, 166, 0.6);
    animation: pwPulse 1.8s ease-out infinite;
    flex-shrink: 0;
}
@keyframes pwPulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 224, 166, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(46, 224, 166, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 224, 166, 0); }
}

.pw-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin: var(--space-2) 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-green-bright);
    background: rgba(24,195,143,0.12);
    border: 1px solid rgba(24,195,143,0.35);
    border-radius: var(--radius-pill);
}
.pw-hero__chip i { font-size: 0.9rem; }

.pw-problem {
    padding: var(--section-space) 0;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border-subtle);
}
.pw-problem__list {
    list-style: none;
    padding: 0;
    margin: var(--space-5) auto 0;
    max-width: 820px;
    display: grid;
    gap: var(--space-2);
}
.pw-problem__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-3);
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.55;
}
.pw-problem__list li i {
    color: #f87171;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 1rem;
}

.pw-cta-inline {
    margin: var(--space-6) auto 0;
    max-width: 720px;
    padding: var(--space-4);
    background: var(--surface-elevated);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-surface);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    align-items: center;
    text-align: center;
}
.pw-cta-inline p {
    margin: 0;
    color: var(--text-strong);
    font-size: 1.1rem;
    font-weight: 600;
}
@media (min-width: 768px) {
    .pw-cta-inline {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.pw-value-stack {
    padding: var(--section-space) 0;
    background: var(--bg-page);
}
.pw-value-stack__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    margin-top: var(--space-5);
}
@media (min-width: 768px) {
    .pw-value-stack__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .pw-value-stack__grid { grid-template-columns: repeat(3, 1fr); }
}
.pw-value-stack__card {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-surface);
    padding: var(--space-4);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pw-value-stack__card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-card);
}
.pw-value-stack__card--featured {
    background: linear-gradient(180deg, var(--surface-elevated) 0%, #162a42 100%);
    border-color: var(--border-accent);
}
.pw-value-stack__card h3 {
    color: var(--text-strong);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 var(--space-3);
}
.pw-value-stack__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-1);
}
.pw-value-stack__card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-body);
    font-size: 0.96rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--border-subtle);
}
.pw-value-stack__card li:last-child { border-bottom: 0; }
.pw-value-stack__card li i {
    color: var(--accent-green-bright);
    margin-top: 4px;
    flex-shrink: 0;
}
.pw-value-stack__card li span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.pw-price-card__risk {
    display: block;
    margin-top: var(--space-2);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.pw-guarantee {
    padding: var(--section-space) 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}
.pw-guarantee::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(24,195,143,0.14), transparent 50%);
    pointer-events: none;
}
.pw-guarantee__card {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: var(--space-6) var(--space-4);
    background: var(--surface-elevated);
    border: 1px solid rgba(24,195,143,0.45);
    border-radius: var(--radius-surface);
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(24,195,143,0.2), 0 0 48px rgba(24,195,143,0.12);
    text-align: center;
}
@media (min-width: 768px) {
    .pw-guarantee__card { padding: var(--space-7) var(--space-6); }
}
.pw-guarantee__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(24,195,143,0.16);
    border: 1px solid rgba(24,195,143,0.45);
    border-radius: var(--radius-pill);
    color: var(--accent-green-bright);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}
.pw-guarantee__badge i { font-size: 1.1rem; }
.pw-guarantee__card h2 {
    color: var(--text-strong);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 var(--space-3);
}
.pw-guarantee__card > p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto var(--space-5);
}
.pw-guarantee__points {
    list-style: none;
    padding: 0;
    margin: 0 auto var(--space-5);
    max-width: 560px;
    display: grid;
    gap: var(--space-1);
    text-align: left;
}
.pw-guarantee__points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-body);
    font-size: 0.96rem;
}
.pw-guarantee__points li i {
    color: var(--accent-green-bright);
    margin-top: 4px;
    flex-shrink: 0;
}

.pw-faq {
    padding: var(--section-space) 0;
    background: var(--bg-page);
}
.pw-faq__list {
    max-width: 760px;
    margin: var(--space-5) auto 0;
    display: grid;
    gap: var(--space-2);
}
.pw-faq__item {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}
.pw-faq__item[open] {
    border-color: var(--border-accent);
}
.pw-faq__item summary {
    list-style: none;
    padding: var(--space-3);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--text-strong);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
}
.pw-faq__item summary::-webkit-details-marker { display: none; }
.pw-faq__item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-green-bright);
    font-size: 0.85rem;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.pw-faq__item[open] summary::after { transform: rotate(180deg); }
.pw-faq__item p {
    padding: 0 var(--space-3) var(--space-3);
    margin: 0;
    color: var(--text-body);
    line-height: 1.6;
}

.pw-final-cta__scarcity {
    display: inline-block;
    margin: 0 auto var(--space-3);
    padding: 8px 16px;
    background: rgba(24,195,143,0.12);
    border: 1px solid rgba(24,195,143,0.35);
    border-radius: var(--radius-pill);
    color: var(--text-body);
    font-size: 0.92rem;
    text-align: center;
}
.pw-final-cta__scarcity strong { color: var(--accent-green-bright); }

@media (prefers-reduced-motion: reduce) {
    .pw-urgency-banner__dot { animation: none; }
    .pw-value-stack__card,
    .pw-faq__item,
    .pw-faq__item summary::after { transition: none; }
}
