/* ====== RESET / BASE (prefijo dpgwx- para no chocar con WordPress) ====== */
.dpgwx-root * {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.dpgwx-root {
    --c-bg: #0A0E1A;
    /* fondo navy tech */
    --c-bg2: #0d1326;
    --c-violet: #7C3AED;
    /* acento 1 */
    --c-cyan: #06B6D4;
    /* acento 2 */
    --c-cta: #0EEE00;
    /* CTA verde (no cambiar) */
    --c-text: #EAF0FF;
    --c-muted: #9aa6c4;
    --glass: rgba(255, 255, 255, .06);
    --glass-bd: rgba(255, 255, 255, .12);
    --radius: 18px;
    font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.dpgwx-root img {
    max-width: 100%;
    display: block
}

.dpgwx-root a {
    text-decoration: none;
    color: inherit
}

.dpgwx-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px
}

.dpgwx-section {
    position: relative;
    padding: 64px 0
}

.dpgwx-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-cyan);
    background: rgba(6, 182, 212, .12);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px
}

.dpgwx-h2 {
    font-size: clamp(26px, 4.5vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.5px
}

.dpgwx-lead {
    color: var(--c-muted);
    font-size: clamp(15px, 2vw, 18px);
    max-width: 680px
}

.dpgwx-center {
    text-align: center
}

.dpgwx-center .dpgwx-lead {
    margin-left: auto;
    margin-right: auto
}

.dpgwx-grad {
    background: linear-gradient(100deg, var(--c-cyan), var(--c-violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

/* ====== Fondos decorativos / luces ====== */
.dpgwx-root {
    position: relative
}

.dpgwx-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .45;
    pointer-events: none;
    z-index: 0
}

.dpgwx-glow.v {
    background: var(--c-violet)
}

.dpgwx-glow.c {
    background: var(--c-cyan)
}

.dpgwx-section>.dpgwx-wrap {
    position: relative;
    z-index: 2
}

/* ====== Barra superior marquee ====== */
.dpgwx-marquee {
    background: linear-gradient(90deg, var(--c-violet), var(--c-cyan));
    overflow: hidden;
    white-space: nowrap;
    padding: 9px 0;
    position: relative;
    z-index: 5
}

.dpgwx-marquee-track {
    display: inline-block;
    animation: dpgwx-scroll 22s linear infinite
}

.dpgwx-marquee-track span {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin: 0 26px;
    letter-spacing: .4px
}

@keyframes dpgwx-scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ====== Botón CTA verde parpadeante ====== */
.dpgwx-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--c-cta);
    color: #062b00;
    font-weight: 900;
    font-size: clamp(16px, 2.4vw, 20px);
    letter-spacing: .3px;
    padding: 17px 34px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    box-shadow: 0 0 0 0 rgba(14, 238, 0, .7);
    animation: dpgwx-blink 1.4s ease-in-out infinite, dpgwx-pulse 2s infinite;
    transition: transform .15s ease;
}

.dpgwx-cta:hover {
    transform: translateY(-3px) scale(1.03)
}

.dpgwx-cta:active {
    transform: translateY(0) scale(.99)
}

.dpgwx-cta .ic {
    font-size: 1.1em
}

@keyframes dpgwx-blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .72
    }
}

@keyframes dpgwx-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 238, 0, .55)
    }

    70% {
        box-shadow: 0 0 0 18px rgba(14, 238, 0, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(14, 238, 0, 0)
    }
}

.dpgwx-cta-sub {
    display: block;
    font-size: 12.5px;
    color: var(--c-muted);
    margin-top: 10px;
    font-weight: 600
}

/* ====== HERO ====== */
.dpgwx-hero {
    padding: 34px 0 56px;
    position: relative
}

.dpgwx-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: center
}

.dpgwx-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 18px
}

.dpgwx-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--glass);
    border: 1px solid var(--glass-bd);
    padding: 7px 13px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    backdrop-filter: blur(8px)
}

.dpgwx-badge.green {
    color: var(--c-cta);
    border-color: rgba(14, 238, 0, .4);
    background: rgba(14, 238, 0, .08)
}

.dpgwx-h1 {
    font-size: clamp(30px, 5.6vw, 54px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -1px
}

.dpgwx-h1 em {
    font-style: normal
}

.dpgwx-hero-pain {
    color: var(--c-muted);
    font-size: clamp(15px, 2vw, 18px);
    margin: 16px 0 8px;
    max-width: 560px
}

.dpgwx-stars {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0 6px;
    flex-wrap: wrap
}

.dpgwx-stars .s {
    color: #FFC53D;
    font-size: 18px;
    letter-spacing: 2px
}

.dpgwx-stars small {
    color: var(--c-muted);
    font-size: 13px
}

.dpgwx-hero-img {
    position: relative
}

.dpgwx-hero-img .float {
    animation: dpgwx-float 5s ease-in-out infinite;
    filter: drop-shadow(0 30px 50px rgba(124, 58, 237, .35));
    border-radius: 20px
}

@keyframes dpgwx-float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-16px)
    }
}

.dpgwx-hero-img .ring {
    position: absolute;
    inset: auto;
    width: 78%;
    aspect-ratio: 1;
    left: 11%;
    top: 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, .5), transparent 62%);
    filter: blur(20px);
    z-index: -1;
    animation: dpgwx-breathe 4s ease-in-out infinite
}

@keyframes dpgwx-breathe {

    0%,
    100% {
        opacity: .5;
        transform: scale(.95)
    }

    50% {
        opacity: .85;
        transform: scale(1.05)
    }
}

.dpgwx-price-tag {
    position: absolute;
    right: 6px;
    bottom: 14px;
    background: rgba(10, 14, 26, .85);
    border: 1px solid var(--glass-bd);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .4)
}

.dpgwx-price-tag .old {
    color: var(--c-muted);
    text-decoration: line-through;
    font-size: 13px
}

.dpgwx-price-tag .new {
    color: var(--c-cta);
    font-weight: 900;
    font-size: 24px;
    line-height: 1
}

/* ====== Mini contador en hero / barra urgencia ====== */
.dpgwx-countbar {
    background: linear-gradient(90deg, rgba(124, 58, 237, .18), rgba(6, 182, 212, .18));
    border: 1px solid var(--glass-bd);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-top: 8px;
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    /* justify-content: center; */
    gap: 18px;
    flex-wrap: wrap
}

.dpgwx-countbar .lbl {
    font-weight: 800;
    font-size: clamp(17px, 3vw, 26px);
}

.dpgwx-clock {
    display: flex;
    gap: 15px
}

.dpgwx-clock .box {
    background: #070b16;
    border: 1px solid var(--glass-bd);
    border-radius: 12px;
    min-width: 64px;
    padding: 8px 25px;
    text-align: center
}

.dpgwx-clock .box b {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--c-cta);
    font-variant-numeric: tabular-nums;
    line-height: 1
}

.dpgwx-clock .box small {
    font-size: 10px;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 1px
}

/* ====== Beneficios grid ====== */
.dpgwx-grid {
    display: grid;
    gap: 18px
}

.dpgwx-grid.g3 {
    grid-template-columns: repeat(3, 1fr)
}

.dpgwx-grid.g4 {
    grid-template-columns: repeat(4, 1fr)
}

.dpgwx-card {
    background: var(--glass);
    border: 1px solid var(--glass-bd);
    border-radius: var(--radius);
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden
}

.dpgwx-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, .5);
    box-shadow: 0 18px 40px rgba(6, 182, 212, .18)
}

.dpgwx-card .ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .25), rgba(6, 182, 212, .25));
    border: 1px solid var(--glass-bd)
}

.dpgwx-card .ic svg {
    width: 26px;
    height: 26px;
    stroke: var(--c-cyan)
}

.dpgwx-card h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px
}

.dpgwx-card p {
    color: var(--c-muted);
    font-size: 14px
}

/* ====== Specs como beneficios ====== */
.dpgwx-spec {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--glass);
    border: 1px solid var(--glass-bd);
    border-radius: 14px;
    padding: 16px 18px
}

.dpgwx-spec .chk {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(14, 238, 0, .15);
    color: var(--c-cta);
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-top: 2px
}

.dpgwx-spec h4 {
    font-size: 15.5px;
    font-weight: 800
}

.dpgwx-spec p {
    color: var(--c-muted);
    font-size: 13.5px
}

/* ====== Video ====== */
.dpgwx-video {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-bd);
    aspect-ratio: 16/9;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5)
}

.dpgwx-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block
}

.dpgwx-video-ph {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, .4), rgba(6, 182, 212, .4))
}

.dpgwx-video-ph .play {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--c-cta);
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    color: #062b00;
    box-shadow: 0 0 0 0 rgba(14, 238, 0, .6);
    animation: dpgwx-pulse 2s infinite
}

.dpgwx-video-ph small {
    color: #fff;
    font-weight: 700
}

/* ====== Carrusel ====== */
.dpgwx-carousel {
    position: relative
}

.dpgwx-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 2px 16px;
    scrollbar-width: none
}

.dpgwx-track::-webkit-scrollbar {
    display: none
}

.dpgwx-slide {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: center;
    background: var(--glass);
    border: 1px solid var(--glass-bd);
    border-radius: var(--radius);
    overflow: hidden
}

.dpgwx-slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #0c1224
}

.dpgwx-carousel .nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px
}

.dpgwx-carousel .nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-bd);
    background: var(--glass);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background .2s
}

.dpgwx-carousel .nav button:hover {
    background: var(--c-violet)
}

/* ====== Oferta ====== */
.dpgwx-offer {
    background: linear-gradient(160deg, rgba(124, 58, 237, .18), rgba(6, 182, 212, .10));
    border: 1px solid var(--glass-bd);
    border-radius: 26px;
    padding: 36px;
    position: relative;
    overflow: hidden
}

.dpgwx-offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center
}

.dpgwx-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    margin: 8px 0 4px
}

.dpgwx-price .old {
    color: var(--c-muted);
    text-decoration: line-through;
    font-size: 22px
}

.dpgwx-price .new {
    color: var(--c-cta);
    font-weight: 900;
    font-size: clamp(40px, 7vw, 60px);
    line-height: 1
}

.dpgwx-save {
    display: inline-block;
    background: var(--c-cta);
    color: #062b00;
    font-weight: 800;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 14px
}

.dpgwx-includes {
    list-style: none;
    margin: 14px 0 22px
}

.dpgwx-includes li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 7px 0;
    font-size: 15px;
    color: #dbe3fb
}

.dpgwx-includes li::before {
    content: "✔";
    color: var(--c-cta);
    font-weight: 900
}

.dpgwx-offer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px
}

/* ====== Testimonios ====== */
.dpgwx-testi {
    background: var(--glass);
    border: 1px solid var(--glass-bd);
    border-radius: var(--radius);
    padding: 24px;
    width: 330px;
    flex: 0 0 auto;
    scroll-snap-align: center
}

.dpgwx-testi .s {
    color: #FFC53D;
    letter-spacing: 2px;
    margin-bottom: 8px
}

.dpgwx-testi p {
    font-size: 14.5px;
    color: #dbe3fb;
    margin-bottom: 14px
}

.dpgwx-testi .who {
    display: flex;
    align-items: center;
    gap: 10px
}

.dpgwx-testi .av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-violet), var(--c-cyan));
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff
}

.dpgwx-testi .who b {
    font-size: 14px
}

.dpgwx-testi .who small {
    color: var(--c-muted);
    font-size: 12px;
    display: block
}

/* ====== Confianza ====== */
.dpgwx-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.dpgwx-trust .t {
    text-align: center;
    background: var(--glass);
    border: 1px solid var(--glass-bd);
    border-radius: var(--radius);
    padding: 22px 14px
}

.dpgwx-trust .t .ic {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(14, 238, 0, .12);
    color: var(--c-cta)
}

.dpgwx-trust .t .ic svg {
    width: 26px;
    height: 26px;
    stroke: var(--c-cta)
}

.dpgwx-trust .t b {
    font-size: 14.5px;
    display: block
}

.dpgwx-trust .t small {
    color: var(--c-muted);
    font-size: 12.5px
}

/* ====== FAQ ====== */
.dpgwx-faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-bd);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden
}

.dpgwx-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

.dpgwx-faq-q .pm {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--glass);
    display: grid;
    place-items: center;
    transition: transform .25s;
    color: var(--c-cyan);
    font-size: 18px
}

.dpgwx-faq-item.open .pm {
    transform: rotate(45deg);
    background: var(--c-cyan);
    color: #062b00
}

.dpgwx-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.dpgwx-faq-a p {
    padding: 0 20px 18px;
    color: var(--c-muted);
    font-size: 14.5px
}

/* ====== Quiénes somos ====== */
.dpgwx-about {
    background: linear-gradient(160deg, var(--c-bg2), rgba(124, 58, 237, .10));
    border: 1px solid var(--glass-bd);
    border-radius: 26px;
    padding: 38px;
    text-align: center
}

.dpgwx-about .logo {
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 8px
}

.dpgwx-about p {
    color: #cdd6f2;
    max-width: 760px;
    margin: 0 auto 8px;
    font-size: clamp(13px, 3vw, 15.5px)
}

.dpgwx-values {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px
}

.dpgwx-values span {
    background: var(--glass);
    border: 1px solid var(--glass-bd);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700
}

/* ====== CTA final ====== */
.dpgwx-final {
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, .25), rgba(6, 182, 212, .18));
    border: 1px solid var(--glass-bd);
    border-radius: 26px;
    padding: 48px 28px
}

/* ====== Footer ====== */
.dpgwx-footer {
    padding: 30px 0;
    text-align: center;
    color: var(--c-muted);
    font-size: 13px;
    border-top: 1px solid var(--glass-bd)
}

/* ====== Sticky CTA móvil ====== */
.dpgwx-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: none;
    background: rgba(7, 11, 22, .92);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-bd);
    padding: 10px 14px;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.dpgwx-sticky .p b {
    color: var(--c-cta);
    font-size: 19px;
    font-weight: 900
}

.dpgwx-sticky .p small {
    display: block;
    color: var(--c-muted);
    font-size: 11px;
    text-decoration: line-through
}

.dpgwx-sticky .dpgwx-cta {
    padding: 13px 22px;
    font-size: 15px;
    animation: dpgwx-blink 1.4s ease-in-out infinite
}

/* ====== Animaciones de entrada ====== */
.dpgwx-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease
}

.dpgwx-reveal.in {
    opacity: 1;
    transform: none
}

/* ====== RESPONSIVE ====== */
@media(max-width:900px) {
    .dpgwx-hero-grid {
        grid-template-columns: 1fr;
        gap: 26px
    }

    .dpgwx-hero-img {
        order: -1;
        max-width: 440px;
        margin: 0 auto
    }

    .dpgwx-countbar {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 14px;
    }

    .dpgwx-grid.g4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .dpgwx-grid.g3 {
        grid-template-columns: repeat(2, 1fr)
    }

    .dpgwx-offer-grid {
        grid-template-columns: 1fr
    }

    .dpgwx-trust {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:560px) {
    .dpgwx-section {
        padding: 46px 0
    }

    .dpgwx-grid.g4,
    .dpgwx-grid.g3 {
        grid-template-columns: 1fr
    }

    .dpgwx-grid.g3 .dpgwx-card:nth-child(n+4) {
        display: none;
    }

    .dpgwx-grid.g3 .dpgwx-spec:nth-child(n+5) {
        display: none;
    }

    .dpgwx-offer {
        padding: 24px
    }

    .dpgwx-about {
        padding: 18px
    }

    .dpgwx-clock .box {
        min-width: 56px
    }

    .dpgwx-clock .box b {
        font-size: 24px
    }

    .dpgwx-sticky {
        display: flex
    }

    .dpgwx-final {
        padding: 36px 18px
    }
}

/* ====== Modal de checkout (standalone) ====== */
.dpgwx-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.dpgwx-modal.is-open {
    display: block;
}

.dpgwx-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 16, .8);
    backdrop-filter: blur(4px);
}

.dpgwx-modal__dialog {
    position: absolute;
    inset: 0;
    margin: auto;
    width: min(960px, 96vw);
    height: min(92vh, 900px);
    background: transparent;
    animation: dpgwx-modal-in .22s ease;
}

/* iframe transparente: solo se ve la tarjeta del checkout sobre la landing atenuada */
.dpgwx-modal__frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: transparent;
}

@keyframes dpgwx-modal-in {
    from {
        opacity: 0;
        transform: scale(.98)
    }

    to {
        opacity: 1;
        transform: none
    }
}

body.dpgwx-modal-open {
    overflow: hidden;
}

@media(max-width:560px) {
    .dpgwx-modal__dialog {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
}