   .hero-seccion {
            background: linear-gradient(180deg, var(--edutic-dark) 0%, var(--edutic-blue) 100%);
            color: white;
            position: relative;
            overflow: hidden;
            min-height:380px;
            max-height:380px;
            display: flex;
            align-items: center;
            padding:160px 0 60px;
        }

        .hero-seccion::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }

        .next-congress-highlight {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 1.5rem;
            position: relative;
            z-index: 2;
        }

        /* Badge distintivo para Versiones Previas */
        .badge-seccion {
            background: var(--edutic-orange) !important;
            color: white !important;
            font-size: 0.9rem;
            font-weight: 700;
            padding: 0.5rem 1.2rem !important;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(220, 71, 17, 0.4);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-seccion .hero-content {
            position: relative;
            z-index: 1;
        }

        .titseccion {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color:var(--edutic-blue);
        }
        .current-congress-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 2px solid var(--edutic-blue);
        }

        .stat-mini {
            text-align: center;
            padding: 1rem;
            background: linear-gradient(135deg, var(--edutic-blue), #4a6fd6);
            border-radius: 12px;
            color: white;
        }

        .stat-mini-number {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .stat-mini-label {
            font-size: 0.85rem;
            opacity: 0.9;
        }

        .countdown-compact {
            background: rgba(95, 131, 232, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid var(--edutic-blue);
            border-radius: 15px;
            padding: 1.5rem;
        }

        .countdown-box-compact {
            background: white;
            border-radius: 12px;
            padding: 1rem 0.5rem;
            border: 1px solid #e9ecef;
        }

        .countdown-number-compact {
            font-size: 2rem;
            font-weight: 700;
            color: var(--edutic-blue);
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .countdown-box-compact small {
            font-size: 0.7rem;
            text-transform: uppercase;
            color: #6c757d;
            font-weight: 600;
        }

        .previous-edition-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .previous-edition-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(95, 131, 232, 0.15);
            border-color: var(--edutic-blue);
        }

        .edition-logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 12px;
            height: 100%;
            min-height: 120px;
        }

        .edition-logo {
            max-width: 100%;
            max-height: 100px;
            object-fit: contain;
        }

        .edition-year-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--edutic-blue), #4a6fd6);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .edition-topics {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .topic-tag {
            display: inline-block;
            background: #f8f9fa;
            color: var(--edutic-dark);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid #e9ecef;
        }

        .topic-tag i {
            color: var(--edutic-orange);
        }

          @media (max-width: 991.98px) {
            .hero-section-previas {
                padding: 120px 0 60px;
            }
            .current-congress-card {
                padding: 2rem;
            }
            .stat-mini {
                padding: 0.75rem;
            }
            .stat-mini-number {
                font-size: 1.5rem;
            }
            .previous-edition-card {
                padding: 1.5rem;
            }
            .edition-logo-container {
                min-height: 80px;
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 767.98px) {
            .stat-mini {
                flex: 1;
            }
            .countdown-number-compact {
                font-size: 1.5rem;
            }
            .agenda-card-image {
                height: 160px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-section-previas {
                padding: 100px 0 50px;
            }
            .current-congress-card {
                padding: 1.5rem;
            }
            .hero-seccion{
                padding-top: 50px!important;
                min-height: 450px!important;
            }
        }
