        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
            /* REMOVIMOS display:flex y align-items:center */
        }

        .reglamentos-section {
            background-color: white;
            width: 100%;
            max-width: 1400px;
            padding: 60px 50px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            margin: 40px auto; /* Cambiado a margin auto para centrar */
        }

        .reglamentos-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 60px;
            color: #1e3a8a;
            font-weight: 800;
            position: relative;
            letter-spacing: -0.5px;
        }

        .reglamentos-title::after {
            content: '';
            position: absolute;
            bottom: -18px;
            left: 50%;
            transform: translateX(-50%);
            width: 140px;
            height: 5px;
            background: linear-gradient(90deg, #e63946, #d90429);
            border-radius: 8px;
        }

        .reglamentos-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .reglamento-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .reglamento-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #e63946, #d90429);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .reglamento-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(230, 57, 70, 0.15);
        }

        .reglamento-card:hover::before {
            transform: scaleX(1);
        }

        .pdf-icon {
            width: 95px;
            height: 95px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #e63946, #d90429);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.6rem;
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .pdf-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0));
            transform: rotate(30deg);
            transition: all 0.5s ease;
        }

        .reglamento-card:hover .pdf-icon {
            transform: scale(1.1);
            box-shadow: 0 15px 25px rgba(230, 57, 70, 0.4);
        }

        .reglamento-card:hover .pdf-icon::after {
            transform: rotate(30deg) translate(20px, 20px);
        }

        .reglamento-name {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: #1e3a8a;
            font-weight: 700;
            line-height: 1.4;
            min-height: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .download-btn {
            background: linear-gradient(90deg, #e63946, #d90429);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 15px rgba(230, 57, 70, 0.3);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }

        .download-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }

        .download-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.4);
        }

        .download-btn:hover::before {
            left: 100%;
        }

        .download-btn i {
            margin-right: 10px;
            font-size: 1.1rem;
        }

        /* Elementos decorativos */
        .decoration {
            position: absolute;
            pointer-events: none;
            z-index: 0;
        }

        .circle-1 {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(230, 57, 70, 0.05);
            top: -70px;
            right: -70px;
        }

        .circle-2 {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            background: rgba(230, 57, 70, 0.05);
            bottom: -50px;
            left: -50px;
        }

        .dots {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: radial-gradient(rgba(230, 57, 70, 0.08) 2px, transparent 2px);
            background-size: 25px 25px;
            opacity: 0.4;
        }

        /* Estilos para el footer */
        #contacto {
            width: 100%;
            margin-top: auto; /* Empuja el footer hacia abajo */
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .reglamentos-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .reglamentos-section {
                padding: 50px 30px;
                margin: 20px auto;
            }
            
            .reglamentos-title {
                font-size: 2.3rem;
                margin-bottom: 50px;
            }
            
            .reglamentos-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .pdf-icon {
                width: 85px;
                height: 85px;
                font-size: 2.3rem;
            }
            
            .reglamento-name {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .reglamentos-section {
                padding: 40px 20px;
                margin: 15px auto;
            }
            
            .reglamentos-title {
                font-size: 2rem;
            }
            
            .reglamento-card {
                padding: 25px 20px;
            }
            
            .reglamento-name {
                font-size: 1.1rem;
                min-height: 65px;
            }
            
            .download-btn {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
        }