:root {
    --bg: #0b0d12;
    --card: rgba(17, 21, 34, .72);
    --muted: #aab3c5;
    --text: #eaf0ff;
    --line: rgba(255, 255, 255, .12);
    --brand: #7c5cff;
    --wa: #18c37e;
    --warn: #ffcc66;
    --shadow: 0 18px 55px rgba(0, 0, 0, .55);
    --r: 18px;
    --max: 1040px;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    background:
        radial-gradient(900px 650px at 10% 10%, rgba(124, 92, 255, .22), transparent 60%),
        radial-gradient(700px 520px at 90% 20%, rgba(24, 195, 126, .14), transparent 60%),
        var(--bg);
    color: var(--text);
    line-height: 1.34;
}

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

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 16px 14px 96px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(17, 21, 34, .55);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    /* mismos bordes suaves */
    overflow: hidden;
    /* CLAVE para recortar el PNG */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    /* por si tu PNG tiene transparencia */
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* llena el cuadro */
    display: block;
}


.brand b {
    letter-spacing: -.2px;
    font-weight: 1000
}

.brand small {
    display: block;
    color: var(--muted);
    font-weight: 700;
    margin-top: 2px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .06);
    font-weight: 950;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.btn:active {
    transform: scale(.99)
}

.btnPrimary {
    background: linear-gradient(135deg, rgba(124, 92, 255, .95), rgba(124, 92, 255, .6));
    border-color: rgba(124, 92, 255, .35);
    box-shadow: 0 14px 34px rgba(124, 92, 255, .18);
}

.btnWA {
    background: linear-gradient(135deg, rgba(24, 195, 126, .95), rgba(24, 195, 126, .65));
    border-color: rgba(24, 195, 126, .35);
    box-shadow: 0 14px 34px rgba(24, 195, 126, .14);
}

.card {
    margin-top: 12px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--card);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.pad {
    padding: 16px;
}

h1 {
    margin: 10px 0 10px;
    font-size: clamp(26px, 5.6vw, 48px);
    line-height: 1.02;
    letter-spacing: -.9px;
}

.sub {
    margin: 0 0 12px;
    color: var(--muted);
    font-weight: 750;
    font-size: 15px;
    max-width: 64ch;
}

/* PROMINENT PRICING + COUNTDOWN */
.pricingHero {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.priceCard {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    background: rgba(0, 0, 0, .18);
    padding: 14px;
    position: relative;
    overflow: hidden;
}

.priceCard::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(700px 380px at 10% 10%, rgba(124, 92, 255, .18), transparent 55%),
        radial-gradient(700px 380px at 90% 20%, rgba(24, 195, 126, .12), transparent 55%);
    pointer-events: none;
}

.priceTop {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04);
    font-weight: 950;
    font-size: 12px;
    color: #dbe4ff;
    white-space: nowrap;
}

.badge.warn {
    border-color: rgba(255, 204, 102, .35);
    background: rgba(255, 204, 102, .10);
    color: #ffe8b8;
}

.countdown {
    font-variant-numeric: tabular-nums;
    font-weight: 1000;
    letter-spacing: -.2px;
}

.priceGrid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.priceBox {
    border: 1px dashed rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(0, 0, 0, .16);
    padding: 12px;
}

.priceLabel {
    color: var(--muted);
    font-weight: 900;
    font-size: 12px;
    margin-bottom: 6px;
}

.priceValue {
    font-size: 22px;
    font-weight: 1000;
    letter-spacing: -.4px;
}

.priceValue small {
    font-size: 12px;
    opacity: .85;
    font-weight: 900;
}

.seatsRow {
    position: relative;
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.seatsLine {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.seatsBig {
    font-weight: 1000;
    letter-spacing: -.4px;
    font-size: 15px;
}

.progressWrap {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(0, 0, 0, .16);
    padding: 6px;
}

.progress {
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(24, 195, 126, .95), rgba(124, 92, 255, .75));
    width: 30%;
}

.hint {
    color: var(--muted);
    font-weight: 750;
    font-size: 13px;
}

/* Chips */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px
}

.chip {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    font-weight: 950;
    color: #dbe4ff;
}

.pulse {
    position: relative
}

.pulse::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 1px solid rgba(24, 195, 126, .35);
    opacity: 0;
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(.98);
        opacity: 0
    }

    40% {
        opacity: .6
    }

    100% {
        transform: scale(1.06);
        opacity: 0
    }
}

/* Demo gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.shot {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(0, 0, 0, .18);
    overflow: hidden;
    position: relative;
    min-height: 130px;
}

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

.cap {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(8px);
    font-weight: 950;
    font-size: 12px;
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px
}

.mini {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(0, 0, 0, .18);
    padding: 14px;
}

.mini b {
    display: block;
    margin-bottom: 6px;
    letter-spacing: -.2px;
    font-weight: 1000
}

.mini p {
    margin: 0;
    color: var(--muted);
    font-weight: 750;
    font-size: 14px
}

/* Speakers */
.speakers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
}

.speaker {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(0, 0, 0, .18);
    padding: 14px;
}

.avatar {
    width: 144px;
    height: 144px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    flex: 0 0 auto;
}

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

.speaker b {
    display: block;
    font-weight: 1000;
    letter-spacing: -.2px
}

.role {
    margin-top: 4px;
    color: var(--muted);
    font-weight: 850;
    font-size: 13px
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px
}

.tag {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    font-weight: 950;
    font-size: 12px;
    color: #dbe4ff;
}

/* FAQ */
details {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .03);
    overflow: hidden;
}

details+details {
    margin-top: 10px
}

summary {
    cursor: pointer;
    list-style: none;
    padding: 14px 14px;
    font-weight: 1000;
    color: #dbe4ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

summary::-webkit-details-marker {
    display: none
}

.content {
    padding: 0 14px 14px;
    color: var(--muted);
    font-weight: 800;
    font-size: 14px
}

/* Bottom CTA */
.bottomCta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 13, 18, .82);
    border-top: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    padding: 10px 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.bottomCta .btn {
    flex: 1;
    max-width: 520px
}

.bottomCta .btnSecondary {
    max-width: 220px
}

@media (min-width: 860px) {
    .wrap {
        padding-bottom: 40px;
    }

    .bottomCta {
        display: none;
    }

    .grid2 {
        grid-template-columns: 1fr 1fr;
    }

    .gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    .speakers {
        grid-template-columns: 1fr 1fr;
    }

    .pricingHero {
        grid-template-columns: 1.25fr .75fr;
        align-items: stretch;
    }

    .priceGrid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   FLOW SECTION (PRO)
================================ */
.flowBadge {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    font-weight: 950;
    font-size: 12px;
    color: #dbe4ff;
}

.flowGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
}

.flowCard {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(0, 0, 0, .18);
    padding: 14px;
    overflow: hidden;
    position: relative;
    transition: transform .18s ease, border-color .18s ease;
}

.flowCard:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .18);
}

.flowCardTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.flowTitle {
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 0;
}

.flowIcon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .12);
    background:
        radial-gradient(240px 180px at 20% 20%, rgba(124, 92, 255, .18), transparent 60%),
        radial-gradient(240px 180px at 80% 30%, rgba(24, 195, 126, .12), transparent 60%),
        rgba(255, 255, 255, .04);
    font-size: 18px;
    flex: 0 0 auto;
}

.flowName {
    font-weight: 1000;
    letter-spacing: -.2px;
    font-size: 15px;
}

.flowMeta {
    color: var(--muted);
    font-weight: 800;
    font-size: 12.5px;
    margin-top: 2px;
}

.flowTag {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(124, 92, 255, .25);
    background: rgba(124, 92, 255, .10);
    color: #e9e4ff;
    font-weight: 950;
    font-size: 12px;
    white-space: nowrap;
}

.flowDiagram {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.node {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    font-weight: 950;
    font-size: 12px;
    color: #dbe4ff;
}

.nodePrimary {
    border-color: rgba(24, 195, 126, .35);
    background: rgba(24, 195, 126, .10);
}

.nodeSuccess {
    border-color: rgba(124, 92, 255, .35);
    background: rgba(124, 92, 255, .10);
}

.arrow {
    color: rgba(255, 255, 255, .5);
    font-weight: 1000;
}

.flowBullets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.flowBullets span {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
    color: #dbe4ff;
    font-weight: 900;
    font-size: 12px;
}

.flowMedia {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(0, 0, 0, .14);
    overflow: hidden;
    margin-top: 12px;
    position: relative;
    min-height: 160px;
}

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

.flowCap {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 9px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(8px);
    font-weight: 950;
    font-size: 12px;
}

.flowCTA {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

@media (min-width: 860px) {
    .flowGrid {
        grid-template-columns: 1fr 1fr;
    }
}
