/* ================================================================
   CLUB PLUGINS WP — Diseño moderno orientado a conversión
   ================================================================ */

:root {
    --dark:    #0f0c29;
    --mid:     #302b63;
    --accent:  #F69731;
    --accent2: #ff6b35;
    --light:   #f8f8ff;
    --border:  #e8e8f0;
    --text:    #2d2d3a;
    --muted:   #888;
    --radius:  14px;
    --shadow:  0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

/* ── HERO ───────────────────────────────────────────────────── */
.club-hero {
    position: relative;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 55%, #1a1a3e 100%);
    padding: 100px 24px 90px;
    text-align: center;
    overflow: hidden;
}
.club-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 60%, rgba(246,151,49,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 40%, rgba(255,107,53,0.12) 0%, transparent 50%);
    animation: club-glow 9s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes club-glow {
    0%   { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.06); }
}
.club-hero-content { position: relative; z-index: 1; }
.club-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(246,151,49,0.15);
    border: 1px solid rgba(246,151,49,0.35);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 26px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.club-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}
.club-hero-highlight { color: var(--accent); }
.club-hero-sub {
    font-size: 18px;
    color: rgba(200,200,220,0.85);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
}
.club-cta-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(246,151,49,0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}
.club-cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(246,151,49,0.6);
    color: #fff;
}

/* Stats en hero */
.club-hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 4vw, 50px);
    flex-wrap: wrap;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.09);
    position: relative;
    z-index: 1;
}
.club-hero-stat { text-align: center; }
.club-hero-stat .num {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.club-hero-stat .label {
    font-size: 11px;
    color: rgba(200,200,220,0.6);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── CONTAINER GENERAL ──────────────────────────────────────── */
.club-container { max-width: 1100px; margin: 0 auto; }
.club-section-title {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0 0 10px;
}
.club-section-sub {
    text-align: center;
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 48px;
}

/* ── BENEFITS ───────────────────────────────────────────────── */
.club-benefits { background: var(--light); padding: 80px 24px; }
.club-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.club-benefit-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: transform 0.22s, box-shadow 0.22s;
}
.club-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.club-benefit-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}
.club-benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
}
.club-benefit-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ── PRICING ────────────────────────────────────────────────── */
.club-pricing { background: #fff; padding: 80px 24px; }
.club-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}
.club-plan {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    box-shadow: var(--shadow);
    transition: transform 0.22s, box-shadow 0.22s;
}
.club-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.club-plan-popular {
    border-color: var(--accent);
    box-shadow: 0 8px 40px rgba(246,151,49,0.20);
    transform: scale(1.03);
}
.club-plan-popular:hover { transform: scale(1.03) translateY(-4px); }
.club-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 50px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(246,151,49,0.4);
}
.club-plan-name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 12px;
}
.club-plan-price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 8px; }
.club-plan-price .cur { font-size: 24px; font-weight: 700; color: var(--text); align-self: flex-start; margin-top: 8px; }
.club-plan-price .amt { font-size: clamp(38px, 4.5vw, 52px); font-weight: 800; color: var(--text); line-height: 1; }
.club-plan-price .amt small { font-size: 26px; font-weight: 600; }
.club-plan-price .per { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.club-plan-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.club-plan-list { list-style: none; padding: 0; margin: 0 0 30px; }
.club-plan-list li {
    font-size: 14px;
    color: var(--text);
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.club-plan-list li::before { content: "✓"; color: var(--accent); font-weight: 800; font-size: 15px; flex-shrink: 0; }
.club-plan-list li.no { color: #bbb; }
.club-plan-list li.no::before { content: "✕"; color: #ccc; }
.club-plan-note {
    font-size: 12px;
    color: var(--muted);
    margin: 14px 0 0;
    line-height: 1.5;
    text-align: center;
}

/* ── BOTONES ────────────────────────────────────────────────── */
.club-btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.22s;
    cursor: pointer;
}
.club-btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    box-shadow: 0 4px 18px rgba(246,151,49,0.4);
}
.club-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(246,151,49,0.55);
    transform: translateY(-1px);
    color: #fff;
}
.club-btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.club-btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.club-btn-large {
    display: inline-block;
    width: auto;
    padding: 16px 44px;
    font-size: 17px;
    margin-top: 28px;
}

/* ── TESTIMONIOS ────────────────────────────────────────────── */
.club-testimonials {
    background: linear-gradient(135deg, var(--dark), var(--mid));
    padding: 80px 24px;
}
.club-testimonials .club-section-title { color: #fff; }
.club-testimonials .club-section-sub { color: rgba(200,200,220,0.7); }
.club-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.club-review {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px 26px;
    backdrop-filter: blur(6px);
    transition: transform 0.22s;
}
.club-review:hover { transform: translateY(-3px); }
.club-stars { color: var(--accent); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.club-review p {
    font-size: 14.5px;
    color: rgba(220,220,240,0.85);
    line-height: 1.65;
    margin: 0 0 20px;
    font-style: italic;
}
.club-review-author { display: flex; align-items: center; gap: 12px; }
.club-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--mid));
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #fff; font-size: 16px;
    flex-shrink: 0;
}
.club-review-author strong { display: block; font-size: 14px; color: #fff; }
.club-review-author span { font-size: 12px; color: rgba(200,200,220,0.55); }

/* ── FAQ ────────────────────────────────────────────────────── */
.club-faq { background: var(--light); padding: 80px 24px; }
.club-faq-container { max-width: 760px; }
.club-faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s;
}
.club-faq-item:hover { box-shadow: var(--shadow); }
.club-faq-q {
    padding: 18px 22px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.club-faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.club-faq-item.open .club-faq-icon { transform: rotate(45deg); }
.club-faq-a {
    padding: 0 22px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
}
.club-faq-a p { margin: 0; }
.club-faq-item.open .club-faq-a { max-height: 400px; padding-bottom: 20px; }

/* ── CTA FINAL ──────────────────────────────────────────────── */
.club-cta-final {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    padding: 72px 24px;
    text-align: center;
}
.club-cta-final h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.club-cta-final p {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}
.club-cta-final .club-btn-primary {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.club-cta-final .club-btn-primary:hover {
    background: #fff;
    color: var(--accent2);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* ── FADE IN ────────────────────────────────────────────────── */
.club-fade { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.club-fade.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .club-hero { padding: 70px 16px 60px; }
    .club-benefits, .club-pricing, .club-testimonials, .club-faq, .club-cta-final { padding: 60px 16px; }
    .club-hero-stats { gap: 18px; }
    .club-pricing-grid { grid-template-columns: 1fr; }
    .club-plan-popular { transform: none; }
    .club-plan-popular:hover { transform: translateY(-4px); }
    .club-reviews-grid { grid-template-columns: 1fr; }
    .club-benefits-grid { grid-template-columns: 1fr; }
}