/* ============================================
   CLÍNICA DE VENTAS - Cerradores Élite (Evento)
   Estética dorada/ámbar, elegante, masiva
   ============================================ */

/* --- Cursor glow naranja --- */
[data-program="clinica-ventas"] .cursor-glow {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.7) 0%, transparent 70%);
    opacity: 0.06;
}

/* ============================================
   HERO
   ============================================ */

.cv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.cv-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(255, 87, 34, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 80% 85%, rgba(198, 40, 40, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cv-hero__container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

/* Logo UNESCO en esquina inferior derecha del hero */
.cv-hero__unesco-corner {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    height: 55px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.3s;
    z-index: 2;
}

.cv-hero__unesco-corner:hover {
    opacity: 0.8;
}

.cv-hero__title {
    margin-bottom: 1.5rem;
}

.cv-hero__title-line {
    display: block;
    font-size: clamp(3.5rem, 14vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
    animation: cvReveal 0.8s ease forwards;
}

.cv-hero__title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.cv-hero__title-accent {
    color: var(--cv-gold);
    text-shadow:
        0 0 8px rgba(255, 107, 53, 0.4),
        0 0 20px rgba(255, 87, 34, 0.2);
}

@keyframes cvReveal {
    to { opacity: 1; transform: translateY(0); }
}

.cv-hero__subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: cvReveal 0.8s 0.5s ease forwards;
}

.cv-hero__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: cvReveal 0.8s 0.7s ease forwards;
}

.cv-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.15rem 2.75rem;
    background: var(--cv-gold);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    opacity: 0;
    animation: cvReveal 0.8s 0.9s ease forwards;
}

.cv-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.35);
    background: #e55a2b;
}

/* ============================================
   SECTIONS BASE
   ============================================ */

.cv-section {
    position: relative;
    padding: 7rem 0;
    background: var(--cv-dark);
}

.cv-section--alt {
    background: #050508;
}

.cv-section__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cv-section__label {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--cv-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.cv-section__title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.cv-section__tagline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 3.5rem;
    letter-spacing: 0.5px;
}

/* ============================================
   FEATURES (Filosofía)
   ============================================ */

.cv-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.cv-feature {
    padding: 2.5rem 2rem;
    background: var(--cv-card);
    border: 1px solid var(--cv-border);
    border-radius: 20px;
    transition: border-color 0.4s, transform 0.4s;
    position: relative;
    overflow: hidden;
}

.cv-feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--program-gradient);
    opacity: 0;
    transition: opacity 0.4s;
}

.cv-feature:hover {
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-4px);
}

.cv-feature:hover::after { opacity: 1; }

.cv-feature__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1.25rem;
}

.cv-feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cv-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}

/* ============================================
   GENERATIONS (Trayectoria)
   ============================================ */

.cv-generations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    text-align: left;
}

.cv-gen {
    padding: 3rem;
    background: var(--cv-card);
    border: 1px solid var(--cv-border);
    border-radius: 24px;
    transition: border-color 0.4s, transform 0.4s;
    position: relative;
    overflow: hidden;
}

.cv-gen:hover {
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-4px);
}

.cv-gen--featured {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.03);
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.05);
}

.cv-gen--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--program-gradient);
}

.cv-gen__badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--cv-gold);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.cv-gen__year {
    font-size: 4rem;
    font-weight: 900;
    color: var(--cv-gold);
    opacity: 0.1;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cv-gen__city {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}

.cv-gen__venue {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
}

.cv-gen__stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.cv-gen__number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--cv-gold);
    line-height: 1;
}

.cv-gen__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.cv-gen__speakers {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.cv-gen__speakers strong {
    color: rgba(255, 255, 255, 0.8);
}

.cv-gen__growth {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.4rem 1rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    color: #66bb6a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 100px;
}

/* ============================================
   DIFFERENTIATORS
   ============================================ */

.cv-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.cv-diff {
    padding: 2.5rem;
    background: var(--cv-card);
    border: 1px solid var(--cv-border);
    border-radius: 20px;
    transition: border-color 0.4s, transform 0.4s;
}

.cv-diff:hover {
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-4px);
}

.cv-diff__num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cv-gold);
    opacity: 0.12;
    line-height: 1;
    display: block;
    margin-bottom: 0.75rem;
}

.cv-diff h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cv-diff p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}

/* ============================================
   TICKETS (Pricing)
   ============================================ */

.cv-tickets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.cv-ticket {
    padding: 2.5rem 2rem;
    background: var(--cv-card);
    border: 1px solid var(--cv-border);
    border-radius: 24px;
    text-align: center;
    transition: border-color 0.4s, transform 0.4s;
    position: relative;
}

.cv-ticket:hover {
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-4px);
}

.cv-ticket--featured {
    border-color: rgba(255, 107, 53, 0.35);
    background: rgba(255, 107, 53, 0.04);
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.06);
    transform: scale(1.04);
}

.cv-ticket--featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.cv-ticket--elite {
    border-color: rgba(198, 40, 40, 0.25);
    background: rgba(198, 40, 40, 0.03);
}

.cv-ticket--elite:hover {
    border-color: rgba(198, 40, 40, 0.4);
}

.cv-ticket__popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1.2rem;
    background: var(--cv-gold);
    color: #1a1a2e;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 100px;
    white-space: nowrap;
}

.cv-ticket__tier {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--cv-gold);
    margin-bottom: 1.5rem;
}

.cv-ticket--elite .cv-ticket__tier {
    color: #ff6b35;
}

.cv-ticket__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
}

.cv-ticket__currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cv-gold);
}

.cv-ticket__amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
}

.cv-ticket__period {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 0.4rem;
}

.cv-ticket__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 3.2em;
}

.cv-ticket__features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.cv-ticket__features li {
    padding: 0.55rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-left: 1.3rem;
    position: relative;
}

.cv-ticket__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cv-gold);
    font-weight: 700;
    font-size: 0.75rem;
}

.cv-ticket__features li:last-child { border-bottom: none; }

.cv-ticket__features li strong { color: rgba(255, 255, 255, 0.9); }

.cv-ticket__btn {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.cv-ticket__btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cv-ticket__btn--gold {
    background: var(--cv-gold);
    color: #fff;
    border-color: var(--cv-gold);
}

.cv-ticket__btn--gold:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3);
}

.cv-ticket__btn--elite {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    color: #ff8a50;
}

.cv-ticket__btn--elite:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #fff;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3);
}

/* --- CTA final --- */
.cv-cta-final {
    padding: 6rem 0;
    background: linear-gradient(180deg, #050508 0%, var(--cv-dark) 100%);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .cv-features,
    .cv-diff-grid,
    .cv-generations { grid-template-columns: 1fr; }
    .cv-tickets { grid-template-columns: 1fr; }
    .cv-ticket--featured { transform: none; }
    .cv-ticket--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 600px) {
    .cv-section { padding: 4rem 0; }
    .cv-hero { padding: 6rem 1.5rem 3rem; }
    .cv-ticket__amount { font-size: 2.8rem; }
    .cv-gen__number { font-size: 2.5rem; }
    .cv-hero__unesco-corner {
        bottom: 1.5rem;
        right: 1.5rem;
        height: 40px;
    }
}
