/* ============================================
   CERRADORES HUB PAGE
   Página principal que conecta ambas experiencias
   ============================================ */

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

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

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

.ch-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 107, 53, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 70%, rgba(198, 40, 40, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 80% 30%, rgba(255, 107, 53, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.ch-hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ch-hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ch-hero__label {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: #FF6B35;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    border-radius: 100px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: chReveal 0.8s 0.2s ease forwards;
}

.ch-hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.ch-hero__title-line {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    color: #fff;
    opacity: 0;
    animation: chReveal 0.8s 0.4s ease forwards;
}

.ch-hero__title-accent {
    color: #FF6B35;
    text-shadow:
        0 0 8px rgba(255, 107, 53, 0.4),
        0 0 20px rgba(255, 87, 34, 0.2);
    animation: chReveal 0.8s 0.6s ease forwards;
}

.ch-hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: chReveal 0.8s 0.8s ease forwards;
}

.ch-hero__stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: chReveal 0.8s 1s ease forwards;
}

.ch-hero__stat {
    text-align: center;
}

.ch-hero__stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #FF6B35;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.ch-hero__stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.ch-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.ch-hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    opacity: 0;
    animation: chReveal 0.8s 1.2s ease forwards;
}

.ch-hero__scroll svg {
    animation: chBounce 2s ease-in-out infinite;
}

.ch-hero__scroll:hover {
    color: #FF6B35;
}

.ch-hero__unesco {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    height: 55px;
    width: auto;
    opacity: 0.4;
    transition: opacity 0.3s;
    z-index: 2;
}

.ch-hero__unesco:hover {
    opacity: 0.7;
}

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

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

.ch-section--alt {
    background: rgba(255, 255, 255, 0.015);
}

.ch-section__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.ch-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: #FF6B35;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.ch-section__title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.ch-section__tagline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 650px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* ============================================
   TWO PATHS - PROGRAM CARDS
   ============================================ */

.ch-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.ch-path {
    position: relative;
    background: var(--ch-card);
    border: 1px solid var(--ch-border);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: left;
    transition: border-color 0.4s, transform 0.4s;
    overflow: hidden;
}

.ch-path__glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.ch-path--retreat .ch-path__glow {
    background: radial-gradient(circle, rgba(198, 40, 40, 0.15) 0%, transparent 70%);
}

.ch-path--clinica .ch-path__glow {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
}

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

.ch-path:hover .ch-path__glow {
    opacity: 1;
}

.ch-path__badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.ch-path--retreat .ch-path__badge {
    background: rgba(198, 40, 40, 0.15);
    border: 1px solid rgba(198, 40, 40, 0.3);
    color: #ef5350;
}

.ch-path--clinica .ch-path__badge {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.25);
    color: #FF6B35;
}

.ch-path__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.ch-path__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.ch-path__type {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.25rem;
}

.ch-path__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ch-path__highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.ch-path__highlights li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
}

.ch-path__highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: 700;
}

.ch-path__price {
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ch-path__price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.ch-path__price-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.ch-path__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}

.ch-path--retreat .ch-path__cta {
    background: rgba(198, 40, 40, 0.15);
    border: 1px solid rgba(198, 40, 40, 0.3);
    color: #ef5350;
}

.ch-path--retreat .ch-path__cta:hover {
    background: #C62828;
    border-color: #C62828;
    color: #fff;
    box-shadow: 0 8px 30px rgba(198, 40, 40, 0.25);
}

.ch-path--clinica .ch-path__cta {
    background: #FF6B35;
    border: 1px solid #FF6B35;
    color: #fff;
}

.ch-path--clinica .ch-path__cta:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

/* ============================================
   QUOTE
   ============================================ */

.ch-quote {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 4rem;
    position: relative;
    padding: 2rem 0;
}

.ch-quote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: -1rem;
    font-size: 5rem;
    color: rgba(255, 107, 53, 0.15);
    font-style: normal;
    font-weight: 800;
    line-height: 1;
}

/* ============================================
   PILLARS
   ============================================ */

.ch-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.ch-pillar {
    background: var(--ch-card);
    border: 1px solid var(--ch-border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: border-color 0.3s, transform 0.3s;
}

.ch-pillar:hover {
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
}

.ch-pillar__number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B35 0%, #C62828 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.ch-pillar__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.ch-pillar p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.ch-compare {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--ch-border);
    border-radius: 16px;
    overflow: hidden;
}

.ch-compare__row {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
}

.ch-compare__row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ch-compare__row--header {
    background: rgba(255, 107, 53, 0.04);
}

.ch-compare__row--actions {
    background: rgba(255, 255, 255, 0.015);
    padding: 1rem 0;
}

.ch-compare__cell {
    padding: 1rem 1.5rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
}

.ch-compare__cell:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.ch-compare__cell--label {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.ch-compare__cell--retreat,
.ch-compare__cell--clinica {
    font-weight: 700;
    color: #FF6B35;
    font-size: 0.85rem;
    letter-spacing: 1px;
    justify-content: center;
}

.ch-compare__cell--price {
    font-weight: 800;
    color: #fff;
    font-size: 1.1rem;
}

.ch-compare__btn {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.25);
    color: #FF6B35;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
}

.ch-compare__btn:hover {
    background: #FF6B35;
    border-color: #FF6B35;
    color: #fff;
}

.ch-compare__row--actions .ch-compare__cell {
    justify-content: center;
}

/* ============================================
   TRAINERS
   ============================================ */

.ch-trainers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.ch-trainer {
    background: var(--ch-card);
    border: 1px solid var(--ch-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
}

.ch-trainer:hover {
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
}

.ch-trainer--guest {
    border-color: rgba(255, 107, 53, 0.15);
}

.ch-trainer__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #C62828 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
}

.ch-trainer__guest-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.25);
    color: #FF6B35;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}

.ch-trainer__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}

.ch-trainer__role {
    font-size: 0.78rem;
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ch-trainer__bio {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ============================================
   CTA FINAL
   ============================================ */

.ch-cta-final {
    padding: 8rem 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 80%, rgba(255, 107, 53, 0.06) 0%, transparent 60%),
        rgba(255, 255, 255, 0.01);
}

.ch-cta-final__title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ch-cta-final__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.ch-cta-final__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ch-cta-final__btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    transition: all 0.3s;
    min-width: 280px;
}

.ch-cta-final__btn span {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ch-cta-final__btn strong {
    font-size: 1rem;
    font-weight: 700;
}

.ch-cta-final__btn small {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.15rem;
}

.ch-cta-final__btn-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ch-cta-final__btn svg {
    flex-shrink: 0;
    margin-left: auto;
}

.ch-cta-final__btn--primary {
    background: rgba(198, 40, 40, 0.12);
    border: 1px solid rgba(198, 40, 40, 0.3);
    color: #ef5350;
}

.ch-cta-final__btn--primary:hover {
    background: #C62828;
    border-color: #C62828;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(198, 40, 40, 0.25);
}

.ch-cta-final__btn--secondary {
    background: #FF6B35;
    border: 1px solid #FF6B35;
    color: #fff;
}

.ch-cta-final__btn--secondary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes chReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes chBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

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

@media (max-width: 1024px) {
    .ch-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .ch-paths {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ch-trainers {
        grid-template-columns: 1fr;
    }

    .ch-compare__row {
        grid-template-columns: 100px 1fr 1fr;
    }

    .ch-compare__cell {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .ch-compare__cell--label {
        font-size: 0.72rem;
    }
}

@media (max-width: 768px) {
    .ch-hero__stats {
        gap: 1.5rem;
    }

    .ch-hero__stat-number {
        font-size: 1.5rem;
    }

    .ch-pillars {
        grid-template-columns: 1fr;
    }

    .ch-compare {
        overflow-x: auto;
    }

    .ch-compare__row {
        min-width: 550px;
    }

    .ch-cta-final__buttons {
        flex-direction: column;
        align-items: center;
    }

    .ch-cta-final__btn {
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 600px) {
    .ch-hero {
        padding: 7rem 1.5rem 3rem;
    }

    .ch-section {
        padding: 4.5rem 0;
    }

    .ch-hero__stats {
        flex-direction: column;
        gap: 1.25rem;
    }

    .ch-hero__stat-divider {
        width: 40px;
        height: 1px;
    }

    .ch-hero__unesco {
        bottom: 1.5rem;
        right: 1.5rem;
        height: 40px;
    }

    .ch-path {
        padding: 2rem 1.5rem;
    }
}
