
/* =========================================================
   Carrusel de ganadores + resumen premium
   Archivo independiente para no romper lo existente
========================================================= */
.campaign-winners-section {
    padding: 6px 0 34px;
}

.winners-shell {
    position: relative;
    border-radius: 32px;
    padding: 26px;
    background:
        radial-gradient(circle at top right, rgba(24,211,211,.16), transparent 30%),
        linear-gradient(135deg, rgba(7,26,61,.98), rgba(12,46,100,.96));
    border: 1px solid rgba(244,184,50,.35);
    box-shadow: 0 30px 70px rgba(7,26,61,.16);
    color: #fff;
    overflow: hidden;
}

.winners-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 24%, transparent 75%, rgba(255,255,255,.04));
    pointer-events: none;
}

.winners-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.winners-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 214, 106, .16);
    border: 1px solid rgba(255, 214, 106, .30);
    color: #ffe28d;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.winners-head h2 {
    margin: 14px 0 10px;
    font-family: var(--font-title);
    font-size: clamp(28px, 4vw, 46px);
    line-height: .96;
    letter-spacing: -.04em;
    color: #fff;
}

.winners-head p {
    max-width: 760px;
    margin: 0;
    color: rgba(232, 240, 255, .88);
    font-weight: 600;
}

.winners-head-badge {
    flex-shrink: 0;
    min-width: 140px;
    padding: 14px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.winners-head-badge strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    font-family: var(--font-title);
    color: #ffd86e;
}

.winners-head-badge span {
    display: block;
    margin-top: 6px;
    color: rgba(232,240,255,.82);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.winners-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.winners-track-wrap {
    overflow: hidden;
    width: 100%;
}

.winners-track {
    display: flex;
    transition: transform .42s ease;
}

.winner-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: minmax(290px, 380px) 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.10);
    opacity: .82;
    transform: scale(.985);
}

.winner-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.winner-slide.is-featured {
    border-color: rgba(255, 214, 106, .48);
    box-shadow: 0 18px 40px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,214,106,.08);
}

.winner-slide-media {
    position: relative;
}

.winner-photo-frame {
    position: relative;
    height: 280px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
    box-shadow: 0 24px 42px rgba(0,0,0,.22);
}

.winner-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.winner-photo-glow {
    position: absolute;
    inset: auto 18px -20px 18px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24,211,211,.35), rgba(244,184,50,.20), transparent 70%);
    filter: blur(12px);
}

.winner-slide-content h3 {
    margin: 12px 0 10px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: .95;
    letter-spacing: -.04em;
    font-family: var(--font-title);
    color: #fff;
}

.winner-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.winner-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #d8ebff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.winner-badge-main {
    background: linear-gradient(135deg, rgba(255,240,175,.26), rgba(246,197,86,.18));
    border-color: rgba(246,197,86,.42);
    color: #ffe187;
}

.winner-counter {
    color: rgba(216,235,255,.82);
    font-size: 13px;
    font-weight: 800;
}

.winner-prize-title {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    color: #ffe187;
    font-weight: 900;
}

.winner-slide-content p {
    margin: 0;
    color: rgba(232, 240, 255, .88);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 600;
}

.winner-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.winner-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff0af, #f6c556, #d99f27);
    color: #291b00;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(244,184,50,.18);
}

.winner-social-btn-alt {
    background: rgba(255,255,255,.10);
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: none;
}

.winners-nav {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: .2s;
}

.winners-nav:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.18);
}

.winners-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    position: relative;
    z-index: 2;
}

.winners-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.24);
    cursor: pointer;
}

.winners-dot.is-active {
    width: 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff0af, #f6c556, #d99f27);
}

.summary-box-premium {
    border-radius: 28px;
    padding: 22px;
    background: linear-gradient(180deg, #ffffff, #f6fbff);
    border: 1px solid #dce7f5;
    box-shadow: 0 24px 56px rgba(7,26,61,.08);
}

.summary-head {
    margin-bottom: 18px;
}

.summary-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1557ff;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.summary-head h2 {
    margin: 10px 0 6px;
    color: var(--navy);
    font-family: var(--font-title);
    font-size: 32px;
    line-height: 1;
}

.summary-head p,
.summary-note {
    margin: 0;
    color: #64748b;
    font-weight: 600;
    line-height: 1.6;
}

.summary-sheet {
    margin-top: 12px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #dce7f5;
    background: #fff;
}

.summary-box-premium .summary-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid #e7eff9;
}

.summary-box-premium .summary-line:last-child {
    border-bottom: 0;
}

.summary-box-premium .summary-line span {
    color: #64748b;
    font-weight: 700;
}

.summary-box-premium .summary-line strong {
    color: var(--navy);
    text-align: right;
}

.summary-total-card {
    margin-top: 16px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #edf5ff, #ffffff);
    border: 1px solid #dce7f5;
}

.summary-total-card > span {
    display: block;
    color: #64748b;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.summary-total-card .total {
    margin-top: 8px;
    color: #1557ff;
    font-family: var(--font-title);
    font-size: clamp(38px, 4vw, 54px);
    line-height: .95;
}

.summary-note {
    margin-top: 14px;
}

@media (max-width: 980px) {
    .winners-head {
        flex-direction: column;
        align-items: start;
    }

    .winner-slide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .campaign-winners-section {
        padding-bottom: 28px;
    }

    .winners-shell {
        padding: 18px;
        border-radius: 24px;
    }

    .winners-carousel {
        gap: 8px;
    }

    .winners-nav {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .winner-slide {
        padding: 16px;
        border-radius: 22px;
    }

    .winner-photo-frame {
        height: 220px;
    }

    .winner-slide-content h3 {
        font-size: 32px;
    }
}

@media (max-width: 560px) {
    .winners-carousel {
        display: block;
    }

    .winners-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
    }

    .winners-nav-prev { left: 10px; }
    .winners-nav-next { right: 10px; }

    .winner-slide {
        padding: 14px;
    }

    .summary-box-premium {
        padding: 18px;
    }

    .summary-head h2 {
        font-size: 28px;
    }
}


/* =========================================================
   Selector de método de pago
   No toca CSS global.
========================================================= */

.payment-choice-box {
    margin-top: 18px;
}

.payment-main-toggle {
    min-height: 52px;
    font-weight: 950;
}

.payment-methods-panel {
    display: none;
    margin-top: 16px;
    padding: 18px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(24,211,211,.10), transparent 34%),
        linear-gradient(180deg, #ffffff, #f7fbff);
    border: 1px solid #dce7f5;
    box-shadow: 0 18px 42px rgba(7,26,61,.08);
}

.payment-methods-panel.is-open {
    display: block;
}

.payment-methods-head {
    margin-bottom: 14px;
}

.payment-methods-head strong {
    display: block;
    color: var(--navy);
    font-family: var(--font-title);
    font-size: 24px;
    line-height: 1;
}

.payment-methods-head span {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-weight: 650;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.payment-method-card {
    appearance: none;
    width: 100%;
    min-height: 128px;
    padding: 18px;
    border-radius: 22px;
    text-align: left;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid #dce7f5;
    box-shadow: 0 12px 28px rgba(7,26,61,.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.payment-method-card:hover {
    transform: translateY(-2px);
    border-color: rgba(246,197,86,.55);
    box-shadow: 0 18px 36px rgba(7,26,61,.10);
}

.payment-method-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff0af, #f6c556, #d99f27);
    box-shadow: 0 10px 22px rgba(246,197,86,.20);
}

.payment-method-card strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
    font-weight: 950;
    line-height: 1.1;
}

.payment-method-card small {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-weight: 650;
    line-height: 1.45;
}

.payment-method-mp {
    background:
        radial-gradient(circle at 100% 0%, rgba(21,87,255,.08), transparent 34%),
        #ffffff;
}

.transfer-info-box {
    display: none;
    margin-top: 16px;
    padding: 18px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(246,197,86,.12), transparent 34%),
        linear-gradient(135deg, #071a3d, #0b2f6d);
    color: #ffffff;
    border: 1px solid rgba(246,197,86,.32);
    box-shadow: 0 18px 42px rgba(7,26,61,.16);
}

.transfer-info-box.is-open {
    display: block;
}

.transfer-info-head {
    margin-bottom: 14px;
}

.transfer-info-head strong {
    display: block;
    color: #ffffff;
    font-family: var(--font-title);
    font-size: 24px;
}

.transfer-info-head span {
    color: rgba(232,240,255,.82);
    font-weight: 650;
}

.transfer-data-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0;
}

.transfer-data-grid div {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.transfer-data-grid span {
    display: block;
    color: rgba(232,240,255,.72);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.transfer-data-grid strong {
    display: block;
    margin-top: 4px;
    color: #ffffff;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.transfer-info-box p {
    margin: 12px 0 16px;
    color: rgba(232,240,255,.84);
    font-weight: 650;
    line-height: 1.55;
}

@media (max-width: 640px) {
    .payment-methods-grid,
    .transfer-data-grid {
        grid-template-columns: 1fr;
    }
}
