        :root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --accent: #f59e0b;
            --dark: #0f172a;
            --light: #f8fafc;
        }

        body {
            background-color: #f8fafc;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #334155;
            line-height: 1.7;
        }

        /* ========================================== */
        /* BOTÓN VOLVER                               */
        /* ========================================== */
        .back-home-link {
            position: absolute;
            top: 30px;
            left: 30px;
            display: inline-flex;
            align-items: center;
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 10px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .back-home-link:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            transform: translateX(-5px);
            text-decoration: none;
        }

        /* ========================================== */
        /* HEADER                                     */
        /* ========================================== */
        .delete-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            color: #fff;
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .delete-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .delete-header h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            position: relative;
        }

        .delete-header p.lead {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            max-width: 700px;
            margin: 0 auto;
        }

        .delete-header .badge-delete {
            background: #ef4444;
            color: #fff;
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 15px;
            position: relative;
        }

        /* ========================================== */
        /* LAYOUT PRINCIPAL                           */
        /* ========================================== */
        .delete-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .delete-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
        }

        /* ========================================== */
        /* SIDEBAR DE NAVEGACIÓN                      */
        /* ========================================== */
        .delete-sidebar {
            position: sticky;
            top: 20px;
            align-self: start;
            background: #fff;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            height: fit-content;
        }

        .delete-sidebar h5 {
            font-size: 0.85rem;
            font-weight: 700;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .delete-sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .delete-sidebar ul li {
            margin-bottom: 4px;
        }

        .delete-sidebar ul li a {
            display: flex;
            align-items: center;
            padding: 10px 14px;
            border-radius: 8px;
            color: #475569;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.2s;
        }

        .delete-sidebar ul li a:hover {
            background: #f1f5f9;
            color: var(--primary);
        }

        .delete-sidebar ul li a.active {
            background: var(--primary);
            color: #fff;
        }

        .delete-sidebar ul li a i {
            margin-right: 10px;
            width: 18px;
            text-align: center;
            font-size: 0.85rem;
        }

        /* ========================================== */
        /* CONTENIDO PRINCIPAL                        */
        /* ========================================== */
        .delete-content {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .delete-section {
            margin-bottom: 50px;
            scroll-margin-top: 20px;
        }

        .delete-section:last-child {
            margin-bottom: 0;
        }

        .delete-section h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            padding-bottom: 12px;
            border-bottom: 2px solid #f1f5f9;
        }

        .delete-section h2 i {
            color: #ef4444;
            margin-right: 12px;
            font-size: 1.5rem;
        }

        .delete-section h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-top: 25px;
            margin-bottom: 12px;
        }

        .delete-section p {
            color: #475569;
            margin-bottom: 15px;
        }

        .delete-section ul,
        .delete-section ol {
            padding-left: 25px;
            margin-bottom: 15px;
        }

        .delete-section li {
            margin-bottom: 8px;
            color: #475569;
        }

        .delete-section strong {
            color: var(--dark);
        }

        .delete-section a {
            color: var(--primary);
            text-decoration: none;
        }

        .delete-section a:hover {
            text-decoration: underline;
        }

        /* Cajas informativas */
        .warning-box {
            background: #fef3c7;
            border-left: 4px solid var(--accent);
            padding: 16px 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .danger-box {
            background: #fee2e2;
            border-left: 4px solid #ef4444;
            padding: 16px 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .info-box {
            background: #eff6ff;
            border-left: 4px solid var(--primary);
            padding: 16px 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .warning-box strong,
        .danger-box strong,
        .info-box strong {
            display: block;
            margin-bottom: 5px;
            color: var(--dark);
        }

        /* Formulario de solicitud */
        .request-form {
            background: #f8fafc;
            border-radius: 12px;
            padding: 30px;
            border: 2px solid #e2e8f0;
        }

        .request-form .form-group {
            margin-bottom: 20px;
        }

        .request-form label {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
            display: block;
        }

        .request-form label .required {
            color: #ef4444;
        }

        .request-form input[type="email"],
        .request-form input[type="text"],
        .request-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.2s;
            background: #fff;
        }

        .request-form input:focus,
        .request-form textarea:focus {
            outline: none;
            border-color: #ef4444;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
        }

        .btn-delete {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .btn-delete:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
            color: #fff;
        }

        /* ========================================== */
        /* RESPONSIVE                                 */
        /* ========================================== */
        @media (max-width: 992px) {
            .delete-layout {
                grid-template-columns: 1fr;
            }

            .delete-sidebar {
                position: static;
            }

            .delete-sidebar ul {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 5px;
            }
        }

        @media (max-width: 768px) {
            .delete-header h1 {
                font-size: 2rem;
            }

            .delete-content {
                padding: 25px 20px;
            }

            .delete-section h2 {
                font-size: 1.4rem;
            }

            .delete-sidebar ul {
                grid-template-columns: 1fr;
            }

            .back-home-link {
                top: 20px;
                left: 20px;
                padding: 8px 15px;
                font-size: 0.85rem;
            }
        }