/* =====================================================
   KENNY COACH V6 — UPGRADE: GALLERY + PROGRAMS + OFFERS
   ===================================================== */

/* ===========================
   GALERÍA MASONRY PREMIUM
   =========================== */

.kc-gallery3-section {
    background: #000;
    padding: 80px 0 60px;
}
.kc-gallery3-hero {
    text-align: center;
    padding: 0 20px 50px;
}
.kc-gallery3-eyebrow {
    display: inline-block;
    color: var(--kc-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 14px;
}
.kc-gallery3-title {
    color: #fff;
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 12px;
    line-height: 1.1;
}
.kc-gallery3-title span { color: var(--kc-gold); }
.kc-gallery3-sub {
    color: #666;
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* Filtros de categoría */
.kc-gal3-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 0 20px;
}
.kc-gal3-filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: #888;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.kc-gal3-filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--kc-gold), #e8c84a);
    opacity: 0;
    transition: opacity 0.25s;
    z-index: -1;
    border-radius: 30px;
}
.kc-gal3-filter-btn:hover {
    border-color: var(--kc-gold);
    color: var(--kc-gold);
}
.kc-gal3-filter-btn.active {
    background: var(--kc-gold);
    border-color: var(--kc-gold);
    color: #000;
    font-weight: 800;
    box-shadow: 0 4px 18px rgba(201,162,39,0.35);
}

/* Grid Masonry */
.kc-gal3-wrap {
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.kc-gal3-grid {
    columns: 4 260px;
    gap: 14px;
}
@media (max-width: 1199px) { .kc-gal3-grid { columns: 3 220px; } }
@media (max-width: 767px)  { .kc-gal3-grid { columns: 2 160px; gap: 10px; } }
@media (max-width: 480px)  { .kc-gal3-grid { columns: 2 140px; gap: 8px; } }

/* Item de galería */
.kc-gal3-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: gal3ItemIn 0.45s ease forwards;
}
@media (max-width: 767px) { .kc-gal3-item { margin-bottom: 10px; border-radius: 10px; } }
@media (max-width: 480px) { .kc-gal3-item { margin-bottom: 8px; border-radius: 8px; } }

@keyframes gal3ItemIn {
    to { opacity: 1; transform: translateY(0); }
}
.kc-gal3-item:nth-child(1)  { animation-delay: .05s; }
.kc-gal3-item:nth-child(2)  { animation-delay: .10s; }
.kc-gal3-item:nth-child(3)  { animation-delay: .15s; }
.kc-gal3-item:nth-child(4)  { animation-delay: .20s; }
.kc-gal3-item:nth-child(5)  { animation-delay: .25s; }
.kc-gal3-item:nth-child(6)  { animation-delay: .30s; }
.kc-gal3-item:nth-child(7)  { animation-delay: .35s; }
.kc-gal3-item:nth-child(8)  { animation-delay: .40s; }
.kc-gal3-item:nth-child(9)  { animation-delay: .45s; }
.kc-gal3-item:nth-child(10) { animation-delay: .50s; }
.kc-gal3-item:nth-child(11) { animation-delay: .55s; }

.kc-gal3-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.45s cubic-bezier(0.25,0.8,0.25,1);
}
.kc-gal3-item:hover img {
    transform: scale(1.06);
}
.kc-gal3-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.88) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 16px;
}
.kc-gal3-item:hover .kc-gal3-item-overlay {
    opacity: 1;
}
.kc-gal3-item-cat {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--kc-gold);
    margin-bottom: 4px;
}
.kc-gal3-item-caption {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}
.kc-gal3-item-zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(201,162,39,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 13px;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s ease;
}
.kc-gal3-item:hover .kc-gal3-item-zoom {
    opacity: 1;
    transform: scale(1);
}

.kc-gal3-item video.kc-gal3-video-thumb {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    background: #000;
    transition: transform 0.45s cubic-bezier(0.25,0.8,0.25,1);
}
.kc-gal3-item:hover video.kc-gal3-video-thumb {
    transform: scale(1.06);
}
.kc-gal3-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(62,155,92,0.85);
    border: 2px solid rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 4px 18px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}
.kc-gal3-play-badge i { margin-left: 3px; }
.kc-gal3-item:hover .kc-gal3-play-badge {
    transform: translate(-50%, -50%) scale(1.12);
}

/* Etiqueta de categoría en la imagen */
.kc-gal3-cat-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    z-index: 2;
}
.kc-gal3-cat-tag--personal { background: rgba(201,162,39,0.2); color: var(--kc-gold); border: 1px solid rgba(201,162,39,0.4); }
.kc-gal3-cat-tag--competicion { background: rgba(220,50,50,0.25); color: #ff7070; border: 1px solid rgba(220,50,50,0.4); }
.kc-gal3-cat-tag--clientes { background: rgba(62,155,92,0.2); color: #6be09a; border: 1px solid rgba(62,155,92,0.35); }
.kc-gal3-cat-tag--entrenando { background: rgba(46,92,138,0.25); color: #7ab4e8; border: 1px solid rgba(46,92,138,0.4); }

/* Filtro de hidden items */
.kc-gal3-item.kc-gal3-hidden {
    display: none;
}

/* LIGHTBOX personalizado */
.kc-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.kc-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.kc-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kc-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.92);
    transition: transform 0.3s ease;
}
.kc-lightbox-overlay.active .kc-lightbox-img {
    transform: scale(1);
}
.kc-lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 100001;
}
.kc-lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.kc-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 100001;
}
.kc-lightbox-nav:hover { background: rgba(201,162,39,0.3); border-color: var(--kc-gold); }
.kc-lightbox-prev { left: 16px; }
.kc-lightbox-next { right: 16px; }
.kc-lightbox-caption {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ccc;
    font-size: 13px;
    z-index: 100001;
    white-space: nowrap;
}
.kc-lightbox-caption span { color: var(--kc-gold); font-weight: 700; }
@media (max-width: 600px) {
    .kc-lightbox-nav { display: none; }
    .kc-lightbox-img { max-height: 80vh; }
}

/* ===========================
   PROGRAMAS COMPLETOS (MASA / GRASA / RECOMPOSICIÓN)
   Diseño diferenciado de Performance Series
   =========================== */

.kc-prog-section-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
    position: relative;
}
.kc-prog-section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--kc-gold);
}
.kc-prog-eyebrow {
    color: var(--kc-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 20px;
    display: block;
    line-height: 1.9;
}
.kc-prog-title {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    line-height: 1.15;
}
.kc-prog-subtitle {
    color: #666;
    font-size: 14px;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid de 3 programas principales */
.kc-prog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
@media (max-width: 991px) { .kc-prog-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; } }
@media (max-width: 575px)  { .kc-prog-grid { max-width: 100%; } }

/* Card base de programa */
.kc-prog-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1), box-shadow 0.4s ease;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.kc-prog-card:hover {
    transform: translateY(-10px);
}

/* Foto de fondo con parallax visual */
.kc-prog-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: transform 0.6s ease;
}
.kc-prog-card:hover .kc-prog-card-bg {
    transform: scale(1.06);
}

/* Overlay degradado por tipo */
.kc-prog-card-overlay {
    position: absolute;
    inset: 0;
}
/* Masa: naranja a negro */
.kc-prog-card--masa .kc-prog-card-overlay {
    background: linear-gradient(180deg,
        rgba(0,0,0,0.08) 0%,
        rgba(0,0,0,0.3) 35%,
        rgba(201,80,0,0.25) 55%,
        rgba(0,0,0,0.97) 100%);
}
.kc-prog-card--masa {
    box-shadow: 0 0 0 1px rgba(201,80,0,0.3), 0 15px 40px rgba(0,0,0,0.6);
}
.kc-prog-card--masa:hover {
    box-shadow: 0 0 0 1px rgba(201,80,0,0.6), 0 25px 60px rgba(201,80,0,0.2);
}
/* Grasa: azul eléctrico a negro */
.kc-prog-card--grasa .kc-prog-card-overlay {
    background: linear-gradient(180deg,
        rgba(0,0,0,0.08) 0%,
        rgba(0,0,0,0.3) 35%,
        rgba(20,80,180,0.3) 55%,
        rgba(0,0,0,0.97) 100%);
}
.kc-prog-card--grasa {
    box-shadow: 0 0 0 1px rgba(46,92,200,0.3), 0 15px 40px rgba(0,0,0,0.6);
}
.kc-prog-card--grasa:hover {
    box-shadow: 0 0 0 1px rgba(46,92,200,0.6), 0 25px 60px rgba(46,92,200,0.2);
}
/* Recomposición: dorado a negro */
.kc-prog-card--recomp .kc-prog-card-overlay {
    background: linear-gradient(180deg,
        rgba(0,0,0,0.08) 0%,
        rgba(0,0,0,0.3) 35%,
        rgba(150,110,0,0.3) 55%,
        rgba(0,0,0,0.97) 100%);
}
.kc-prog-card--recomp {
    box-shadow: 0 0 0 1px rgba(201,162,39,0.35), 0 15px 40px rgba(0,0,0,0.6);
}
.kc-prog-card--recomp:hover {
    box-shadow: 0 0 0 1px rgba(201,162,39,0.7), 0 25px 60px rgba(201,162,39,0.2);
}

/* Contenido del card */
.kc-prog-card-content {
    position: relative;
    z-index: 2;
    padding: 28px 26px;
}

/* Badge tipo programa */
.kc-prog-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
}
.kc-prog-card--masa .kc-prog-type-badge {
    background: rgba(201,80,0,0.25);
    border: 1px solid rgba(201,80,0,0.6);
    color: #ff8040;
}
.kc-prog-card--grasa .kc-prog-type-badge {
    background: rgba(46,92,200,0.25);
    border: 1px solid rgba(100,150,255,0.5);
    color: #7ab4ff;
}
.kc-prog-card--recomp .kc-prog-type-badge {
    background: rgba(201,162,39,0.2);
    border: 1px solid rgba(201,162,39,0.55);
    color: var(--kc-gold);
}

/* Nombre del programa */
.kc-prog-card-name {
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
/* Línea de acento bajo el título */
.kc-prog-card-name-line {
    display: block;
    height: 2px;
    width: 40px;
    margin: 10px 0 14px;
    border-radius: 2px;
    transition: width 0.4s ease;
}
.kc-prog-card:hover .kc-prog-card-name-line { width: 70px; }
.kc-prog-card--masa .kc-prog-card-name-line { background: #ff6020; }
.kc-prog-card--grasa .kc-prog-card-name-line { background: #4f8ce8; }
.kc-prog-card--recomp .kc-prog-card-name-line { background: var(--kc-gold); }

/* Descripción */
.kc-prog-card-desc {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Pills de características */
.kc-prog-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
}
.kc-prog-pill {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Precio y CTA */
.kc-prog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 18px;
    gap: 12px;
}
.kc-prog-price-block { line-height: 1.1; }
.kc-prog-price-crc {
    color: var(--kc-gold);
    font-size: 22px;
    font-weight: 800;
    display: block;
}
.kc-prog-price-usd {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 500;
}

/* Botón de acción por tipo */
.kc-prog-cta-btn {
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.kc-prog-card--masa .kc-prog-cta-btn {
    background: linear-gradient(135deg, #c83000, #ff5520);
    color: #fff;
    box-shadow: 0 4px 15px rgba(200,48,0,0.4);
}
.kc-prog-card--masa .kc-prog-cta-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(200,48,0,0.6);
}
.kc-prog-card--grasa .kc-prog-cta-btn {
    background: linear-gradient(135deg, #1e4fb0, #3d7fe0);
    color: #fff;
    box-shadow: 0 4px 15px rgba(30,79,176,0.4);
}
.kc-prog-card--grasa .kc-prog-cta-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(30,79,176,0.6);
}
.kc-prog-card--recomp .kc-prog-cta-btn {
    background: linear-gradient(135deg, #8a6800, #c9a227);
    color: #fff;
    box-shadow: 0 4px 15px rgba(138,104,0,0.4);
}
.kc-prog-card--recomp .kc-prog-cta-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(138,104,0,0.6);
}

/* Dificultad chips */
.kc-prog-difficulty {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}
.kc-prog-diff-dots {
    display: flex;
    gap: 4px;
}
.kc-prog-diff-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.kc-prog-diff-dot.filled { background: var(--kc-gold); }
.kc-prog-diff-label {
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
}

/* ===========================
   OFERTAS — DISEÑO PREMIUM V2
   =========================== */

.kc-deals-section {
    margin-top: 70px;
    position: relative;
}
.kc-deals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(201,162,39,0.5));
}
.kc-deals-header {
    text-align: center;
    padding-top: 60px;
    margin-bottom: 44px;
}
.kc-deals-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(90deg, rgba(201,162,39,0.15) 0%, rgba(201,162,39,0.08) 100%);
    border: 1px solid rgba(201,162,39,0.4);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.kc-deals-eyebrow i { color: var(--kc-gold); animation: kc-pulse-fire 1.5s ease-in-out infinite; }
@keyframes kc-pulse-fire {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
.kc-deals-title {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.kc-deals-title span { color: var(--kc-gold); }
.kc-deals-sub {
    color: #666;
    font-size: 14px;
}

/* Grid de ofertas */
.kc-deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 991px) { .kc-deals-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }

/* Card oferta */
.kc-deal-card {
    position: relative;
    background: #0e0e0e;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.kc-deal-card:hover {
    transform: translateY(-8px);
}

/* Borde de color según tipo */
.kc-deal-card--fire {
    border: 1px solid rgba(255,80,20,0.3);
    box-shadow: 0 0 30px rgba(255,80,20,0.07);
}
.kc-deal-card--fire:hover {
    border-color: rgba(255,80,20,0.65);
    box-shadow: 0 15px 40px rgba(255,80,20,0.18);
}
.kc-deal-card--star {
    border: 1px solid rgba(201,162,39,0.35);
    box-shadow: 0 0 30px rgba(201,162,39,0.07);
}
.kc-deal-card--star:hover {
    border-color: rgba(201,162,39,0.7);
    box-shadow: 0 15px 40px rgba(201,162,39,0.2);
}
.kc-deal-card--crown {
    border: 1px solid rgba(180,140,255,0.3);
    background: linear-gradient(160deg, #0e0e0e 60%, #100d18 100%);
    box-shadow: 0 0 30px rgba(140,90,255,0.07);
}
.kc-deal-card--crown:hover {
    border-color: rgba(180,140,255,0.65);
    box-shadow: 0 15px 40px rgba(140,90,255,0.18);
}

/* Franja de color superior */
.kc-deal-stripe {
    height: 4px;
    width: 100%;
}
.kc-deal-card--fire .kc-deal-stripe { background: linear-gradient(90deg, #c83000, #ff6020); }
.kc-deal-card--star .kc-deal-stripe { background: linear-gradient(90deg, #8a6800, #e8c84a); }
.kc-deal-card--crown .kc-deal-stripe { background: linear-gradient(90deg, #5a1fcc, #9b6dff); }

/* Body del deal */
.kc-deal-body {
    padding: 24px 24px 20px;
}

/* Badge urgencia */
.kc-deal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.kc-deal-card--fire .kc-deal-badge { background: rgba(255,80,20,0.15); color: #ff7040; border: 1px solid rgba(255,80,20,0.35); }
.kc-deal-card--star .kc-deal-badge { background: rgba(201,162,39,0.15); color: var(--kc-gold); border: 1px solid rgba(201,162,39,0.35); }
.kc-deal-card--crown .kc-deal-badge { background: rgba(140,90,255,0.15); color: #b080ff; border: 1px solid rgba(140,90,255,0.35); }

/* Nombre del pack */
.kc-deal-name {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}
/* Descripción del pack */
.kc-deal-desc {
    color: #666;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Ítems incluidos */
.kc-deal-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.kc-deal-includes li {
    color: #aaa;
    font-size: 12px;
    padding: 5px 0 5px 20px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.kc-deal-includes li:last-child { border-bottom: none; }
.kc-deal-includes li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 9px;
    position: absolute;
    left: 0;
    top: 7px;
}
.kc-deal-card--fire .kc-deal-includes li::before { color: #ff6020; }
.kc-deal-card--star .kc-deal-includes li::before { color: var(--kc-gold); }
.kc-deal-card--crown .kc-deal-includes li::before { color: #9b6dff; }

/* Precio del deal */
.kc-deal-pricing {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.kc-deal-old-price {
    color: #444;
    font-size: 14px;
    text-decoration: line-through;
    font-weight: 600;
    line-height: 1;
}
.kc-deal-new-price {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}
.kc-deal-card--fire .kc-deal-new-price { color: #ff6020; }
.kc-deal-card--star .kc-deal-new-price { color: var(--kc-gold); }
.kc-deal-card--crown .kc-deal-new-price { color: #b080ff; }

.kc-deal-new-price small {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.8;
}
/* Ahorro badge */
.kc-deal-saving {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    align-self: flex-end;
    margin-bottom: 4px;
}
.kc-deal-card--fire .kc-deal-saving { background: rgba(255,80,20,0.15); color: #ff7040; }
.kc-deal-card--star .kc-deal-saving { background: rgba(201,162,39,0.15); color: var(--kc-gold); }
.kc-deal-card--crown .kc-deal-saving { background: rgba(140,90,255,0.15); color: #b080ff; }

/* CTA button del deal */
.kc-deal-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.kc-deal-card--fire .kc-deal-btn {
    background: linear-gradient(90deg, #b82500, #ff4400);
    color: #fff;
    box-shadow: 0 4px 15px rgba(180,37,0,0.35);
}
.kc-deal-card--fire .kc-deal-btn:hover { box-shadow: 0 6px 20px rgba(180,37,0,0.55); transform: scale(1.02); }
.kc-deal-card--star .kc-deal-btn {
    background: linear-gradient(90deg, #8a6800, #c9a227);
    color: #fff;
    box-shadow: 0 4px 15px rgba(138,104,0,0.35);
}
.kc-deal-card--star .kc-deal-btn:hover { box-shadow: 0 6px 20px rgba(138,104,0,0.55); transform: scale(1.02); }
.kc-deal-card--crown .kc-deal-btn {
    background: linear-gradient(90deg, #4a1aaa, #8a5ce0);
    color: #fff;
    box-shadow: 0 4px 15px rgba(74,26,170,0.35);
}
.kc-deal-card--crown .kc-deal-btn:hover { box-shadow: 0 6px 20px rgba(74,26,170,0.55); transform: scale(1.02); }

/* Countdown timer look */
.kc-deal-timer {
    text-align: center;
    margin-bottom: 14px;
    padding: 8px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
}
.kc-deal-timer-label {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}
.kc-deal-timer-val {
    color: #888;
    font-size: 11px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.kc-deal-card--fire .kc-deal-timer-val { color: #cc4000; }

/* ===========================
   ANUNCIO: PROMO CON CONTADOR (Programas Completos)
   =========================== */
.kc-prog-promo-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px 32px;
    max-width: 960px;
    margin: 0 auto 34px;
    padding: 26px 34px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 12% 20%, rgba(201,162,39,0.14), transparent 55%),
        radial-gradient(circle at 88% 80%, rgba(62,155,92,0.14), transparent 55%),
        #0d0d0d;
    border: 1px solid rgba(201,162,39,0.35);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.kc-prog-promo-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kc-gold), var(--kc-green), var(--kc-gold));
    background-size: 200% 100%;
    animation: kc-promo-shimmer 4s linear infinite;
}
.kc-prog-promo-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,162,39,0.08), transparent 70%);
}
@keyframes kc-promo-shimmer {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.kc-prog-promo-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.kc-prog-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--kc-gold);
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(201,162,39,0.35);
}
.kc-prog-promo-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1a1a1a;
    animation: kc-promo-pulse-dot 1.4s ease-in-out infinite;
}
@keyframes kc-promo-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .3; transform: scale(0.7); }
}
.kc-prog-promo-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.kc-prog-promo-percent {
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
    background: linear-gradient(120deg, var(--kc-gold), #f3dd8a, var(--kc-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(201,162,39,0.25);
}
.kc-prog-promo-text {
    color: #b9b9b9;
    font-size: 13.5px;
    line-height: 1.5;
    max-width: 260px;
}

.kc-prog-promo-divider {
    width: 1px;
    align-self: stretch;
    min-height: 70px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
}

.kc-prog-promo-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.kc-prog-promo-countdown-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8fae99;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.kc-prog-promo-countdown-label i { color: var(--kc-green); animation: kc-cd-tick 2s ease-in-out infinite; }
.kc-prog-promo-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(62,155,92,0.06);
    border: 1px solid rgba(62,155,92,0.4);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 6px 20px rgba(62,155,92,0.08);
}
.kc-prog-cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, rgba(62,155,92,0.24), rgba(62,155,92,0.05));
    border: 1px solid rgba(62,155,92,0.55);
    border-radius: 10px;
    min-width: 58px;
    padding: 8px 6px 7px;
    box-shadow: 0 2px 10px rgba(62,155,92,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}
.kc-prog-cd-unit::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--kc-green), transparent);
    opacity: .8;
}
.kc-prog-cd-num {
    color: var(--kc-green);
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 16px rgba(62,155,92,0.55);
}
.kc-prog-cd-label {
    color: #9db8a6;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 4px;
}
.kc-prog-cd-sep {
    color: var(--kc-green);
    font-size: 18px;
    font-weight: 700;
    animation: kc-cd-blink 1s steps(1) infinite;
}
@keyframes kc-cd-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: .25; }
}
@keyframes kc-cd-tick {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
@media (max-width: 767px) {
    .kc-prog-promo-banner { flex-direction: column; padding: 24px 20px; gap: 20px; }
    .kc-prog-promo-divider { width: 60%; min-height: 1px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); }
}
@media (max-width: 575px) {
    .kc-prog-promo-banner { padding: 20px 16px; border-radius: 14px; }
    .kc-prog-promo-percent { font-size: 28px; }
    .kc-prog-promo-countdown { padding: 8px 10px; gap: 6px; }
    .kc-prog-cd-unit { min-width: 46px; padding: 6px 4px 5px; }
    .kc-prog-cd-num { font-size: 18px; }
}

/* ===========================
   RECORDATORIO POR CORREO (botón + modal)
   =========================== */
.kc-prog-promo-remind {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: 4px;
}
.kc-remind-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--kc-gold);
    border: 1px solid rgba(201,162,39,0.5);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease;
}
.kc-remind-btn i { animation: kc-remind-bell 2.4s ease-in-out infinite; }
.kc-remind-btn:hover {
    background: var(--kc-gold);
    color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(201,162,39,0.3);
    transform: translateY(-1px);
}
@keyframes kc-remind-bell {
    0%, 100% { transform: rotate(0); }
    5%, 15% { transform: rotate(-12deg); }
    10%, 20% { transform: rotate(12deg); }
    25% { transform: rotate(0); }
}

/* Overlay + Modal */
.kc-remind-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.kc-remind-overlay.kc-remind-open {
    display: flex;
}
.kc-remind-modal {
    position: relative;
    width: 100%;
    max-width: 420px;
    background:
        radial-gradient(circle at 15% 10%, rgba(201,162,39,0.14), transparent 55%),
        radial-gradient(circle at 85% 90%, rgba(62,155,92,0.14), transparent 55%),
        #0d0d0d;
    border: 1px solid rgba(201,162,39,0.35);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
    padding: 34px 28px 28px;
    animation: kc-remind-pop .25s ease;
}
@keyframes kc-remind-pop {
    from { opacity: 0; transform: translateY(10px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.kc-remind-close {
    position: absolute;
    top: 12px; right: 14px;
    background: transparent;
    border: none;
    color: #999;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: color .2s ease;
}
.kc-remind-close:hover { color: var(--kc-gold); }
.kc-remind-body { text-align: center; }
.kc-remind-icon {
    width: 54px; height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201,162,39,0.12);
    border: 1px solid rgba(201,162,39,0.4);
    color: var(--kc-gold);
    font-size: 22px;
}
.kc-remind-icon--ok {
    background: rgba(62,155,92,0.14);
    border-color: rgba(62,155,92,0.5);
    color: var(--kc-green);
}
.kc-remind-title {
    color: #f2f2f2;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
}
.kc-remind-sub {
    color: #b9b9b9;
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 22px;
}
.kc-remind-field {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
    transition: border-color .2s ease;
}
.kc-remind-field:focus-within { border-color: var(--kc-gold); }
.kc-remind-field i { color: var(--kc-gold); font-size: 14px; }
.kc-remind-field input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #f2f2f2;
    font-size: 14px;
}
.kc-remind-field input::placeholder { color: #777; }
.kc-remind-hp { position: absolute; left: -9999px; }
.kc-remind-error {
    display: none;
    color: #e0574f;
    font-size: 12px;
    text-align: left;
    margin: 4px 2px 10px;
}
.kc-remind-error.kc-remind-error-show { display: block; }
.kc-remind-submit {
    width: 100%;
    background: linear-gradient(120deg, var(--kc-gold), #e8c84a);
    color: #1a1a1a;
    border: none;
    padding: 13px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    cursor: pointer;
    margin-top: 6px;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.kc-remind-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(201,162,39,0.35); }
.kc-remind-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
@media (max-width: 575px) {
    .kc-remind-modal { padding: 28px 20px 22px; }
}
