/* =========================================
           GLOBAL RESETS & DARK THEME
           ========================================= */
        *, *::before, *::after {
            box-sizing: border-box;
        }
        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: #080e1a;
            color: #e2e8f0;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 100% GRATIS FLOATING TOP BANNER */
        .free-top-announcement {
            background: linear-gradient(90deg, #11141c 0%, #1c2712 50%, #11141c 100%);
            border-bottom: 1px solid rgba(144, 234, 42, 0.25);
            padding: 10px 15px;
            text-align: center;
            font-size: 13.5px;
            font-weight: 700;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .free-pill-neon {
            background: #90ea2a;
            color: #0f172a;
            font-size: 11px;
            font-weight: 900;
            padding: 3px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 0 12px rgba(144, 234, 42, 0.5);
        }

        /* Badge Tag */
        .badge-tag {
            background: rgba(144, 234, 42, 0.1);
            border: 1px solid rgba(144, 234, 42, 0.35);
            color: #90ea2a;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            border-radius: 30px;
            margin-bottom: 20px;
        }
        .badge-tag .dot {
            width: 8px;
            height: 8px;
            background: #90ea2a;
            border-radius: 50%;
            box-shadow: 0 0 10px #90ea2a;
            animation: pulse-glow 1.5s infinite;
        }
        @keyframes pulse-glow {
            0% { transform: scale(0.95); opacity: 0.8; }
            50% { transform: scale(1.2); opacity: 1; }
            100% { transform: scale(0.95); opacity: 0.8; }
        }

        /* =========================================
           HERO SECTION
           ========================================= */
        .hero-section {
            padding: 50px 0 40px;
            text-align: center;
            position: relative;
            background: radial-gradient(circle at 50% 0%, rgba(144, 234, 42, 0.09) 0%, transparent 65%);
        }
        .hero-section h1 {
            font-size: 50px;
            font-weight: 900;
            line-height: 1.15;
            color: #ffffff;
            margin: 0 auto 20px auto;
            max-width: 950px;
            letter-spacing: -1px;
        }
        .hero-section h1 span {
            background: linear-gradient(135deg, #ffffff 30%, #90ea2a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section p.subtitle {
            font-size: 17.5px;
            color: #94a3b8;
            max-width: 760px;
            margin: 0 auto 35px auto;
            line-height: 1.6;
        }

        /* Free Value Strip */
        .free-value-strip {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px dashed rgba(144, 234, 42, 0.4);
            border-radius: 50px;
            padding: 10px 24px;
            margin-bottom: 35px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .price-cross {
            text-decoration: line-through;
            color: #64748b;
            font-weight: 600;
            font-size: 14px;
        }
        .price-now {
            color: #90ea2a;
            font-weight: 900;
            font-size: 18px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .free-value-strip span.sep { color: #334155; }
        .free-value-strip span.txt { color: #e2e8f0; font-size: 13.5px; font-weight: 600; }

        .hero-cta-btns {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        .event-details-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            max-width: 840px;
            margin: 28px auto 0;
            text-align: left;
        }
        .event-detail-card {
            padding: 17px 18px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            background: rgba(17,27,47,0.82);
        }
        .event-detail-card span {
            display: block;
            margin-bottom: 5px;
            color: #90ea2a;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }
        .event-detail-card strong { color:#fff; font-size:14px; line-height:1.45; }
        .btn-lime {
            background: #90ea2a;
            color: #0f172a;
            padding: 16px 36px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 800;
            font-size: 15.5px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-lime:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(144, 234, 42, 0.4);
        }
        .btn-glass {
            background: rgba(255, 255, 255, 0.06);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 16px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15.5px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(10px);
            transition: background 0.2s;
        }
        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        /* =========================================
           DASHBOARD CARDS SHOWCASE (FIGGUS + PROPELLENT)
           ========================================= */
        .dashboard-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr 1fr;
            gap: 20px;
            align-items: stretch;
            margin-bottom: 60px;
        }
        .dash-col {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .card-dark {
            background: #111b2f;
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 20px;
            padding: 24px;
            text-align: left;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .card-dark .quote-mark {
            color: #90ea2a;
            font-size: 26px;
            font-weight: 900;
            margin-bottom: 8px;
        }
        .card-dark h4 {
            margin: 0 0 8px 0;
            font-size: 16px;
            color: #ffffff;
            font-weight: 700;
        }
        .card-dark p {
            color: #94a3b8;
            font-size: 13.5px;
            line-height: 1.5;
            margin: 0 0 15px 0;
        }
        .avatar-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .avatars-imgs {
            display: flex;
        }
        .avatars-imgs img {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid #111b2f;
            margin-left: -8px;
        }
        .avatars-imgs img:first-child { margin-left: 0; }
        .avatar-group span { font-size: 12px; color: #cbd5e1; font-weight: 600; }

        /* Attendance Widget */
        .card-table-widget {
            background: #ffffff;
            color: #111;
            border-radius: 20px;
            padding: 22px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
            text-align: left;
        }
        .widget-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        .widget-header h5 {
            margin: 0;
            font-size: 12px;
            font-weight: 800;
            color: #64748b;
            text-transform: uppercase;
        }
        .widget-balance-pill {
            background: #0f172a;
            color: #90ea2a;
            padding: 10px 14px;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        .widget-balance-pill span { font-size: 11px; text-transform: uppercase; color: #94a3b8; }
        .widget-balance-pill strong { font-size: 17px; font-weight: 800; color: #90ea2a; }
        
        .rh-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 7px 0;
            border-bottom: 1px solid #f1f5f9;
            font-size: 12px;
        }
        .rh-row:last-child { border-bottom: none; }
        .rh-row .name { font-weight: 700; color: #1e293b; }
        .badge-status { padding: 3px 8px; border-radius: 6px; font-size: 10px; font-weight: 800; }
        .badge-success { background: #dcfce7; color: #15803d; }
        .badge-warning { background: #fef3c7; color: #b45309; }

        /* Center Preview Column */
        .card-center-preview {
            background: linear-gradient(180deg, #181d28 0%, #11141c 100%);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            min-height: 460px;
        }
        .preview-img-box {
            position: relative;
            height: 100%;
            min-height: 380px;
            background: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=900&q=80') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .preview-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, #11141c 0%, rgba(17, 20, 28, 0.4) 60%, rgba(17, 20, 28, 0.2) 100%);
        }
        .free-tag-overlay {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #90ea2a;
            color: #080e1a;
            font-size: 12px;
            font-weight: 900;
            padding: 6px 14px;
            border-radius: 20px;
            z-index: 3;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        }
        .play-masterclass-btn {
            position: relative;
            z-index: 2;
            width: 68px;
            height: 68px;
            background: #90ea2a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #080e1a;
            font-size: 22px;
            box-shadow: 0 0 30px rgba(144, 234, 42, 0.6);
            cursor: pointer;
            transition: transform 0.2s;
        }
        .play-masterclass-btn:hover { transform: scale(1.08); }
        .center-caption {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            z-index: 2;
            text-align: left;
        }
        .center-caption h3 { margin: 0 0 4px 0; font-size: 18px; font-weight: 800; color: #ffffff; }
        .center-caption p { margin: 0; font-size: 12.5px; color: #cbd5e1; }

        /* Right Column Charts */
        .card-white-chart {
            background: #ffffff;
            color: #0f172a;
            border-radius: 20px;
            padding: 22px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
            text-align: left;
        }
        .chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .chart-header h6 { margin: 0; font-size: 11px; font-weight: 800; color: #64748b; text-transform: uppercase; }
        .chart-badge { background: #dcfce7; color: #166534; padding: 2px 8px; border-radius: 10px; font-size: 11px; font-weight: 700; }
        .chart-metric { font-size: 26px; font-weight: 900; color: #0f172a; margin: 0 0 10px 0; }
        .chart-svg-box { width: 100%; height: 55px; }

        .card-lime-highlight {
            background: #90ea2a;
            color: #080e1a;
            border-radius: 20px;
            padding: 24px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .card-lime-highlight h2 { font-size: 38px; font-weight: 900; margin: 0 0 4px 0; letter-spacing: -1px; }
        .card-lime-highlight h4 { margin: 0 0 6px 0; font-size: 16px; font-weight: 800; }
        .card-lime-highlight p { margin: 0; font-size: 12.5px; font-weight: 600; opacity: 0.9; }

        /* =========================================
           REGISTRATION CARD (PROPELLENT STYLE)
           ========================================= */
        .registration-section {
            padding: 30px 0 70px;
        }
        .reg-card {
            background: #111b2f;
            border: 1px solid rgba(144, 234, 42, 0.35);
            border-radius: 28px;
            padding: 45px;
            max-width: 880px;
            margin: 0 auto;
            box-shadow: 0 25px 60px rgba(0,0,0,0.6);
            position: relative;
            overflow: hidden;
        }
        .reg-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 5px;
            background: #90ea2a;
        }
        .reg-header {
            text-align: center;
            margin-bottom: 30px;
        }
        .reg-free-pill {
            background: #90ea2a;
            color: #080e1a;
            font-size: 11px;
            font-weight: 900;
            padding: 4px 12px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 12px;
            text-transform: uppercase;
        }
        .reg-header h2 {
            font-size: 30px;
            font-weight: 900;
            color: #ffffff;
            margin: 0 0 8px 0;
        }
        .reg-header p {
            color: #94a3b8;
            font-size: 15px;
            margin: 0;
        }
        .form-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 20px;
        }
        .form-field label {
            display: block;
            font-size: 12.5px;
            font-weight: 700;
            color: #cbd5e1;
            margin-bottom: 6px;
        }
        .form-input {
            width: 100%;
            background: #080e1a;
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 14px 16px;
            border-radius: 12px;
            color: #fff;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.2s;
        }
        .form-input:focus {
            outline: none;
            border-color: #90ea2a;
            box-shadow: 0 0 0 3px rgba(144, 234, 42, 0.2);
        }
        .btn-form-submit {
            width: 100%;
            background: #90ea2a;
            color: #080e1a;
            border: none;
            padding: 16px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 800;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: transform 0.2s;
        }
        .btn-form-submit:hover { transform: translateY(-2px); }
        .btn-form-submit:disabled { opacity: 0.65; cursor: wait; transform: none; }
        .privacy-check {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            margin: 2px 0 18px;
            color: #94a3b8;
            font-size: 12px;
            line-height: 1.5;
        }
        .privacy-check input { margin-top: 3px; accent-color: #90ea2a; }
        .privacy-check a { color: #90ea2a; font-weight: 700; }
        .form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
        .registration-status {
            display: none;
            margin-top: 14px;
            padding: 12px 14px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            color: #e2e8f0;
            font-size: 13px;
            line-height: 1.5;
            text-align: center;
        }
        .registration-status.show { display: block; }
        .registration-status.success { border-color: rgba(144, 234, 42, 0.45); background: rgba(144, 234, 42, 0.1); color: #d9f8b5; }
        .registration-status.error { border-color: rgba(248, 113, 113, 0.45); background: rgba(248, 113, 113, 0.09); color: #fecaca; }
        .reg-guarantee {
            text-align: center;
            font-size: 12px;
            color: #64748b;
            margin-top: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .status-live { color:#10b981; font-size:11px; font-weight:700; }
        .metric-positive { color:#90ea2a; font-size:12px; }
        .meta-superada { color:#10b981; font-size:13px; }
        .session-day-one { color:#90ea2a; font-size:12px; font-weight:800; text-transform:uppercase; }
        .session-day-two { color:#10b981; font-size:12px; font-weight:800; text-transform:uppercase; }
        .badge-duration-success { color:#10b981; border-color:rgba(16,185,129,0.3); }
        .button-nowrap { white-space:nowrap; }

        /* =========================================
           NUEVO TEMARIO AMIGABLE E INTERACTIVO
           (SESSION TABS & QUICK CARDS)
           ========================================= */
        .syllabus-section {
            padding: 40px 0 80px;
        }
        .section-title-wrap {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-title-wrap h2 {
            font-size: 38px;
            font-weight: 900;
            color: #ffffff;
            margin: 0 0 10px 0;
            letter-spacing: -0.5px;
        }
        .section-title-wrap p {
            color: #94a3b8;
            font-size: 16px;
            max-width: 650px;
            margin: 0 auto;
        }

        /* Interactive Tabs */
        .session-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 35px;
        }
        .session-tab-btn {
            background: #111b2f;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            padding: 14px 28px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }
        .session-tab-btn .tab-num {
            background: rgba(255, 255, 255, 0.1);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        .session-tab-btn.active {
            background: #90ea2a;
            color: #080e1a;
            border-color: #90ea2a;
            box-shadow: 0 5px 20px rgba(144, 234, 42, 0.3);
        }
        .session-tab-btn.active .tab-num {
            background: #080e1a;
            color: #90ea2a;
        }

        /* Session Panels */
        .session-panel {
            display: none;
            animation: fadeIn 0.4s ease;
        }
        .session-panel.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Session Header Info */
        .session-main-header {
            background: #111b2f;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }
        .session-main-header h3 {
            margin: 0;
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
        }
        .session-main-header .badge-duration {
            background: rgba(255, 255, 255, 0.06);
            color: #90ea2a;
            font-size: 13px;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid rgba(144, 234, 42, 0.2);
        }

        /* Pillar 3-Grid Cards */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        .pillar-card {
            background: #111b2f;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 28px 24px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .pillar-card:hover {
            transform: translateY(-4px);
            border-color: #90ea2a;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        .pillar-icon {
            font-size: 32px;
            margin-bottom: 16px;
        }
        .pillar-card h4 {
            font-size: 18px;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 10px 0;
        }
        .pillar-card p {
            font-size: 13.5px;
            color: #94a3b8;
            line-height: 1.55;
            margin: 0 0 18px 0;
        }
        .pillar-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .pill-chip {
            background: rgba(255, 255, 255, 0.05);
            color: #cbd5e1;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        /* Bottom Urgency Box */
        .final-cta-box {
            background: linear-gradient(135deg, #182212 0%, #0e141a 100%);
            border: 1px solid #90ea2a;
            border-radius: 24px;
            padding: 35px 45px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 25px;
        }
        .final-cta-box h3 { font-size: 24px; font-weight: 800; color: #fff; margin: 0 0 6px 0; }
        .final-cta-box p { margin: 0; color: #cbd5e1; font-size: 14.5px; }

        /* ==============================================================
           📱 MOBILE & TABLET MEDIA QUERIES
           ============================================================== */
        @media (max-width: 992px) {
            .hero-section h1 { font-size: 36px; }
            .dashboard-grid { grid-template-columns: 1fr; }
            .card-center-preview { min-height: 320px; }
            .pillars-grid { grid-template-columns: 1fr; }
            .form-grid-3 { grid-template-columns: 1fr; }
            .reg-card { padding: 30px 20px; }
            .final-cta-box { flex-direction: column; text-align: center; }
            .session-tabs { flex-direction: column; }
            .session-tab-btn { width: 100%; justify-content: center; }
            .event-details-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 600px) {
            .hero-section { padding: 30px 0 20px; }
            .hero-section h1 { font-size: 28px; }
            .hero-section p.subtitle { font-size: 14px; }
            .free-value-strip { border-radius: 20px; padding: 10px 16px; font-size: 12px; }
            .btn-lime, .btn-glass { width: 100%; justify-content: center; }
            
            .section-title-wrap h2 { font-size: 26px; }
            .session-main-header { padding: 18px 20px; }
            .session-main-header h3 { font-size: 18px; }
            .pillar-card { padding: 20px 18px; }
        }
